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

        :root {
            --primary-accent: #b06df2;
            --green-accent: #13950e;
            --bg-top: #0a0a0f;
            --bg-bottom: #000;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --cyber-blue: #00d4ff;
            --cyber-pink: #ff006e;
            --neon-cyan: #00ffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-accent);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }

        @keyframes glow-pulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(176, 109, 242, 0.5), 
                            inset 0 0 20px rgba(176, 109, 242, 0.1);
            }
            50% { 
                box-shadow: 0 0 40px rgba(176, 109, 242, 0.8), 
                            inset 0 0 30px rgba(176, 109, 242, 0.2);
            }
        }

        @keyframes text-glow {
            0%, 100% { 
                text-shadow: 0 0 10px var(--primary-accent), 
                             0 0 20px var(--primary-accent);
            }
            50% { 
                text-shadow: 0 0 20px var(--primary-accent), 
                             0 0 40px var(--primary-accent),
                             0 0 60px var(--primary-accent);
            }
        }

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

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

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

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(176, 109, 242, 0.2);
            box-shadow: 0 0 20px rgba(176, 109, 242, 0.1);
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary-accent) 0%, var(--green-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            animation: text-glow 2s ease-in-out infinite;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-accent), var(--green-accent));
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-accent);
            text-shadow: 0 0 10px rgba(176, 109, 242, 0.5);
        }

        nav a:hover::after {
            width: 100%;
        }

        @media (max-width: 768px) {
            nav ul {
                gap: 1rem;
                font-size: 0.85rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 60px;
            background: linear-gradient(135deg, rgba(176, 109, 242, 0.1) 0%, rgba(19, 149, 14, 0.05) 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            animation: slideInUp 1s ease-out;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary-accent) 0%, var(--green-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            animation: text-glow 2s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(90deg, var(--primary-accent) 0%, var(--green-accent) 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(176, 109, 242, 0.4);
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(176, 109, 242, 0.8), 0 0 20px rgba(19, 149, 14, 0.4);
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        section {
            position: relative;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary-accent) 0%, var(--green-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: text-glow 2s ease-in-out infinite;
        }

        h3 {
            color: var(--primary-accent);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        h4 {
            color: var(--green-accent);
            margin-bottom: 0.5rem;
        }

        /* Statistics Section */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: rgba(176, 109, 242, 0.1);
            border: 2px solid var(--primary-accent);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: counter-up 0.6s ease-out;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(19, 149, 14, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(176, 109, 242, 0.3);
            border-color: var(--green-accent);
        }

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

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-accent);
            margin: 1rem 0;
            animation: shimmer 2s ease-in-out infinite;
        }

        /* Infographic Section */
        .infographic {
            background: rgba(176, 109, 242, 0.1);
            border: 2px solid var(--primary-accent);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .infographic-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(19, 149, 14, 0.1);
            border: 1px solid var(--green-accent);
            border-radius: 10px;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .infographic-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(19, 149, 14, 0.4);
        }

        .infographic-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-accent);
            margin-bottom: 0.5rem;
        }

        .infographic-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Feature Cards */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background: rgba(176, 109, 242, 0.1);
            border: 1px solid var(--primary-accent);
            padding: 2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(19, 149, 14, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(176, 109, 242, 0.3);
            border-color: var(--green-accent);
        }

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

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Crypto Section */
        .crypto-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .crypto-card {
            background: linear-gradient(135deg, rgba(176, 109, 242, 0.2) 0%, rgba(19, 149, 14, 0.1) 100%);
            border: 2px solid var(--primary-accent);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .crypto-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(176, 109, 242, 0.4);
        }

        .crypto-symbol {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Crypto Ticker */
        .crypto-ticker {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 2rem;
            background: rgba(176, 109, 242, 0.08);
            border: 1px solid var(--primary-accent);
            border-radius: 10px;
        }

        .ticker-item {
            text-align: center;
            padding: 1rem;
            background: rgba(19, 149, 14, 0.1);
            border-radius: 8px;
            border-left: 3px solid var(--green-accent);
        }

        .ticker-symbol {
            font-weight: bold;
            color: var(--primary-accent);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .ticker-price {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .ticker-change {
            font-size: 0.9rem;
            color: var(--green-accent);
        }

        /* Chart Container */
        .chart-container {
            position: relative;
            height: 400px;
            margin: 2rem 0;
            padding: 2rem;
            background: rgba(176, 109, 242, 0.08);
            border: 1px solid var(--primary-accent);
            border-radius: 10px;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            border: 2px solid var(--primary-accent);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover {
            box-shadow: 0 0 30px rgba(176, 109, 242, 0.5);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: var(--text-primary);
            padding: 2rem 1rem 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        /* FAQ Section */
        .faq-item {
            background: rgba(176, 109, 242, 0.08);
            border-left: 4px solid var(--green-accent);
            padding: 1.5rem;
            margin: 1rem 0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(176, 109, 242, 0.15);
            transform: translateX(5px);
        }

        .faq-question {
            font-weight: bold;
            color: var(--primary-accent);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            display: none;
            margin-top: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: slideDown 0.3s ease;
        }

        /* Security Features */
        .security-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .security-item {
            background: rgba(19, 149, 14, 0.1);
            border: 2px solid var(--green-accent);
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .security-item:hover {
            box-shadow: 0 0 25px rgba(19, 149, 14, 0.5);
            transform: translateY(-5px);
        }

        /* Mirror Links */
        .mirror-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .mirror-link {
            background: rgba(176, 109, 242, 0.1);
            border: 2px solid var(--primary-accent);
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mirror-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(19, 149, 14, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .mirror-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(19, 149, 14, 0.5);
            border-color: var(--primary-accent);
        }

        .mirror-link:hover::before {
            left: 100%;
        }

        .link-text {
            font-family: 'Courier New', monospace;
            word-break: break-all;
            margin: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            background: rgba(0, 0, 0, 0.3);
            padding: 1rem;
            border-radius: 5px;
        }

        .copy-btn {
            background: var(--green-accent);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .copy-btn:hover {
            background: var(--primary-accent);
            box-shadow: 0 0 15px rgba(176, 109, 242, 0.5);
        }

        .copy-btn.copied {
            background: var(--primary-accent);
        }

        /* Step Cards */
        .auth-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .step-card {
            background: rgba(19, 149, 14, 0.1);
            border-left: 4px solid var(--green-accent);
            padding: 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateX(10px);
            box-shadow: 0 0 20px rgba(19, 149, 14, 0.4);
        }

        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-accent);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 15, 0.95);
            border-top: 1px solid rgba(176, 109, 242, 0.2);
            padding: 3rem 2rem;
            text-align: center;
            color: var(--text-secondary);
            margin-top: 5rem;
        }

        footer p {
            margin: 0.5rem 0;
        }

        .footer-links {
            margin: 1rem 0;
        }

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

        .footer-links a:hover {
            text-shadow: 0 0 10px rgba(176, 109, 242, 0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            nav ul {
                display: none;
            }

            section {
                padding: 3rem 1rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .chart-container {
                height: 300px;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        .highlight {
            color: var(--primary-accent);
            font-weight: bold;
        }

        .green-highlight {
            color: var(--green-accent);
            font-weight: bold;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(176, 109, 242, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary-accent);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .glow-text {
            text-shadow: 0 0 10px var(--primary-accent), 0 0 20px var(--primary-accent);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .img-container {
            text-align: center;
            margin: 2rem 0;
        }

        .img-container img {
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(176, 109, 242, 0.3);
            max-width: 100%;
        }

        /* Accordion */
        .accordion {
            background: rgba(176, 109, 242, 0.08);
            border: 2px solid var(--primary-accent);
            border-radius: 10px;
            overflow: hidden;
            margin: 1rem 0;
        }

        .accordion-header {
            padding: 1.5rem;
            background: rgba(176, 109, 242, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            color: var(--primary-accent);
            font-weight: bold;
        }

        .accordion-header:hover {
            background: rgba(176, 109, 242, 0.2);
        }

        .accordion-content {
            display: none;
            padding: 1.5rem;
            color: var(--text-secondary);
            background: rgba(0, 0, 0, 0.3);
        }

        .accordion.active .accordion-content {
            display: block;
        }

        .accordion-icon {
            transition: transform 0.3s ease;
        }

        .accordion.active .accordion-icon {
            transform: rotate(180deg);
        }

        /* Tabs */
        .tabs {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            border-bottom: 2px solid rgba(176, 109, 242, 0.3);
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 1rem 2rem;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .tab-button:hover {
            color: var(--primary-accent);
        }

        .tab-button.active {
            color: var(--primary-accent);
            border-bottom-color: var(--primary-accent);
        }

        .tab-content {
            display: none;
            padding: 2rem;
            background: rgba(176, 109, 242, 0.05);
            border-radius: 10px;
            animation: slideDown 0.3s ease;
        }

        .tab-content.active {
            display: block;
        }

        /* Divider */
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
            margin: 3rem 0;
            opacity: 0.5;
        }

        /* Callout Box */
        .callout-box {
            background: rgba(176, 109, 242, 0.15);
            border-left: 5px solid var(--primary-accent);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            animation: slideInUp 0.6s ease-out;
        }

        .callout-box.warning {
            border-left-color: var(--cyber-pink);
            background: rgba(255, 0, 110, 0.1);
        }

        .callout-box.success {
            border-left-color: var(--green-accent);
            background: rgba(19, 149, 14, 0.1);
        }

/* ===== TEXT LINKS STYLING ===== */
/* Стили для ссылок в тексте контента */

p a, 
li a, 
td a,
.faq-answer a,
.section-card a,
.container p a,
.container li a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

p a:hover, 
li a:hover, 
td a:hover,
.faq-answer a:hover,
.section-card a:hover,
.container p a:hover,
.container li a:hover {
    color: var(--primary-accent);
    border-bottom: 1px solid var(--primary-accent);
    text-shadow: 0 0 8px rgba(176, 109, 242, 0.5);
}

/* External link indicator */
a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.75em;
    opacity: 0.7;
}

/* Internal links - slightly different style */
a[href^="/"]::after {
    content: "";
}

a[href^="/"] {
    color: var(--primary-accent);
}

a[href^="/"]:hover {
    color: var(--green-accent);
    border-bottom-color: var(--green-accent);
    text-shadow: 0 0 8px rgba(19, 149, 14, 0.5);
}

/* Links in tables */
table a {
    color: var(--neon-cyan) !important;
    text-decoration: none !important;
}

table a:hover {
    color: var(--primary-accent) !important;
}

/* ===== FORCE LINK STYLES (override browser defaults) ===== */
a {
    color: var(--neon-cyan) !important;
    text-decoration: none !important;
}

a:visited {
    color: var(--neon-cyan) !important;
}

a:hover {
    color: var(--primary-accent) !important;
    text-shadow: 0 0 8px rgba(176, 109, 242, 0.6);
}

/* Internal links override */
a[href^="/"],
a[href^="/"]:visited {
    color: var(--primary-accent) !important;
}

a[href^="/"]:hover {
    color: var(--green-accent) !important;
    text-shadow: 0 0 8px rgba(19, 149, 14, 0.6);
}

/* Navigation buttons - keep their styles */
nav a,
.footer-links a,
a[style*="background"],
a[style*="padding"] {
    color: inherit !important;
    text-shadow: none !important;
}

nav a:hover,
.footer-links a:hover {
    text-shadow: none !important;
}
