:root {
    --bg-color: #050505;
    --header-bg-initial: rgba(0, 0, 0, 0);
    --header-scrolled-bg: rgba(15, 15, 15, 0.6);
    --card-bg: #0a0a0a;
    --text-main: #ececec;
    --text-muted: #888;
    --border-color: #1a1a1a;
    --accent-hover: #fff;
    --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.5);
    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-main);
    font-family: var(--font-main);
    height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    will-change: scroll-position;
}

/* Performance optimizations */
img, video {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* GPU acceleration for animations */
.anim-el, .word-rotator, .rotator-track, .rotator-track-15s, .rotator-track-30s, .rotator-track-once {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* --- Header Styles --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 999;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    transform: translateY(0);
    padding-top: 5px; 
    pointer-events: auto;
    opacity: 1;
    will-change: top, transform;
    overflow: visible;
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px; /* Increased padding to move elements further from edges */
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                border 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0); 
    background: rgba(0, 0, 0, 0); 
    backdrop-filter: blur(0px); 
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    
    pointer-events: auto;
    will-change: width, max-width, padding, background, backdrop-filter, border-radius;
    transform: translateZ(0);
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Reset to start */
    padding-left: 40px; /* Push in from left edge */
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: font-size 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                gap 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    display: inline-block;
    opacity: 1;
    max-width: 30px;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo span {
    display: inline-block;
    opacity: 1;
    max-width: 100px;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                gap 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-center a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, 
                font-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.header-center a:hover {
    color: var(--accent-hover);
}

.header-center a.active {
    color: #fff;
    font-weight: 600;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Reset to end */
    padding-right: 40px; /* Push in from right edge */
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn span {
    display: inline-block;
    opacity: 1;
    max-width: 200px;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn i {
    font-size: 1.2rem;
    transition: font-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn:hover {
    opacity: 0.8;
}

/* --- Scrolled State (The "Pill") --- */
.site-header.scrolled {
    top: 20px;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LIQUID GLASS STYLES */
.site-header.scrolled .header-inner {
    width: 100%; 
    max-width: 800px; 
    border-radius: 100px;
    padding: 15px 40px; 
    position: relative;
    overflow: hidden;
    display: flex;
    font-weight: 600;
    margin: 0 auto;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4), 
        0 0 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                width 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                padding 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                border 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Liquid Glass Effect Layer */
.site-header.scrolled .header-inner::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    backdrop-filter: blur(3px);
    filter: url(#glass-distortion);
    overflow: hidden;
    border-radius: 100px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-inner::before {
    opacity: 1;
}

/* Liquid Glass Tint Layer - темный цвет сайта */
.site-header.scrolled .header-inner::after {
    content: '';
    z-index: 1;
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    border-radius: 100px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-inner::after {
    opacity: 1;
}

.site-header.scrolled .header-left,
.site-header.scrolled .header-right,
.site-header.scrolled .logo,
.site-header.scrolled .header-center,
.site-header.scrolled .header-center a,
.site-header.scrolled .discord-btn,
.site-header.scrolled .discord-btn i {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.site-header.scrolled .logo i {
    opacity: 0;
    max-width: 0;
    margin: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .logo span {
    opacity: 1;
    max-width: 100px;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .discord-btn span {
    opacity: 0;
    max-width: 0;
    margin: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-left {
    flex: 0 0 auto;
    padding-right: 25px; /* Space between logo and nav */
}

.site-header.scrolled .header-right {
    flex: 0 0 auto;
    padding-left: 25px; /* Space between nav and Discord */
}

.site-header.scrolled .logo {
    gap: 0;
}

.site-header.scrolled .discord-btn {
    gap: 0;
}

.site-header.scrolled .header-center {
    gap: 20px; 
    flex: 1;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Glow */
.hero-glow {
    display: none;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.1;
}


.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 0;
}

/* Word Rotator */
.word-rotator {
    display: inline-block;
    vertical-align: baseline;
    height: 1em; 
    overflow: hidden;
    position: relative;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    margin-top: -0.02em;
}


.rotator-track {
    display: flex;
    flex-direction: column;
    transform: translateY(0em); 
    animation: rotateWords 10s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

.rotator-track-15s {
    display: flex;
    flex-direction: column;
    transform: translateY(0em); 
    animation: rotateWords 15s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

.rotator-track-30s {
    display: flex;
    flex-direction: column;
    transform: translateY(0em); 
    animation: rotateWords 30s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

.rotator-track-once {
    display: flex;
    flex-direction: column;
    transform: translateY(0em); 
    /* Animation will be triggered by JavaScript */
}

.rotator-track-once.animate {
    animation: rotateWordsOnce 6s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.rotator-track span, .rotator-track-15s span, .rotator-track-30s span, .rotator-track-once span {
    height: 1em;
    line-height: 1.1em;
    display: block;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

@keyframes rotateWords {
    0%, 45% { transform: translateY(0em); }
    50%, 95% { transform: translateY(-1em); }
    100% { transform: translateY(0em); }
}

@keyframes rotateWordsOnce {
    0%, 45% { transform: translateY(0em); }
    50%, 100% { transform: translateY(-1em); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle-change {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* About Section */
.about-section {
    margin: 0 auto 100px;
    max-width: 800px;
    text-align: center;
    padding: 50px 40px;
    background: rgba(15, 15, 15, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}


.about-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    letter-spacing: -0.5px;
}

.about-content h2 .word-rotator {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    min-width: 200px;
    overflow: hidden;
}

.about-content h2 .word-rotator .rotator-track-30s,
.about-content h2 .word-rotator .rotator-track-once {
    width: 100%;
    align-items: center;
}

.about-content h2 .word-rotator .rotator-track-30s span,
.about-content h2 .word-rotator .rotator-track-once span {
    text-align: center;
    width: 100%;
}

.about-content {
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #d0d0d0;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 300;
}

/* Grud Story Section */
.grud-story-section {
    margin: 80px auto;
    max-width: 900px;
    padding: 0 20px;
}

.grud-story-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 0;
}

.grud-story-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    z-index: 0;
}

.grud-story-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 26px 28px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.grud-story-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.grud-story-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 14px;
}

.grud-story-item:hover::after {
    opacity: 1;
}

.grud-story-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.grud-story-item:hover::before {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.story-item-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.story-year {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.grud-story-item:hover .story-year {
    color: var(--accent-hover);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.grud-story-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    line-height: 1.3;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.3px;
}

.grud-story-item:hover h3 {
    color: var(--accent-hover);
}

.grud-story-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.grud-story-item:hover p {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .grud-story-section {
        max-width: 100%;
    }
    
    .grud-story-wrapper::before {
        left: 16px;
    }
    
    .grud-story-item {
        padding: 24px 20px;
        margin-left: 40px;
    }
    
    .grud-story-item::before {
        left: -24px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .story-item-header {
        gap: 12px;
    }
    
    .story-year {
        font-size: 0.9rem;
        padding: 4px 10px;
    }
    
    .grud-story-item h3 {
        font-size: 1.3rem;
    }
    
    .grud-story-item p {
        font-size: 0.9rem;
    }
}

/* Grid / Windows */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 968px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
    }
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 32px 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

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

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.025);
    transform: translateY(-3px);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.card-header .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.card:hover .card-header .dot {
    transform: scale(1.1);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.card-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
    transform: scale(1.05);
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.card-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-main);
    line-height: 1.3;
    transition: color 0.5s ease;
    letter-spacing: -0.3px;
}

.card:hover h2 {
    color: var(--accent-hover);
}

.card p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    transition: color 0.5s ease;
}

.card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

/* Development Journey Section */
/* Features Timeline Section */
.features-timeline {
    margin: 120px auto;
    max-width: 1100px;
    padding: 0 20px;
}

.timeline-content {
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, var(--text-main) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.timeline-items {
    position: relative;
    padding-left: 40px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--border-color);
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.timeline-item:hover .timeline-marker {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.timeline-content-item {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 26px 28px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.timeline-content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 14px;
}

.timeline-item:hover .timeline-content-item {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.timeline-item:hover .timeline-content-item::before {
    opacity: 1;
}

.timeline-content-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.timeline-item:hover .timeline-content-item h3 {
    color: var(--accent-hover);
}

.timeline-content-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.timeline-item:hover .timeline-content-item p {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .timeline-header h2 {
        font-size: 2rem;
    }
    
    .timeline-items {
        padding-left: 30px;
    }
    
    .timeline-items::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -22px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content-item {
        padding: 25px 20px;
    }
}

/* Stats Section */
/* Dual Section Container */
.dual-section {
    margin: 120px auto;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

@media (max-width: 968px) {
    .dual-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 80px auto;
    }
}

/* Tech Section */
.tech-section {
    padding: 50px 35px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.tech-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.tech-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.tech-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    display: block;
    line-height: 1.5;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tech-item {
    padding: 22px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}


.tech-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.tech-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover .tech-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    transform: scale(1.05);
}

.tech-content-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.tech-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    line-height: 1.3;
    transition: color 0.5s ease;
}

.tech-item:hover .tech-name {
    color: var(--accent-hover);
}

.tech-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.4;
    transition: color 0.5s ease;
}

.tech-item:hover .tech-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* Support Section */
.support-section {
    padding: 50px 35px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.support-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.support-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.support-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    display: block;
    line-height: 1.5;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.support-item {
    padding: 22px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}


.support-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.support-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-item:hover .support-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    transform: scale(1.05);
}

.support-content-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.support-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    line-height: 1.3;
    transition: color 0.5s ease;
}

.support-item:hover .support-name {
    color: var(--accent-hover);
}

.support-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.4;
    transition: color 0.5s ease;
}

.support-item:hover .support-desc {
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .tech-section,
    .support-section {
        padding: 40px 25px;
    }
    
    .tech-content h2,
    .support-content h2 {
        font-size: 1.8rem;
    }
    
    .tech-subtitle,
    .support-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .tech-list,
    .support-list {
        gap: 15px;
        grid-template-columns: 1fr;
    }
    
    .tech-item,
    .support-item {
        padding: 20px;
    }
    
    .tech-icon,
    .support-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .tech-name,
    .support-name {
        font-size: 1rem;
    }
    
    .tech-desc,
    .support-desc {
        font-size: 0.8rem;
    }
}

.stats-section {
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonials Section */
/* Testimonials Loop Section */
.testimonials-loop-section {
    margin-top: 120px;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonials-loop-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.testimonials-loop-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-loop-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.testimonials-loop-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.testimonials-scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonials-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-scroll-track {
    display: flex;
    gap: 15px;
    width: fit-content;
    will-change: transform;
    /* Animation is now controlled by JavaScript */
    min-width: 0;
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 18px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 280px;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.testimonial-icon {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
}

.testimonial-author i {
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .testimonials-loop-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        width: 260px;
        padding: 18px 16px;
    }
    
    .testimonial-icon {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
    
    .testimonials-scroll-track {
        gap: 12px;
    }
    
    .testimonials-scroll-wrapper {
        gap: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-scroll-container {
        padding: 10px 0;
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    
    .testimonial-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

/* FAQ Section */
.faq-section {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease, max-height 0.8s ease, margin 0.8s ease, padding 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
    height: 0;
}

.faq-section.revealed {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 5000px;
    height: auto;
    margin: 100px auto;
    padding: 0 20px;
    pointer-events: auto;
    overflow: visible;
}

.faq-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    letter-spacing: -0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: transparent;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #888;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Cards in Credits */
.team-list-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
}

.team-member-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.avatar-container {
    margin-bottom: 10px;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #fff;
    border: 3px solid rgba(255,255,255,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    overflow: hidden;
    position: relative;
}

.creator-card:hover .avatar {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.25);
}

.team-member-item:hover .avatar {
    transform: scale(1.1) rotate(5deg);
}

/* Avatar Glows - Monochrome */
.glow-white { border-color: rgba(255, 255, 255, 0.15); color: #fff; }

.creator-card .glow-white {
    border-color: rgba(255, 255, 255, 0.2);
}

.team-content h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}

.role-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.team-content p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

/* Creator Card Layout */
.creator-card {
    padding: 60px 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    position: relative;
    overflow: hidden;
}

.creator-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.creator-card .creator-content {
    position: relative;
    z-index: 1;
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.creator-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.creator-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    min-width: 220px;
}

.creator-left .avatar-container {
    margin-bottom: 25px;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.creator-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.creator-name h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 2.2rem;
    margin: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    position: relative;
    gap: 0;
}

.creator-name h2 .word-rotator {
    display: inline-flex;
    margin: 0;
    text-align: center;
    justify-content: center;
}

.creator-name h2 .word-rotator {
    display: inline-flex;
    margin: 0;
    text-align: center;
    justify-content: center;
}

.verified-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    animation: showCheckmark 15s infinite cubic-bezier(0.7, 0, 0.3, 1);
    position: absolute;
    left: calc(50% + 1.2em);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Show checkmark when "wood" is visible (50%-95% of animation cycle) */
@keyframes showCheckmark {
    0%, 45% { 
        opacity: 0; 
        visibility: hidden;
    }
    50%, 95% { 
        opacity: 1; 
        visibility: visible;
    }
    100% { 
        opacity: 0; 
        visibility: hidden;
    }
}

.role-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.creator-card:hover .role-badge {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.creator-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 50px;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.creator-info {
    color: #aaa;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
}

.creator-info p {
    margin: 0;
}

/* Creator Card Mobile Styles */
@media (max-width: 768px) {
    .creator-card {
        padding: 40px 25px !important;
        margin: 0 auto 60px !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .creator-content {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
    }
    
    .creator-left {
        min-width: auto !important;
        width: 100% !important;
    }
    
    .creator-left .avatar-container {
        margin-bottom: 20px !important;
    }
    
    .avatar {
        width: 120px !important;
        height: 120px !important;
    }
    
    .creator-name {
        gap: 12px !important;
    }
    
    .creator-name h2 {
        font-size: 1.8rem !important;
    }
    
    .role-badge {
        padding: 6px 16px !important;
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .creator-right {
        width: 100% !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.12) !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .creator-info {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .creator-card {
        padding: 30px 20px !important;
        margin: 0 auto 40px !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .creator-content {
        gap: 25px !important;
    }
    
    .avatar {
        width: 100px !important;
        height: 100px !important;
    }
    
    .creator-name h2 {
        font-size: 1.5rem !important;
    }
    
    .role-badge {
        padding: 5px 14px !important;
        font-size: 0.75rem !important;
    }
    
    .creator-info {
        font-size: 0.95rem !important;
    }
}

/* Footer */
footer {
    margin-top: auto;
    padding: 30px 20px;
    color: #444;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    border: none;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(15, 15, 15, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(0.95);
}


/* Animations */
.anim-el {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.anim-el.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }
.delay-9 { transition-delay: 0.9s; }
.delay-10 { transition-delay: 1.0s; }
.delay-11 { transition-delay: 1.1s; }

/* Executor Page Styles */
.executor-intro {
    margin: 0 auto 100px;
    max-width: 900px;
    text-align: center;
    padding: 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.8s ease;
}

.executor-intro:hover {
    transform: translateY(-5px);
}

.executor-intro-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 25px;
    color: #fff;
}

.executor-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Features Highlight Section */
.features-highlight {
    margin: 80px auto;
    max-width: 1200px;
    padding: 80px 40px;
}

.features-highlight-content {
    text-align: center;
}

.features-highlight-header {
    margin-bottom: 60px;
}

.features-highlight-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.features-highlight-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-highlight-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-highlight-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-highlight-item:hover::before {
    opacity: 1;
}

.feature-highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.feature-highlight-item:hover .feature-highlight-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #fff;
}

.feature-highlight-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.feature-highlight-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    transition: color 0.5s ease;
}

.feature-highlight-item:hover p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .features-highlight {
        padding: 50px 20px;
        margin: 50px auto;
    }
    
    .features-highlight-header h2 {
        font-size: 2rem;
    }
    
    .features-highlight-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-highlight-item {
        padding: 30px 25px;
    }
    
    .feature-highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Comparison Section */
.comparison-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 40px 40px;
}

.comparison-content {
    text-align: center;
}

.comparison-header {
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -0.5px;
}

.comparison-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.comparison-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

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

.comparison-card-other {
    opacity: 0.9;
}

.comparison-card-other::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.comparison-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
}

.comparison-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card .comparison-icon {
    border-color: var(--border-color);
}

.comparison-card .comparison-icon i {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.comparison-card:hover .comparison-icon {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.comparison-card:hover .comparison-icon i {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-hover);
    transform: scale(1.05);
}

.comparison-card-other .comparison-icon {
    border-color: var(--border-color);
}

.comparison-card-other .comparison-icon i {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 2px solid var(--border-color);
}

.comparison-card-other:hover .comparison-icon {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.comparison-card-other:hover .comparison-icon i {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    transform: scale(1.05);
}

.comparison-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    transition: color 0.6s ease;
}

.comparison-card:hover h3 {
    color: var(--accent-hover);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    color: var(--text-main);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 5px;
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: currentColor;
    transition: height 0.3s ease;
    border-radius: 2px;
}

.comparison-list li:hover {
    color: var(--accent-hover);
    padding-left: 10px;
}

.comparison-list li:hover::before {
    height: 60%;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    font-size: 1.15rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    transition: transform 0.3s ease;
}

.comparison-list li:hover i {
    transform: scale(1.2);
}

.comparison-card .comparison-list li i.fa-circle-check {
    color: var(--text-main);
    transition: color 0.6s ease;
}

.comparison-card:hover .comparison-list li i.fa-circle-check {
    color: var(--accent-hover);
}

.comparison-card-other .comparison-list li i.fa-circle-xmark {
    color: var(--text-muted);
    transition: color 0.6s ease;
}

.comparison-card-other:hover .comparison-list li i.fa-circle-xmark {
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .comparison-card {
        padding: 35px 25px;
    }
    
    .comparison-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .comparison-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .comparison-list li {
        font-size: 1rem;
        padding: 14px 0;
    }
    
    .comparison-list li i {
        font-size: 1.1rem;
    }
    
    .comparison-header h2 {
        font-size: 2rem;
    }
}

.executor-cta {
    margin: 100px auto;
    max-width: 800px;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.executor-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.executor-cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 8px;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    touch-action: manipulation;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0) scale(0.9);
    width: 90%;
    max-width: 420px;
    max-height: 75vh;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-sizing: border-box;
    overflow-x: hidden;
}

.mobile-menu.active {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.mobile-menu-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-hover);
    transform: scale(1.05);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 20px 20px 25px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: calc(75vh - 80px);
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
}

.mobile-menu-content a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-menu.active .mobile-menu-content a {
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu.active .mobile-menu-content a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.active .mobile-menu-content a:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-menu-content a:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-menu-content a:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-menu-content a:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-menu-content a:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mobile-menu-content a i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover i,
.mobile-menu-content a:active i {
    color: var(--text-main);
    transform: scale(1.1);
}

.mobile-menu-content a span {
    flex: 1;
}

.mobile-menu-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--text-main) 0%, var(--text-muted) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.mobile-menu-content a:hover,
.mobile-menu-content a:active {
    color: var(--accent-hover);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu-content a:hover::before,
.mobile-menu-content a:active::before {
    transform: scaleY(1);
}

.mobile-menu-content a:active {
    transform: translateY(-2px) scale(0.98);
}



.mobile-discord-btn {
    margin-top: 10px !important;
    padding: 16px 20px !important;
    border: 1px solid rgba(88, 101, 242, 0.3) !important;
    border-radius: 12px !important;
    justify-content: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.1) 100%) !important;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.15) !important;
}

.mobile-discord-btn:hover,
.mobile-discord-btn:active {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.2) 100%) !important;
    border-color: rgba(88, 101, 242, 0.5) !important;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.25) !important;
    transform: translateY(-2px) !important;
}

.mobile-discord-btn i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(88, 101, 242, 0.3));
}

/* Touch optimization */
a, button {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    touch-action: manipulation;
}

/* Improved mobile optimizations */
@media (max-width: 1024px) {
    .container {
        padding: 180px 20px 60px;
    }
    
    .header-inner {
        padding: 15px 40px;
    }
    
    .header-center {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Header optimizations */
    .header-center { 
        display: none; 
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-overlay {
        display: block !important;
    }
    
    .mobile-menu {
        display: flex !important;
        width: calc(100vw - 30px) !important;
        max-width: 420px !important;
        top: 15% !important;
        max-height: 80vh !important;
        left: 50% !important;
        transform: translate(-50%, 0) scale(0.9) !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }
    
    .mobile-menu.active {
        transform: translate(-50%, 0) scale(1) !important;
    }
    
    .mobile-menu-header {
        padding: 20px 20px 15px !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-menu-title {
        font-size: 1.3rem !important;
    }
    
    .mobile-menu-content {
        padding: 15px 15px 20px !important;
        max-height: calc(80vh - 70px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        flex: 1 !important;
        min-height: 0 !important;
    }
    
    .header-inner {
        padding: 15px 20px;
    }
    
    .site-header.scrolled .header-inner { 
        width: calc(100% - 40px);
        max-width: calc(100vw - 40px);
        padding: 12px 20px;
        border-radius: 50px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .discord-btn span {
        display: none;
    }
    
    .header-right {
        padding-right: 0;
        gap: 15px;
    }
    
    /* Container and spacing */
    .container {
        padding: 140px 15px 40px;
    }
    
    /* Typography optimizations */
    .hero h1 { 
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    /* Fix word-rotator alignment on mobile */
    .hero h1 .word-rotator {
        vertical-align: baseline;
        margin-top: -0.02em;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* About section */
    .about-section {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Journey section */
    .journey-header h2 {
        font-size: 2rem;
    }
    
    .timeline-subtitle {
        font-size: 1rem;
    }
    
    .features-timeline {
        margin: 80px auto;
        padding: 0 15px;
    }
    
    /* Dual section */
    .dual-section {
        margin: 60px auto;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .tech-section,
    .support-section {
        padding: 40px 20px;
    }
    
    .tech-content h2,
    .support-content h2 {
        font-size: 1.8rem;
    }
    
    /* Testimonials Loop */
    .testimonials-loop-section {
        margin-top: 80px;
        padding: 60px 15px;
    }
    
    .testimonials-loop-header h2 {
        font-size: 2rem;
    }
    
    /* FAQ */
    .faq-section {
        padding: 0 15px;
    }
    
    .faq-content h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    footer {
        padding: 20px 20px 15px;
        font-size: 0.9rem;
    }
    
    /* Touch-friendly button sizes */
    .discord-btn,
    .cta-button {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    html {
        width: 100%;
        max-width: 100%;
    }
    
    /* Container and main sections should not exceed viewport */
    .container,
    .about-section,
    .features-timeline,
    .dual-section,
    .testimonials-loop-section,
    .faq-section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Testimonials scroll container should not create horizontal scroll */
    .testimonials-scroll-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    img, video {
        height: auto;
        max-width: 100%;
    }
    
    .executor-intro {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .executor-intro-content h2 {
        font-size: 1.5rem;
    }
    
    .executor-intro-content p {
        font-size: 1rem;
    }
    
    .features-highlight {
        padding: 60px 20px;
        margin: 60px auto;
    }
    
    .features-highlight-header h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .features-highlight-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-highlight-item {
        padding: 30px 25px;
    }
    
    .feature-highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-highlight-item h3 {
        font-size: 1.3rem;
    }
    
    .stats-showcase,
    .executor-cta {
        padding: 40px 20px;
        margin: 60px auto;
    }
    
    .stats-showcase-header h2,
    .executor-cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .benefits-list {
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .executor-cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Extra small devices (phones, 320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 120px 12px 30px;
    }
    
    .header-inner {
        padding: 12px 15px;
    }
    
    .site-header.scrolled .header-inner {
        padding: 10px 15px;
        border-radius: 40px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    /* Fix word-rotator alignment on small mobile */
    .hero h1 .word-rotator {
        vertical-align: baseline;
        margin-top: -0.02em;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .about-content h2,
    .journey-header h2,
    .testimonials-loop-header h2,
    .faq-content h2 {
        font-size: 1.75rem;
    }
    
    .about-section,
    .features-timeline,
    .testimonials-loop-section {
        padding: 40px 12px;
        margin-top: 60px;
    }
    
    .timeline-items {
        padding-left: 25px;
    }
    
    .timeline-items::before {
        left: 8px;
    }
    
    .timeline-marker {
        left: -18px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content-item {
        padding: 20px 18px;
    }
    
    .timeline-content-item h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content-item p {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .dual-section {
        padding: 0 12px;
        margin: 40px auto;
    }
    
    .tech-section,
    .support-section {
        padding: 30px 15px;
    }
    
    .mobile-menu {
        width: calc(100vw - 20px) !important;
        max-width: none !important;
        top: 12% !important;
        max-height: 83vh !important;
        border-radius: 20px !important;
        z-index: 1000;
        padding: 0 !important;
    }
    
    .mobile-menu-header {
        padding: 18px 18px 14px !important;
    }
    
    .mobile-menu-title {
        font-size: 1.15rem !important;
    }
    
    .mobile-menu-content {
        padding: 12px 15px 18px !important;
        max-height: calc(83vh - 65px) !important;
    }
    
    .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .mobile-menu a {
        font-size: 1rem !important;
        padding: 14px 18px !important;
        min-height: 52px !important;
        margin-bottom: 8px !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    footer {
        padding: 25px 15px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .anim-el {
        animation-duration: 0.5s !important;
    }
    
    /* Optimize images */
    img {
        content-visibility: auto;
    }
    
    /* Reduce shadows for better performance */
    * {
        box-shadow: none !important;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .card:hover,
        .timeline-content-item:hover,
        .testimonial-card:hover,
        .feature-showcase-card:hover {
            transform: none;
        }
    }
}

/* Landscape orientation optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .container {
        padding: 100px 15px 30px;
    }
    
    .hero {
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .mobile-menu {
        padding: 60px 30px 20px;
    }
}

/* Donate Page Styles */
.donate-intro {
    margin: 80px auto;
    max-width: 900px;
    padding: 0 20px;
}

.donate-intro-content {
    text-align: center;
    position: relative;
}

.donate-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.15) 0%, rgba(255, 107, 107, 0.1) 100%);
    border: 1px solid rgba(255, 77, 77, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 107, 107, 0.9);
    transition: all 0.4s ease;
}

.donate-intro-content:hover .donate-intro-icon {
    border-color: rgba(255, 77, 77, 0.3);
}

.donate-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.donate-intro-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

.donate-impact {
    margin: 100px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.donate-impact-content {
    text-align: center;
}

.donate-impact-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.impact-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.impact-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.impact-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

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

.donate-methods {
    margin: 100px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.donate-methods-content {
    text-align: center;
}

.donate-methods-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.donate-methods-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 60px;
    letter-spacing: 0.3px;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.donate-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.donate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.donate-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}


.donate-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.donate-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.donate-icon.bitcoin {
    background: linear-gradient(135deg, #f7931a 0%, #ffb84d 100%);
}

.donate-icon.ethereum {
    background: linear-gradient(135deg, #627eea 0%, #8fa8f2 100%);
}

.donate-icon.litecoin {
    background: #345d9d;
}

.donate-card-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    flex: 1;
    margin: 0;
}

.donate-symbol {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.donate-address-container {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.donate-address {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    word-break: break-all;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.donate-card:hover .donate-address {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
}

.donate-address code {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.donate-copy-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}


.donate-copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.donate-copy-btn i {
    font-size: 1rem;
}

.donate-qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.donate-card:hover .donate-qr-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.donate-qr-image {
    max-width: 100%;
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.donate-qr-placeholder {
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.donate-qr-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.donate-qr-placeholder span {
    font-size: 0.9rem;
}

.donate-thanks {
    margin: 20px auto 100px;
    max-width: 800px;
    padding: 80px 40px;
    text-align: center;
}

.donate-thanks-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.donate-thanks-content:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.thanks-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    display: inline-block;
    opacity: 0.7;
}

.donate-thanks-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.donate-thanks-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .donate-intro-content h2,
    .donate-impact-content h2,
    .donate-methods-content h2 {
        font-size: 2rem;
    }
    
    .donate-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .donate-card {
        padding: 30px 25px;
    }
    
    .donate-thanks {
        padding: 60px 20px;
    }
    
    .donate-thanks-content {
        padding: 40px 25px;
    }
}

/* Download Page Styles */
.download-main-section {
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
}

.download-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.download-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.download-version-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 20px;
}

.download-version-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.version-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.download-date {
    display: flex;
    align-items: center;
}

.date-label {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card:hover .date-label {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.download-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.download-feature-item i {
    color: var(--text-main);
    font-size: 1rem;
}

.download-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.download-btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.download-btn-primary i {
    font-size: 1.2rem;
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    padding-top: 8px;
}

.download-note i {
    font-size: 0.9rem;
}

/* Requirements Section */
.requirements-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.requirement-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.requirement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-card:hover .requirement-icon {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.requirement-icon i {
    font-size: 2rem;
    color: var(--text-main);
}

.requirement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.requirement-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Installation Section */
.installation-section {
    margin: 80px auto;
    max-width: 900px;
    padding: 0 20px;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.installation-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.installation-step:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.installation-step:hover .step-number {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Download Info Section */
.download-info-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.download-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-info-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-info-card:hover .info-icon {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.info-icon i {
    font-size: 2rem;
    color: var(--text-main);
}

.download-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.download-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-link:hover {
    color: var(--accent-hover);
    gap: 12px;
}

.info-link i {
    font-size: 0.9rem;
}

/* Responsive Design for Download Page */
@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .download-card {
        padding: 28px 24px;
    }
    
    .download-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .download-version-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .download-date {
        font-size: 0.85rem;
    }
    
    .download-btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .installation-step {
        padding: 24px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .download-info-grid {
        grid-template-columns: 1fr;
    }
}
