
        :root {
            --primary-purple: #9c27b0;
            --accent-green: #00ff9d;
            --dark-bg: #0f0a1a;
            --card-bg: rgba(20, 12, 36, 0.85);
            --text-light: #e0e0ff;
            --text-muted: #b0b0ff;
            --glow-purple: 0 0 20px rgba(156, 39, 176, 0.6);
            --glow-green: 0 0 20px rgba(0, 255, 157, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background: #0a0615;
            color: var(--text-light);
            min-height: 100vh;
            background-image: radial-gradient(circle at top, #1a0f30, #0a0615);
        }

        /* Hero Banner */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background: linear-gradient(rgba(10, 6, 21, 0.7), rgba(10, 6, 21, 0.9)),
                        url('https://hunty-zombie-codes.com/hunty-zombie-codes.jpg?transform=Banner+Webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, transparent 30%, #0a0615 80%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #9c27b0, #da59ff, #00ff9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: var(--glow-purple);
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.6rem;
            color: var(--text-muted);
            text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
        }
        .hero-img img {
            height: 50px; /* Adjust size as needed */
            filter: drop-shadow(0 0 10px rgba(156, 39, 176, 0.7));
            transition: transform 0.3s ease;
            border-radius: 10px;
            
        }

        /* Header - Updated with Logo Image */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 12px 20px;
            box-shadow: 0 4px 20px rgba(156, 39, 176, 0.3);
        }

        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 50px; /* Adjust size as needed */
            filter: drop-shadow(0 0 10px rgba(156, 39, 176, 0.7));
            transition: transform 0.3s ease;
            border-radius: 10px;
        }

        .logo img:hover {
            transform: scale(1.1);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background: rgba(156, 39, 176, 0.4);
            box-shadow: var(--glow-purple);
            color: #00ff9d;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        /* Mobile Flyout Menu - Full Length */
        @media (max-width: 868px) {
            .menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, rgba(15, 10, 26, 0.98), rgba(30, 15, 60, 0.95));
                backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
                gap: 40px;
                z-index: 1000;
            }

            nav ul.active {
                right: 0;
            }

            nav ul li a {
                font-size: 2rem;
                padding: 15px 30px;
                display: block;
                width: 80%;
                text-align: center;
                border-radius: 15px;
            }

            nav ul li a:hover {
                background: rgba(0, 255, 157, 0.2);
                color: #00ff9d;
                box-shadow: var(--glow-green);
            }

            /* Close icon when open */
            .menu-toggle.active i::before {
                content: "\f00d"; /* fa-times */
            }
        }

        /* Rest of styles remain the same */
        main {
            margin-top: 80px;
            padding: 40px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-text {
            text-align: center;
            margin-bottom: 50px;
        }

        .intro-text h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #da59ff;
        }

        .intro-text p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
        }

        .codes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .code-box {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid rgba(156, 39, 176, 0.3);
            box-shadow: var(--glow-purple);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .code-box:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4);
        }

        .new-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(45deg, #ff006e, #ff8c00);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
        }

        .code {
            font-size: 1.6rem;
            font-weight: bold;
            color: #00ff9d;
            margin-bottom: 10px;
            text-shadow: var(--glow-green);
            letter-spacing: 2px;
        }

        .reward {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .copy-btn {
            width: 100%;
            background: linear-gradient(90deg, #9c27b0, #da59ff);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--glow-purple);
        }

        .copy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(156, 39, 176, 0.7);
        }

        .copied {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 255, 157, 0.9);
            color: #000;
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: bold;
            font-size: 1.2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            box-shadow: var(--glow-green);
        }

        .copied.show {
            opacity: 1;
        }

        .author-profile, footer {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px;
            margin: 50px auto;
            max-width: 800px;
            text-align: center;
            border: 1px solid rgba(156, 39, 176, 0.3);
        }

        .social-links a, .footer-social a {
            color: var(--text-light);
            font-size: 1.8rem;
            margin: 0 15px;
            transition: all 0.3s;
        }

        .social-links a:hover, .footer-social a:hover {
            color: #00ff9d;
            text-shadow: var(--glow-green);
        }



/* New How to Redeem Section */
        .how-to-redeem {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px;
            margin: 60px auto;
            max-width: 1000px;
            border: 1px solid rgba(156, 39, 176, 0.3);
            box-shadow: var(--glow-purple);
        }

        .how-to-redeem h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #da59ff;
            text-shadow: var(--glow-purple);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .step {
            background: rgba(30, 20, 50, 0.6);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(0, 255, 157, 0.2);
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateY(-8px);
            box-shadow: var(--glow-green);
            border-color: #00ff9d;
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #9c27b0, #da59ff);
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            line-height: 50px;
            border-radius: 50%;
            margin-bottom: 15px;
            box-shadow: var(--glow-purple);
        }

        .step h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #00ff9d;
        }

        .step p {
            color: var(--text-muted);
            font-size: 1rem;
        }


        footer {
            margin-top: 80px;
        }

        .copyright {
            margin-top: 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
/* Expired Codes Section - Inline Style */
.expired-codes {
    padding: 0;
    margin: 40px 2px;
    max-width: 1200px;
    position: relative;
}

.expired-codes h2 {
    text-align: left;
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
}

.expired-codes-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: left;
    margin-top: 20px;
}

.expired-code-inline {
    display: inline-block;
    background: rgba(255, 107, 107, 0.15);
    color: #ff9e9e;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px dashed #ff6b6b;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.expired-code-inline:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255, 107, 107, 0.6);
    border-style: solid;
}

/* Global Copied Feedback */
.copied-expired-global {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 107, 0.95);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
    z-index: 10;
}

.copied-expired-global.show {
    opacity: 1;
}

/* FAQ Section - Green Neon Theme */
.faq-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    margin: 60px auto;
    max-width: 1000px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    box-shadow: var(--glow-green);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #00ff9d;
    text-shadow: var(--glow-green);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(0, 50, 30, 0.6); /* Dark green base */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 157, 0.4);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ff9d;
    box-shadow: var(--glow-green);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(0, 200, 100, 0.1));
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.3), rgba(0, 200, 100, 0.2));
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #e0ffe0;
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff9d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 40, 20, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Increased for longer answers */
    padding: 20px;
}

.faq-answer p {
    color: #b0ffcc;
    font-size: 1.1rem;
    line-height: 1.6;
}