:root {
    --bg: #0c0a12;
    --bg-elevated: #13111a;
    --card-bg: rgba(22, 19, 32, 0.85);
    --accent: #9b6dff;
    --accent-light: #b794ff;
    --accent-dark: #6c3ce0;
    --accent-glow: rgba(155, 109, 255, 0.15);
    --text: #f0f0f5;
    --text-muted: rgba(240, 240, 245, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(155, 109, 255, 0.4);
    --success: #4ade80;
    --error: #f87171;
    --warning: #fb923c;
    --bright-glow: rgba(183, 148, 255, 0.4);
    --bright-glow-intense: rgba(183, 148, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

/* Bright gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(183, 148, 255, 0.25), transparent);
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.4; }
}

/* Cursor glow - brighter */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 148, 255, 0.15) 0%, rgba(155, 109, 255, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    filter: blur(40px);
}

/* ==================== NAVIGATION ==================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(12, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(183, 148, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(183, 148, 255, 0.15),
                0 0 80px rgba(183, 148, 255, 0.08);
    overflow: hidden;
}

/* Bright pulsing background effect */
nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(183, 148, 255, 0.25) 0%,
        rgba(183, 148, 255, 0.15) 40%,
        rgba(183, 148, 255, 0.08) 70%,
        transparent 100%
    );
    animation: navBrightPulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes navBrightPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--text);
    text-shadow: 0 0 10px rgba(183, 148, 255, 0.3);
    transition: text-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(183, 148, 255, 0.4));
}

.logo:hover {
    text-shadow: 0 0 20px rgba(183, 148, 255, 0.6);
}

.logo:hover .logo-icon {
    transform: rotate(-24deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(183, 148, 255, 0.8));
}

