/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Simple Three-Color Palette */
    --primary-color: #7d929e;
    --primary-hover: #6b7f8a;
    --background-color: #2e3234;
    --surface-color: #2e3234;
    --text-primary: white;
    --text-secondary: white;
    --text-muted: #7d929e;
    --border-color: #7d929e;

    /* Gradients using the three colors */
    --gradient-primary: linear-gradient(135deg, #7d929e 0%, #6b7f8a 100%);
    --gradient-bg: linear-gradient(135deg, #2e3234 0%, #3a3f42 100%);

    /* Spacing */
    --container-padding: 2rem;
    --section-padding: 4rem 0;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 20px -4px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.5);

    /* Animations */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h2 {
    font-size: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #7d929e;
}

/* Modern Navigation Styles */
.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1;
}

.nav-center {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 20px;
    }
}

.nav-link i {
    font-size: 1rem;
}

/* Enhanced scrolled navbar */
.modern-navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(125, 146, 158, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-hover);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(125, 146, 158, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    border-radius: 1px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-color);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--surface-color);
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(51, 65, 85, 0.8) 100%);
    z-index: 2;
}

/* Floating Pixels Animation */
.pixel-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.pixel {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.6;
    animation: floatPixel 8s ease-in-out infinite;
}

.pixel-1 { top: 20%; left: 10%; animation-delay: 0s; }
.pixel-2 { top: 30%; left: 80%; animation-delay: 1s; }
.pixel-3 { top: 60%; left: 15%; animation-delay: 2s; }
.pixel-4 { top: 70%; left: 85%; animation-delay: 3s; }
.pixel-5 { top: 40%; left: 70%; animation-delay: 4s; }
.pixel-6 { top: 80%; left: 25%; animation-delay: 5s; }
.pixel-7 { top: 15%; left: 60%; animation-delay: 6s; }
.pixel-8 { top: 50%; left: 40%; animation-delay: 7s; }

