:root {
    --primary: #00f0ff;
    --accent: #ff00ff;
    --bg: #0a0a0f;
    --card: rgba(15, 15, 25, .8);
    --text: #fff;
    --muted: rgba(255, 255, 255, .5);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

.bg-animation {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 240, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, .03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite
}

@keyframes gridMove {
    to {
        transform: translate(50px, 50px)
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
    animation: orbFloat 15s ease-in-out infinite
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -200px;
    left: -100px;
    animation-delay: -5s
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #7b2dff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s
}

@keyframes orbFloat {
    50% {
        transform: translateY(-30px) scale(1.1)
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, .8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    min-width: 180px
}

.logo-icon {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {
    50% {
        opacity: .8;
        transform: scale(1.1)
    }
}

.logo-text {
    background: linear-gradient(135deg, #00f0ff, #7b2dff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px
}

.nav {
    display: flex;
    gap: 40px
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

.nav-link {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: .3s
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00f0ff, #ff00ff);
    transition: .3s
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.header-actions {
    display: flex;
    gap: 12px;
    min-width: 180px;
    justify-content: flex-end
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: .3s
}

.social-btn svg {
    width: 18px;
    height: 18px
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, .4)
}

.social-btn.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: #fff;
    box-shadow: 0 0 20px rgba(88, 101, 242, .4)
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
    color: #fff;
    box-shadow: 0 0 20px rgba(225, 48, 108, .4)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    text-align: center
}

.hero-content {
    max-width: 700px;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 240, 255, .1);
    border: 1px solid rgba(0, 240, 255, .3);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: .8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite
}

.hero-badge svg {
    flex-shrink: 0;
}


@keyframes badgePulse {
    50% {
        box-shadow: 0 0 20px rgba(0, 240, 255, .4)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase
}

.title-line {
    display: block
}

.gradient-text {
    background: linear-gradient(135deg, #00f0ff, #7b2dff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    background-size: 200% 200%
}

@keyframes gradientShift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: .3s
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: .3s
}

.btn-primary {
    background: linear-gradient(135deg, #00f0ff, #7b2dff, #ff00ff);
    color: var(--bg);
    box-shadow: 0 0 30px rgba(0, 240, 255, .4)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, .4)
}

.btn-primary:hover svg {
    transform: translateX(5px)
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(0, 240, 255, .3)
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, .1);
    border-color: var(--primary);
    transform: translateY(-3px)
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center
}

.stat {
    text-align: center
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f0ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

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

.cheats-section,
.features-section {
    padding: 100px 0
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 0, 255, .1);
    border: 1px solid rgba(255, 0, 255, .3);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: .75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px
}

.section-badge svg {
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px
}

.section-description {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto
}

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

.cheat-card {
    position: relative;
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s
}

.cheat-card:hover {
    transform: none;
    border-color: rgba(0, 240, 255, .3);
    box-shadow: 0 0 40px rgba(0, 240, 255, .4)
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, .4) 0%, transparent 50%);
    opacity: 0;
    transition: .4s;
    pointer-events: none
}

.cheat-card:hover .card-glow {
    opacity: .5
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
    transition: .4s
}

.cheat-card:hover .card-image img {
    transform: scale(1.1)
}

.card-overlay {
    position: absolute;
    top: 15px;
    right: 15px
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px)
}

.status.online {
    background: rgba(0, 255, 136, .2);
    color: #0f8;
    border: 1px solid rgba(0, 255, 136, .3)
}

.status.updating {
    background: rgba(255, 170, 0, .2);
    color: #fa0;
    border: 1px solid rgba(255, 170, 0, .3)
}

.card-content {
    padding: 25px
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase
}

.card-description {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    margin-bottom: 15px
}

.card-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.feature {
    padding: 6px 12px;
    background: rgba(0, 240, 255, .1);
    border-radius: 6px;
    font-size: .8rem;
    color: var(--primary)
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.version {
    font-family: var(--font-display);
    font-size: .8rem;
    color: var(--muted);
    text-transform: uppercase
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00f0ff, #7b2dff, #ff00ff);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    color: var(--bg);
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s
}

.download-btn svg {
    width: 16px;
    height: 16px
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, .4)
}

.download-btn.disabled {
    background: rgba(255, 255, 255, .1);
    color: var(--muted);
    cursor: not-allowed;
    pointer-events: none
}

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

.feature-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: .3s
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, .3);
    box-shadow: 0 0 30px rgba(0, 240, 255, .1)
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase
}

