:root {
    --primary-accent: #b06df2; /* Фиолетовый/неоновый */
    --bg-gradient-top: #0a0a0f;
    --bg-gradient-bottom: #000;
    --secondary-accent: #13950e; /* Зелёный */
    --text-primary: #eee;
    --text-secondary: #aaa;
    --text-faq: #ddd;
    --bg-section: rgba(255, 255, 255, 0.04);
    --border-section: rgba(255, 255, 255, 0.05);
    --border-faq: rgba(255, 255, 255, 0.08);
    --bg-faq: rgba(255, 255, 255, 0.08);
    --bg-nav: rgba(10, 10, 20, 0.7);
    --shadow-section: rgba(176, 109, 242, 0.1);
    --text-shadow-neon: 0 0 20px #b06df2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background: linear-gradient(to bottom, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--text-primary);
    overflow-x: hidden;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* Navigation */
.terminal-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--bg-nav);
    border: 1px solid var(--border-section);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--shadow-section);
    transition: top 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo .logo-img {
    height: 40px;
    filter: drop-shadow(0 0 15px var(--primary-accent));
}

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

.terminal-prompt {
    color: var(--secondary-accent);
    font-weight: 700;
    text-shadow: 0 0 10px var(--secondary-accent);
}

.nav-commands {
    display: flex;
    gap: 1.5rem;
}

.nav-cmd {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-cmd::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-accent);
}

.nav-cmd:hover {
    color: var(--primary-accent);
    text-shadow: var(--text-shadow-neon);
}

.nav-cmd:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease-in-out;
}
/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 120px; /* Adjust for fixed nav */
}

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

.cosmic-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-shadow: var(--text-shadow-neon), 0 0 40px var(--primary-accent), 0 0 80px rgba(176, 109, 242, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from { text-shadow: var(--text-shadow-neon), 0 0 30px var(--primary-accent), 0 0 60px rgba(176, 109, 242, 0.4); }
    to { text-shadow: var(--text-shadow-neon), 0 0 50px var(--primary-accent), 0 0 100px rgba(176, 109, 242, 0.6); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-section);
    border: 1px solid var(--border-section);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 0 20px var(--shadow-section);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px var(--primary-accent), 0 0 60px var(--shadow-section);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-shadow: var(--text-shadow-neon);
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* General Content Sections */
.cosmic-section {
    padding: 8rem 0;
    margin: 4rem auto;
    max-width: 1200px;
    background: var(--bg-section);
    border: 1px solid var(--border-section);
    border-radius: 16px;
    box-shadow: 0 0 30px var(--shadow-section);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.cosmic-section::before {
    content: 
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cosmic-section:hover::before {
    opacity: 0.3;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2.8rem;
    color: var(--primary-accent);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: var(--text-shadow-neon);
    letter-spacing: 0.1em;
}

h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--secondary-accent);
    text-shadow: 0 0 15px var(--secondary-accent);
}
/* Mirror Section */
.mirror-button-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.btn-access-mirrors {
    display: inline-block;
    background: linear-gradient(145deg, var(--primary-accent), #8a2be2);
    color: #ffffff;
    padding: 18px 36px;
    border: 2px solid var(--primary-accent);
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 20px var(--shadow-section), 0 0 30px var(--primary-accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-access-mirrors::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-30deg);
    transition: all 0.7s ease;
}

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

.btn-access-mirrors:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px var(--primary-accent), 0 0 50px var(--primary-accent), 0 0 80px rgba(176, 109, 242, 0.6);
    background: linear-gradient(145deg, #c08df2, var(--primary-accent));
    text-decoration: none;
}
/* Welcome Grid */
.welcome-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

.welcome-text p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(176, 109, 242, 0.1);
    backdrop-filter: blur(3px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--primary-accent), 0 0 40px var(--shadow-section);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
    text-shadow: var(--text-shadow-neon);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}
/* Access Content */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

.access-text p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}
article img,
section img,
main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-image,
.tool-image,
.gallery-image {
    border-radius: 12px;
    border: 1px solid rgba(176, 109, 242, 0.2);
    box-shadow: 0 0 25px rgba(176, 109, 242, 0.1);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover,
.tool-image:hover,
.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(176, 109, 242, 0.25);
}

/* Gallery */
.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-section);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 25px var(--shadow-section);
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(176, 109, 242, 0.2);
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px var(--primary-accent), 0 0 40px var(--shadow-section);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    font-size: 2rem;
    padding: 0.8rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--shadow-section);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--primary-accent);
    color: var(--bg-gradient-bottom);
    box-shadow: 0 0 25px var(--primary-accent);
}
/* Recovery Section */
.recovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