@keyframes floatPixel {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Enhanced Hero Logo */
.hero-logo-container {
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
    transition: all var(--transition-normal);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.hero-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(125, 146, 158, 0.4);
    border-color: var(--primary-color);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(125, 146, 158, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Enhanced Title Section */
.hero-title-container {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all var(--transition-normal);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #7d929e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Call-to-Action */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.hero-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.hero-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.scroll-mouse {
    width: 20px;
    height: 30px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 0.5rem;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
    }

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 1rem;
    }

    .brand-img {
        width: 35px;
        height: 35px;
    }

    .hero-logo {
        width: 85px;
        padding: 0.6rem;
    }

    .hero-title-img {
        max-width: 350px;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 70px;
        padding: 0.5rem;
    }

    .hero-title-img {
        max-width: 280px;
    }

    .hero-content {
        gap: 1rem;
    }
}

/* Features Section Responsive */
@media (max-width: 1024px) {
    .feature-hero-grid {
        grid-template-columns: 1fr;
    }

    .features-cta {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .features-header {
        margin-bottom: 3rem;
    }

    .features-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .features-description {
        font-size: 1.125rem;
    }

    .feature-hero-grid {
        gap: 1.5rem;
    }

    .feature-card--large {
        padding: 1.5rem;
    }

    .feature-card--large .feature-gif {
        height: 200px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .features-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .features-main {
        gap: 3rem;
    }

    .feature-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card--large {
        padding: 1.25rem;
    }

    .feature-card--large .feature-gif {
        height: 180px;
    }

    .feature-card {
        padding: 1rem;
    }


    .feature-title {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* Enhanced Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(125, 146, 158, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(125, 146, 158, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}


.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-header > p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.features-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7d929e;
    line-height: 1;
}

.highlight-text {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-intro {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 4px solid #7d929e;
}

.features-intro p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: none;
}

@media (max-width: 768px) {
    .features-highlights {
        gap: 2rem;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .features-intro {
        padding: 1rem;
    }
}



.highlight {
    color: white;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0.3;
}

.features-description {
    font-size: 1.375rem;
    color: var(--background-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Main Features Layout */
.features-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Hero Features Grid */
.feature-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card--large {
    position: relative;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
}

.feature-card--large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}


.feature-card--large .feature-media {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.feature-card--large .feature-gif {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--surface-color);
}

.feature-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.feature-card--large .feature-content {
    position: relative;
    z-index: 2;
}

.feature-card--large .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card--large .feature-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Category Styles */
.feature-category {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #7d929e 0%, #6b7f8a 100%);
    padding: 1.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(125, 146, 158, 0.3);
    position: relative;
    overflow: hidden;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.category-title:hover::before {
    left: 100%;
}

.category-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }


    .feature-title {
        font-size: 0.95rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }
}

.feature-card {
    padding: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid rgba(125, 146, 158, 0.1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}



.feature-media {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    width: 20rem;
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
    display: block;
    box-shadow: var(--shadow-md);
}


.feature-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feature-card .feature-title {
    text-align: center;
    flex-shrink: 0;
}

.feature-text {
    color: #333333;
    line-height: 1.4;
    font-size: 0.875rem;
    margin: 0;
    flex-grow: 1;
}

/* CTA Section Styles */
.features-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: var(--primary-color);
    border-radius: 16px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.cta-actions {
    position: relative;
    z-index: 2;
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

/* Enhanced Download Section */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b  50%, #334155 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Animated Background */
.download-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(125, 146, 158, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.download-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

/* Enhanced Header */
.download-header {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.download-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.title-highlight {
    background: linear-gradient(45deg, #7d929e, #a5b4bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-accent {
    color: #10b981;
    position: relative;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.download-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Download Stats */
.download-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #7d929e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Platform Support Banner */
.platform-support {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.platform-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 600;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.platform-icon:hover {
    transform: translateY(-2px);
    color: #a5b4bc;
}

.platform-icon i {
    font-size: 2rem;
}

.platform-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Download Buttons */
.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.download-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(125, 146, 158, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(125, 146, 158, 0.3);
}

.platform-logo i {
    font-size: 1.5rem;
    color: white;
}

.platform-info {
    flex: 1;
    text-align: left;
}

.platform-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.platform-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.download-size {
    background: rgba(125, 146, 158, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Enhanced Download Button */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-arrow {
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.download-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.download-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.separator {
    opacity: 0.5;
}

/* Alternative Downloads */
.alternative-downloads {
    margin: 4rem 0;
    animation: slideInUp 0.8s ease-out 0.7s both;
}

.alternative-header {
    text-align: center;
    margin-bottom: 2rem;
}

.alternative-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.alternative-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.alternative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.alternative-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.alternative-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.alternative-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.alternative-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.alternative-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0 0 0.75rem 0;
}

.alternative-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.alternative-link:hover {
    color: #a5b4bc;
}

.alternative-link i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Enhanced Info Section */
.download-info-section {
    margin: 4rem 0;
    animation: slideInUp 0.8s ease-out 0.9s both;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 146, 158, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(125, 146, 158, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-list,
.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.security-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-fast);
}

.feature-list li:hover,
.security-list li:hover {
    color: var(--text-primary);
}

.feature-list li:last-child,
.security-list li:last-child {
    border-bottom: none;
}

.feature-list i,
.security-list i {
    color: #10b981;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.req-section strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.req-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-section li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

/* Quick Links */
.quick-links {
    margin-top: 4rem;
    animation: slideInUp 0.8s ease-out 1.1s both;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.quick-link i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Purchase & Language Section */
.purchase-language-section {
    margin: 3rem 0;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.purchase-card,
.language-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.purchase-card:hover,
.language-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.card-content {
    padding: 2rem;
}

/* Purchase Card Specific */
.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
}

.steam-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.steam-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.steam-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.steam-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.steam-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 40, 56, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Language Card Specific */
.language-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.language-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.language-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lang {
    background: rgba(125, 146, 158, 0.2);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.lang:hover {
    background: rgba(125, 146, 158, 0.3);
    transform: translateY(-2px);
}

.more-languages {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.more-languages span {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-section {
        padding: 4rem 0;
    }

    .purchase-language-section {
        margin: 2rem 0;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .language-row {
        gap: 0.5rem;
    }

    .lang {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .download-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .platform-icons {
        gap: 1rem;
    }

    .download-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .alternative-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .links-container {
        flex-direction: column;
        align-items: center;
    }

    .quick-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .platform-support {
        padding: 1rem;
    }

    .download-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .platform-info {
        text-align: center;
    }

    .info-card {
        padding: 1.5rem;
    }

    .alternative-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(125, 146, 158, 0.1);
    animation: floatSlow 10s ease-in-out infinite;
}

.footer-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.footer-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.footer-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.email-input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 150px;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 146, 158, 0.4);
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.brand-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.brand-text p {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(125, 146, 158, 0.4);
}

.social-link.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-link.discord:hover { background: #7289da; border-color: #7289da; }
.social-link.github:hover { background: #333; border-color: #333; }
.social-link.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-link.reddit:hover { background: #ff4500; border-color: #ff4500; }

/* Footer Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.footer-section h4 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
    padding: 0.25rem 0;
    border-radius: 6px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 0.875rem;
    width: 16px;
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    color: #a5b4bc;
}

.copyright .fas.fa-heart {
    color: #e74c3c;
    margin: 0 0.25rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.separator {
    opacity: 0.5;
    margin: 0 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-newsletter {
        padding: 2rem 1rem;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

    .email-input-group {
        flex-direction: column;
        align-items: center;
    }

    .email-input {
        min-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   GUIDE SECTION STYLES
   ============================================ */

.pixel-art-guide-section {
    background: linear-gradient(135deg, var(--background-color), #0f0f23);
    padding: 5rem 0;
    position: relative;
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guide-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.guide-article h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.guide-article h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.guide-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.guide-list {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.guide-list strong {
    color: var(--primary-color);
}

/* Interactive Guide Navigation */
.guide-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.guide-nav-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(125, 146, 158, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-nav-item:hover {
    background: rgba(125, 146, 158, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 146, 158, 0.3);
}

.guide-nav-item.active {
    background: rgba(125, 146, 158, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(125, 146, 158, 0.4);
}

.nav-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon i {
    font-size: 1.5rem;
    color: white;
}

.nav-content h4 {
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.nav-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Guide Panels */
.guide-panels {
    position: relative;
    min-height: 500px;
}

.guide-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.guide-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.panel-header {
    background: rgba(125, 146, 158, 0.1);
    border-radius: 12px 12px 0 0;
    padding: 2rem;
    border-bottom: 2px solid rgba(125, 146, 158, 0.3);
}

.panel-header h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.panel-header h3 i {
    margin-right: 0.5rem;
}

.panel-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
}

.panel-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 12px 12px;
    padding: 2rem;
    border: 2px solid rgba(125, 146, 158, 0.2);
    border-top: none;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h4 i {
    color: var(--text-muted);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-item {
    background: rgba(125, 146, 158, 0.05);
    border: 1px solid rgba(125, 146, 158, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.comparison-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-item h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive Design for Interactive Guide */
@media (max-width: 768px) {
    .guide-navigation {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .guide-nav-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .nav-icon {
        width: 40px;
        height: 40px;
    }

    .nav-icon i {
        font-size: 1.2rem;
    }

    .panel-header {
        padding: 1.5rem;
    }

    .panel-header h3 {
        font-size: 1.5rem;
    }

    .panel-content {
        padding: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .guide-nav-item {
        padding: 0.8rem;
    }

    .panel-header {
        padding: 1rem;
    }

    .panel-content {
        padding: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--background-color);
    padding: 5rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Interactive FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(125, 146, 158, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(125, 146, 158, 0.15);
}

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

.faq-question:hover {
    background: rgba(125, 146, 158, 0.1);
}

.faq-question.active {
    background: rgba(125, 146, 158, 0.15);
    border-bottom: 1px solid rgba(125, 146, 158, 0.2);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle i {
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer.active {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
}

.faq-answer-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Guide and FAQ */
@media (max-width: 768px) {
    .guide-article, .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .guide-header h2, .faq-header h2 {
        font-size: 2rem;
    }

    .guide-article h3 {
        font-size: 1.5rem;
    }

    .guide-article h4 {
        font-size: 1.2rem;
    }

    /* FAQ Accordion Mobile */
    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        margin-left: 0.8rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .faq-toggle {
        align-self: flex-end;
        margin-left: 0;
    }

    .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Guide Ripple Animation */
@keyframes guide-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.guide-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(125, 146, 158, 0.6);
    transform: scale(0);
    animation: guide-ripple-animation 0.6s linear;
    pointer-events: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