.feature-card p {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem
}

.cta-section {
    padding: 100px 0
}

.cta-content {
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, .4) 0%, transparent 60%);
    opacity: .3;
    pointer-events: none
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative
}

.cta-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative
}

.cta-content .btn {
    position: relative
}

.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700
}

.footer-text {
    color: var(--muted);
    font-size: .9rem
}

.footer-links {
    display: flex;
    gap: 30px
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .9rem;
    transition: .3s
}

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

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.modal.active {
    opacity: 1;
    visibility: visible
}

.modal-content {
    background: var(--card);
    border: 1px solid rgba(0, 240, 255, .3);
    border-radius: 24px;
    padding: 50px;
    max-width: 450px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    transform: scale(.9);
    transition: .3s
}

.modal.active .modal-content {
    transform: scale(1)
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: .3s
}

.modal-close:hover {
    background: rgba(255, 0, 0, .3);
    color: #fff
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

@keyframes bounce {
    50% {
        transform: translateY(-10px)
    }
}


.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase
}

.modal-content p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 25px
}

.modal-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 240, 255, .1);
    border-radius: 10px;
    font-size: .9rem
}

.modal-note code {
    font-family: var(--font-display);
    color: var(--primary);
    font-weight: 600
}

/* Modal Steps */
.modal-step {
    display: none
}

.modal-step.active {
    display: block
}

/* Email Input Form */
.email-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0 15px
}

.email-input-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease
}

.email-input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2)
}

.email-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4)
}

.email-input-group button {
    width: 100%;
    padding: 16px 30px;
    justify-content: center
}

.email-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px
}

.success-message {
    font-size: 1.1rem;
    color: #4ade80;
    margin-bottom: 20px
}

@media(max-width:768px) {
    .nav {
        display: none
    }

    .hero-stats {
        gap: 30px
    }

    .stat-value {
        font-size: 2rem
    }

    .cheats-grid {
        grid-template-columns: 1fr
    }

    .footer-content {
        flex-direction: column;
        text-align: center
    }

    .cta-content {
        padding: 50px 25px
    }
}

@media(max-width:480px) {
    .hero-buttons {
        flex-direction: column
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center
    }
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%)
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1)
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text)
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

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

.faq-item.active .faq-answer {
    max-height: 200px
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7
}

.faq-answer code {
    background: rgba(0, 240, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--primary);
    font-family: var(--font-display)
}

/* Animated Logo */
.logo-img {
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.3))
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6))
    }
}

/* Glowing text animation */
.hero-title .title-line:first-child {
    animation: textGlow 3s ease-in-out infinite
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1)
    }

    50% {
        text-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.2)
    }
}

/* Button shine effect */
.btn-primary {
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite
}

@keyframes btnShine {
    0% {
        left: -100%
    }

    50%,
    100% {
        left: 100%
    }
}

/* Loading Screen */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease
}

.loader.hidden {
    opacity: 0;
    visibility: hidden
}

.loader-content {
    text-align: center
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    animation: loaderPulse 1.5s ease-in-out infinite
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--primary))
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px var(--primary))
    }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-primary, linear-gradient(135deg, #00f0ff, #ff00ff));
    border-radius: 2px;
    animation: loaderFill 2s ease-out forwards
}

@keyframes loaderFill {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 4px;
    animation: loaderBlink 1s ease-in-out infinite
}

@keyframes loaderBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9998;
    transition: width 0.1s ease
}

/* Mouse Trail Canvas */
#mouseTrail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

@media (max-width: 768px) {
    .hamburger {
        display: flex
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease
    }

    .nav.active {
        opacity: 1;
        visibility: visible
    }

    .nav-link {
        font-size: 1.5rem
    }

    .header-actions {
        display: none
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0
}

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

.testimonial-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1)
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(123, 45, 255, 0.2));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary)
}

.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 3px
}

.testimonial-game {
    font-size: 0.8rem;
    color: var(--primary)
}

.testimonial-stars {
    margin-left: auto;
    font-size: 0.9rem
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.7
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--card);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000
}

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

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary)
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--text);
    transition: color 0.3s ease
}