.logo span {
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(183, 148, 255, 0.6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    transition: color 0.25s ease,
                background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.25s ease,
                text-shadow 0.25s ease;
    position: relative;
    transform: translateZ(0);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
    background: rgba(155, 109, 255, 0.10);
    border-color: var(--accent-light);
    transform: scale(1.08);
    box-shadow: 0 0 0 1px rgba(183, 148, 255, 0.35),
                0 0 16px rgba(183, 148, 255, 0.55),
                0 0 32px rgba(155, 109, 255, 0.35);
    text-shadow: 0 0 10px rgba(183, 148, 255, 0.7);
    outline: none;
}

.nav-links a:active {
    transform: scale(1.02);
}

/* ==================== HERO HEADER ==================== */
header {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(183, 148, 255, 0.3) 0%, rgba(155, 109, 255, 0.2) 30%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
    z-index: -1;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(183, 148, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(155, 109, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(108, 60, 224, 0.15) 0%, transparent 70%);
    animation: pulseBright 6s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseBright {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(183, 148, 255, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4b5ff 0%, var(--accent-light) 25%, var(--accent) 50%, var(--accent-dark) 75%, #8a5fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(183, 148, 255, 0.5)) 
            drop-shadow(0 0 60px rgba(183, 148, 255, 0.3));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 1.1rem;
    color: rgba(240, 240, 245, 0.8);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(183, 148, 255, 0.3);
    position: relative;
}

.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.skill-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-label {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(19, 17, 26, 0.8);
    border: 1px solid rgba(183, 148, 255, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(240, 240, 245, 0.8);
    transition: all 0.25s ease;
    box-shadow: 0 0 10px rgba(183, 148, 255, 0.1);
}

.tech-tag:hover {
    border-color: var(--accent-light);
    color: var(--accent-light);
    background: rgba(183, 148, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(183, 148, 255, 0.4),
                0 4px 12px rgba(183, 148, 255, 0.2);
    text-shadow: 0 0 8px rgba(183, 148, 255, 0.6);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 10%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(183, 148, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-shadow: 0 0 10px rgba(183, 148, 255, 0.4);
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(183, 148, 255, 0.4), rgba(183, 148, 255, 0.1), transparent);
    max-width: 300px;
    box-shadow: 0 0 10px rgba(183, 148, 255, 0.3);
}

/* ==================== GLASS CARDS ==================== */
.glass-card {
    background: rgba(22, 19, 32, 0.9);
    border: 1px solid rgba(183, 148, 255, 0.2);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 
                0 0 20px rgba(183, 148, 255, 0.05);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 148, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px rgba(183, 148, 255, 0.4);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(183, 148, 255, 0.1), rgba(155, 109, 255, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.glass-card:hover {
    border-color: rgba(183, 148, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(183, 148, 255, 0.3),
                0 0 60px rgba(183, 148, 255, 0.1);
    background: rgba(22, 19, 32, 0.95);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover::after {
    opacity: 1;
}

/* ==================== ABOUT SECTION ==================== */
#about .glass-card {
    max-width: 800px;
}

#about .glass-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-footer {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.about-footer strong {
    color: var(--accent-light);
    font-weight: 600;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.tabs {
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
    background: var(--bg-elevated);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s ease;
    border-radius: 8px;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(155, 109, 255, 0.3);
}

.grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.grid.active-tab {
    display: grid;
}

.grid .glass-card {
    padding: 0;
    overflow: hidden;
}

.grid .glass-card video,
.grid .glass-card img {
    width: 100%;
    display: block;
    border-radius: 0;
    border: none;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.grid .glass-card h4 {
    padding: 20px 24px 8px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.grid .glass-card p {
    padding: 0 24px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.grid .glass-card .btn {
    margin: 0 24px 24px;
}

/* ==================== PRICING SECTION ==================== */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    background: rgba(155, 109, 255, 0.05);
}

.pricing-card h4 {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-card span {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.pricing-note {
    font-size: 0.8rem;
    margin-top: 24px;
    color: var(--text-muted);
}

/* ==================== DELIVERY SECTION ==================== */
.delivery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin-bottom: 24px;
}

.delivery-item {
    padding: 28px;
}

.delivery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.delivery-header h4 {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.delivery-time {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(155, 109, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.delivery-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.priority-option {
    max-width: 700px;
    border-left: 3px solid var(--accent);
    background: rgba(155, 109, 255, 0.05);
}

.priority-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.priority-option p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.priority-option strong {
    color: var(--accent-light);
}

/* ==================== PAYMENT SECTION ==================== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.payment-method {
    padding: 28px;
}

.payment-header {
    margin-bottom: 20px;
}

.payment-icon {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
}

.payment-method ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.payment-method li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.payment-method li strong {
    color: var(--warning);
}

.payment-restriction {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.2);
    max-width: 600px;
}

.payment-restriction p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-restriction strong {
    color: var(--error);
}

/* ==================== STATUS SECTION ==================== */
.status-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

.status-card {
    background: var(--card-bg);
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.status-indicator {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.status-indicator.yes {
    color: var(--success);
    background: rgba(74, 222, 128, 0.1);
}

.status-indicator.no {
    color: var(--error);
    background: rgba(248, 113, 113, 0.1);
}

/* ==================== TOS SECTION ==================== */
.tos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tos-item {
    padding: 28px;
    border-left: 3px solid var(--accent-dark);
}

.tos-item h4 {
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tos-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.tos-footer {
    margin-top: 24px;
    border-left: 3px solid var(--accent);
    max-width: 800px;
    padding: 20px 28px;
}

.tos-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tos-footer strong {
    color: var(--accent-light);
}

/* ==================== CONTACT/LINKS SECTION ==================== */
.contact-links {
    max-width: 700px;
}

.contact-notice {
    border-left: 3px solid var(--warning);
    background: rgba(251, 146, 60, 0.06);
    margin-bottom: 32px;
    padding: 24px 28px;
}

.contact-notice p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.contact-notice strong {
    color: var(--warning);
}

.contact-notice .notice-title {
    margin-bottom: 12px;
}

.contact-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-notice li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-notice li:last-child {
    margin-bottom: 0;
}

.contact-notice li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.info-notice {
    border-left: 3px solid var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 32px;
    padding: 24px 28px;
}

.info-notice p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.info-notice strong {
    color: var(--text);
}

.links-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid rgba(183, 148, 255, 0.5);
    color: var(--accent-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    background: rgba(183, 148, 255, 0.05);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(183, 148, 255, 0.2);
    text-shadow: 0 0 10px rgba(183, 148, 255, 0.4);
}

.btn:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 24px rgba(155, 109, 255, 0.4),
                0 0 40px rgba(183, 148, 255, 0.3);
    transform: translateY(-2px);
    border-color: var(--accent-light);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    nav {
        padding: 16px 5%;
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 60px 6%;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
    
    .glass-card {
        padding: 24px;
    }
    
    .about-footer {
        flex-direction: column;
        gap: 16px;
    }
    
    .tabs {
        width: 100%;
    }
    
    .tab-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .tos-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 5px;
    border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(155, 109, 255, 0.3);
}

/* Selection styling */
::selection {
    background: rgba(155, 109, 255, 0.3);
    color: var(--text);
}

/* ==================== PARTICLES (canvas) ==================== */
.hero-particles,
.section-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    contain: strict;
}

.hero-particles-canvas,
.section-particles-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero {
    z-index: 2;
}

.section > :not(.section-particles) {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .section-particles {
        display: none;
    }
}

/* ==================== SHOW ALL BUTTON ==================== */
.show-all-wrap {
    display: none;
    justify-content: center;
    margin-top: 32px;
}

.show-all-wrap.is-visible {
    display: flex;
}

.show-all-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.show-all-btn:disabled {
    opacity: 0.6;
    cursor: progress;
    transform: none;
}

.video-card-reveal {
    animation: cardReveal 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==================== SECTION REVEAL ON SCROLL ==================== */
.section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
