:root {
    --brand-accent: #00b67a;
    --glass-bg: rgba(15, 15, 15, 0.8);
    --text-main: #ffffff;
}

.premium-video-grid-26581 {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    padding: 40px;
    background: #050505;
    font-family: 'Inter', -apple-system, sans-serif;
}

.v-card-26581 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v-featured-26581 { grid-row: span 2; }

.v-video-wrapper-26581 {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.v-video-wrapper-26581 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.scroll-trigger-26581 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #008a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.4);
    text-decoration: none;
}

.pulse-ring-26581 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-accent);
    animation: pulse-26581 2s infinite;
}

@keyframes pulse-26581 {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.v-content-26581 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.v-tag-26581 {
    color: var(--brand-accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.v-content-26581 h3 {
    color: white;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.v-content-26581 p {
    color: #999;
    margin: 5px 0 0;
    font-size: 14px;
}

.v-side-26581 .v-content-26581 h3 { font-size: 16px; }

.v-card-26581:hover {
    transform: translateY(-8px);
    border-color: var(--brand-accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
    .premium-video-grid-26581 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .v-featured-26581 { grid-row: span 1; }
}