.back-to-top:hover svg {
    color: var(--bg)
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.95);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease
}

.cookie-banner.visible {
    transform: translateY(0)
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem
}

.cookie-btn {
    padding: 12px 30px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg);
    cursor: pointer;
    transition: all 0.3s ease
}

.cookie-btn:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: scale(1.05)
}

/* Card Tilt Effect */
.cheat-card {
    transform-style: preserve-3d;
    perspective: 1000px
}

.cheat-card.tilt {
    transition: none
}

/* Last Updated Badge */
.last-updated {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 5px
}

/* Game Page Styles */
.game-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    text-align: center
}

.game-hero-content {
    max-width: 800px;
    margin: 0 auto
}

.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 25px
}

.game-badge svg {
    flex-shrink: 0;
}

.game-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase
}

.game-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px
}

.game-stat {
    text-align: center
}

.game-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary)
}

.game-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5)
}

.game-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px
}

.last-update {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4)
}

/* Game Features Section */
.game-features {
    padding: 100px 0
}

/* Install Section */
.install-section {
    padding: 100px 0;
    background: rgba(0, 240, 255, 0.02)
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px
}

.install-step {
    text-align: center;
    padding: 40px 25px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease
}

.install-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3)
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg)
}

.install-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px
}

.install-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6)
}

.install-step code {
    background: rgba(0, 240, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--primary);
    font-family: var(--font-display)
}

/* Game CTA Section */
.game-cta {
    padding: 100px 0
}

.game-cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.game-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px
}

.game-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px
}

@media (max-width: 768px) {
    .game-stats {
        flex-wrap: wrap;
        gap: 30px
    }

    .game-hero {
        padding: 120px 0 60px
    }
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: #050508
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px
}

::selection {
    background: var(--primary);
    color: var(--bg)
}

/* ===== TERMS OF SERVICE PAGE ===== */
.tos-section {
    padding: 60px 0 100px;
}

.tos-content {
    max-width: 800px;
    margin: 0 auto;
}

.tos-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
}

.tos-block h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.tos-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.tos-block ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.tos-block li {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0 8px 25px;
    position: relative;
}

.tos-block li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tos-footer {
    text-align: center;
    padding-top: 40px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: #0a0a0f;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 10px;
}

.success-box {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-box h3 {
    font-family: var(--font-display);
    color: #00ff88;
    margin-bottom: 10px;
}

.success-box p {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Info Cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

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

.contact-link:hover {
    text-decoration: underline;
}

.contact-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.contact-note {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-top: 30px;
}

.contact-note p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.contact-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-note li {
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    font-size: 0.9rem;
}

.contact-note a {
    color: var(--primary);
}

/* Disabled button style */
.download-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {

    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Navigation - hidden by default */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Hide header actions on mobile */
    .header-actions {
        display: none;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem) !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Cards grid */
    .cheats-grid {
        grid-template-columns: 1fr;
    }

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

    /* Hide canvas elements on mobile to prevent scroll issues */
    #particles,
    #mouseTrail {
        display: none !important;
    }

    /* Fix any overflow issues */
    html,
    body {
        overflow-x: hidden;
    }

    .bg-animation {
        display: none;
    }
}

/* Canvas positioning */
#particles,
#mouseTrail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Email note resend link */
.email-note a {
    color: #fff;
    text-decoration: underline;
}

.email-note a:hover {
    color: var(--primary);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    background: rgba(15, 15, 25, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.toast.toast-error {
    border-color: rgba(255, 70, 70, 0.5);
    box-shadow: 0 0 30px rgba(255, 70, 70, 0.2);
}

.toast.toast-success {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast-error .toast-icon {
    color: #ff4646;
}

.toast-success .toast-icon {
    color: #00ff88;
}

.toast-message {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    transition: 0.2s;
}

.toast-close:hover {
    color: #fff;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.hiding {
    animation: toastSlideOut 0.3s ease forwards;
}
body.modal-open { overflow: hidden !important; }
.offer-card { height: auto !important; }
.offer-card img { flex-shrink: 0 !important; }
.offer-info { overflow: hidden !important; }
.offer-name, .offer-desc { word-break: break-word !important; white-space: normal !important; }