.recovery-text p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.recovery-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px var(--shadow-section);
    transition: all 0.3s ease;
}

.recovery-visual img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--primary-accent), 0 0 50px var(--shadow-section);
}
/* Vendor Section */
.vendor-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.path-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(176, 109, 242, 0.1);
    backdrop-filter: blur(3px);
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--primary-accent), 0 0 40px var(--shadow-section);
}

.path-card h3 {
    font-size: 1.8rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow-neon);
}

.path-requirement, .path-benefit {
    font-size: 1.2rem;
    color: var(--secondary-accent);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--secondary-accent);
}

.path-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}
/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.security-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(176, 109, 242, 0.1);
    backdrop-filter: blur(3px);
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--primary-accent), 0 0 40px var(--shadow-section);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
    text-shadow: var(--text-shadow-neon);
}

.security-feature h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.security-feature p {
    font-size: 1rem;
    color: var(--text-secondary);
}
/* Guide Section */
.guide-section {
    padding: 8rem 0;
    margin: 4rem auto;
    max-width: 1200px;
    background: var(--bg-section);
    border: 1px solid var(--border-section);
    border-radius: 16px;
    box-shadow: 0 0 30px var(--shadow-section);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.guide-section:hover::before {
    opacity: 0.3;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(176, 109, 242, 0.1);
    backdrop-filter: blur(3px);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--primary-accent), 0 0 40px var(--shadow-section);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-shadow: var(--text-shadow-neon);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}
/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    margin: 4rem auto;
    max-width: 1200px;
    background: var(--bg-section);
    border: 1px solid var(--border-section);
    border-radius: 16px;
    box-shadow: 0 0 30px var(--shadow-section);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-section:hover::before {
    opacity: 0.3;
}

.faq-item {
    background: var(--bg-faq);
    border: 1px solid var(--border-faq);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-faq);
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-accent);
}

.faq-question.active {
    background: rgba(255, 255, 255, 0.07);
    color: var(--primary-accent);
    border-bottom: 1px solid var(--primary-accent);
}

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

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-accent);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}
/* Footer */
.footer {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to top, var(--bg-gradient-bottom), var(--bg-gradient-top));
    border-top: 1px solid var(--border-section);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--primary-accent);
    margin: 0 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-accent);
    text-shadow: 0 0 10px var(--secondary-accent);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .nav-commands {
        gap: 1rem;
    }

    .cosmic-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .stat-card {
        padding: 1.5rem 2rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .welcome-grid, .access-content, .recovery-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-image {
        max-width: 300px;
    }

    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .vendor-paths, .security-grid, .guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .terminal-nav {
        top: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .nav-terminal {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-nav);
        border-top: 1px solid var(--border-section);
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .nav-commands {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-cmd {
        padding: 0.8rem 0;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cmd:last-child {
        border-bottom: none;
    }

    .nav-terminal.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section {
        margin-top: 80px;
    }

    .cosmic-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stat-card {
        padding: 1rem 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .welcome-grid, .access-content, .recovery-content {
        padding: 1rem;
    }

    .gallery-image {
        max-width: 250px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

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

    .nav-logo .logo-img {
        height: 35px;
    }

    .cosmic-title {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-card {
        width: 80%;
        margin: 0 auto;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .gallery-image {
        max-width: 200px;
    }

    .gallery-prev, .gallery-next {
        left: 0.5rem;
        right: 0.5rem;
    }

    .vendor-paths, .security-grid, .guide-steps {
        grid-template-columns: 1fr;
    }

    .path-card, .security-feature, .step-card {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}
.cosmic-footer {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(10, 10, 20, 0.5));
    border-top: 1px solid rgba(176, 109, 242, 0.2);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.cosmic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent, #b06df2), transparent);
    animation: footer-line-anim 4s linear infinite;
}

@keyframes footer-line-anim {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(176, 109, 242, 0.15);
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-accent, #b06df2);
    text-shadow: 0 0 15px var(--primary-accent, #b06df2);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary, #aaa);
    line-height: 1.7;
    font-size: 1rem;
}

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

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

.footer-section ul a {
    color: var(--text-primary, #eee);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-section ul a::before {
    content: '»';
    color: var(--primary-accent, #b06df2);
    margin-right: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-section ul a:hover {
    color: var(--primary-accent, #b06df2);
    text-shadow: 0 0 10px var(--primary-accent, #b06df2);
    transform: translateX(5px);
}

.footer-section ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-secondary, #aaa);
    font-size: 0.9rem;
    opacity: 0.7;
}
