:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --primary: #ff003c;
    --primary-glow: rgba(255, 0, 60, 0.6);
    --primary-dark: #b3002a;
    --card-bg: rgba(20, 20, 20, 0.7);
    --card-border: rgba(255, 0, 60, 0.2);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
    cursor: none; /* Hide default cursor */
}

body.menu-open {
    overflow: hidden;
}

/* Background Glowing Orbs */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    animation: float 20s infinite alternate ease-in-out;
}

body::before {
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    top: -10%;
    left: -10%;
}

body::after {
    width: 300px;
    height: 300px;
    background: rgba(150, 0, 30, 0.4);
    bottom: -10%;
    right: -5%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Custom Cursor */
/* Custom Cursor - Pixel Vibe Style */
#cursor {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--primary-glow);
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    box-shadow: 0 0 15px var(--primary-glow);
}

@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    #cursor, #cursor-ring {
        display: none;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1800px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: 'Road Rage', cursive;
    display: flex;
    flex-direction: column;
    line-height: 0.5;
    font-style: italic;
    transform: skewX(-5deg);
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: skewX(-5deg) scale(1.05);
}

.logo .izu {
    font-size: 2.4rem;
    color: white;
    letter-spacing: 2px;
}

.logo .x {
    font-size: 1.1rem;
    color: white;
    margin-left: 55px;
    opacity: 0.9;
}

.logo .optimize {
    font-size: 1.9rem;
    color: var(--primary);
    margin-left: 75px;
    text-shadow: 0 0 15px var(--primary-glow), 2px 2px 0px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.footer-logo {
    font-family: 'Road Rage', cursive;
    display: flex;
    flex-direction: column;
    line-height: 0.5;
    font-style: italic;
    transform: skewX(-5deg);
    margin-bottom: 30px;
}

.footer-logo .izu {
    font-size: 2rem;
    color: white;
}

.footer-logo .x {
    font-size: 0.9rem;
    color: white;
    margin-left: 45px;
}

.footer-logo .optimize {
    font-size: 1.6rem;
    color: var(--primary);
    margin-left: 60px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    cursor: none;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--primary);
    height: 4px;
    box-shadow: 0 0 15px var(--primary-glow);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--primary);
    height: 4px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.mobile-nav-footer {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        background: rgba(255, 255, 255, 0.05);
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 3, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 12%;
        transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, rgba(255, 0, 60, 0.15), transparent);
        pointer-events: none;
        z-index: -1;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links li:nth-child(8) { transition-delay: 0.45s; }

    .nav-links a {
        font-size: 2.8rem;
        font-family: 'Road Rage', cursive;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
    }

    .nav-links a:hover {
        color: var(--primary);
        transform: translateX(15px);
        text-shadow: 0 0 20px var(--primary-glow);
    }

    .nav-links a::after {
        display: none; /* Remove desktop underline */
    }

    /* Small decorative element for active/hover */
    .nav-links li:hover::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 2px;
        background: var(--primary);
        box-shadow: 0 0 10px var(--primary-glow);
    }

    .mobile-nav-footer {
        display: block;
        margin-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease 0.6s;
    }

    .nav-links.active .mobile-nav-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-footer p {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        margin-bottom: 15px;
    }

    .mobile-socials {
        display: flex;
        gap: 20px;
    }

    .mobile-socials a {
        font-family: var(--font-main) !important;
        font-size: 0.9rem !important;
        color: white !important;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0 !important;
    }

    .mobile-socials a:hover {
        color: var(--primary) !important;
        transform: none !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
}

.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 cyan;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(10px, 9999px, 44px, 0); }
  20% { clip: rect(61px, 9999px, 14px, 0); }
  40% { clip: rect(33px, 9999px, 88px, 0); }
  60% { clip: rect(78px, 9999px, 2px, 0); }
  80% { clip: rect(12px, 9999px, 59px, 0); }
  100% { clip: rect(89px, 9999px, 34px, 0); }
}
@keyframes glitch-anim2 {
  0% { clip: rect(89px, 9999px, 34px, 0); }
  20% { clip: rect(12px, 9999px, 59px, 0); }
  40% { clip: rect(78px, 9999px, 2px, 0); }
  60% { clip: rect(33px, 9999px, 88px, 0); }
  80% { clip: rect(61px, 9999px, 14px, 0); }
  100% { clip: rect(10px, 9999px, 44px, 0); }
}

.device-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.device-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 0, 60, 0.4);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    cursor: none;
}

.device-badge:hover {
    border-color: var(--primary);
    background: rgba(255, 0, 60, 0.15);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.device-badge svg {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-desc strong {
    color: white;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary-glow), 0 0 10px var(--primary);
}

/* Sections */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.2);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 0, 60, 0.5));
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1500px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 0, 60, 0.3);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 15px var(--primary-glow);
}

.pricing-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.pricing-card.popular h3, .pricing-card.premium h3, .pricing-card.streamer h3 {
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 5px var(--primary-glow);
}

.buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: transparent;
    color: white;
    border: 2px solid var(--primary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    cursor: none;
}

.pricing-card:hover .buy-btn, .pricing-card.popular .buy-btn {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.buy-btn:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    cursor: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 60, 0.4);
    box-shadow: 0 5px 20px rgba(255, 0, 60, 0.1);
}

.service-card.aim-highlight {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.corner-brackets {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    pointer-events: none;
}

.corner-brackets::before, .corner-brackets::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
    opacity: 0.5;
}

/* Top Left */
.corner-brackets::before {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
}

/* Bottom Right */
.corner-brackets::after {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
}

.service-card.aim-highlight:hover .corner-brackets::before {
    top: 5px;
    left: 5px;
    opacity: 1;
}

.service-card.aim-highlight:hover .corner-brackets::after {
    bottom: 5px;
    right: 5px;
    opacity: 1;
}

.service-card.aim-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 1px solid var(--primary);
    animation: aim-pulse 1.5s infinite;
    pointer-events: none;
}

@keyframes aim-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 0; }
}

.service-card.aim-highlight .service-icon svg {
    animation: rotate-aim 4s infinite linear;
}

@keyframes rotate-aim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card .service-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 0, 60, 0.3));
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
/* Advanced Footer */
.advanced-footer {
    background: #000;
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 0, 60, 0.2);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary-glow);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-logo {
    font-family: 'Road Rage', cursive;
    display: flex;
    flex-direction: column;
    line-height: 0.5;
    font-style: italic;
    margin-bottom: 2rem;
}

.footer-logo .izu {
    font-size: 2.4rem;
    color: white;
}

.footer-logo .x {
    font-size: 1.1rem;
    color: white;
    margin-left: 55px;
}

.footer-logo .optimize {
    font-size: 1.9rem;
    color: var(--primary);
    margin-left: 75px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.newsletter-col p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    flex-grow: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
}

.payment-methods span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* SL Badge Style */
.sl-badge {
    margin-top: 3rem;
}

.sl-badge-content {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 0, 60, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.sl-badge-content span {
    color: var(--primary);
    font-weight: 800;
}

/* Scroll Animations */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1.5rem;
        width: 95%;
    }

    .logo .izu { font-size: 1.8rem; }
    .logo .x { font-size: 0.9rem; margin-left: 45px; }
    .logo .optimize { font-size: 1.5rem; margin-left: 60px; }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .device-badges {
        gap: 0.5rem;
    }

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

    .pricing-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

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

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

    .sl-badge-content {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    /* Detail Pages Responsiveness */
    .detail-card {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }
    .detail-title {
        font-size: 2rem !important;
    }
    .detail-price, .price-tag {
        font-size: 1.8rem !important;
    }
    .detail-icon {
        font-size: 3.5rem !important;
    }
    .detail-desc {
        font-size: 1rem !important;
    }

    /* Global Modal Responsiveness */
    .modal-content, .purchase-modal-content {
        width: 95% !important;
        padding: 30px 20px !important;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .legal-card {
        padding: 2rem 1rem !important;
    }

    .legal-card h1 {
        font-size: 2rem !important;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

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

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.1);
}

.info-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.info-text p {
    color: var(--text-muted);
}

.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    outline: none;
}

.contact-form .cta-btn {
    width: 100%;
    border: none;
    cursor: none;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}
/* Login Page Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.login-card {
    width: 100%;
    max-width: 450px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 60, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: card-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header .logo {
    margin: 0 auto 1.5rem;
    display: inline-flex;
    transform: scale(0.8) skewX(-5deg);
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 0, 60, 0.05);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.forgot-link:hover {
    opacity: 0.8;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--primary-glow);
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.back-home {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-home:hover {
    color: white;
}

.login-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4d4d;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    display: none;
    text-align: center;
}
/* Success Modal Styles */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

.success-modal {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--primary);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.3);
    transform: scale(0.8);
    opacity: 0;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    to { transform: scale(1); opacity: 1; }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 25px var(--primary-glow);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.success-modal p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.success-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

/* Purchase Modal Styles */
.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
}

.purchase-modal.show {
    display: flex;
}

.purchase-modal-content {
    background: #0a0a0a;
    border: 1px solid var(--primary);
    padding: 40px;
    border-radius: 24px;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.15);
}

.purchase-modal-content h2 {
    color: var(--primary);
    font-family: 'Road Rage', cursive;
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.purchase-modal-content .item-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.purchase-modal-content .item-info .item-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.purchase-modal-content .item-info .item-price {
    color: var(--primary);
    font-weight: 600;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-method-card strong {
    color: var(--primary);
    display: block;
    font-size: 1rem;
}

.payment-method-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slip-upload-area {
    margin-bottom: 30px;
}

.slip-upload-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slip-drop-zone {
    border: 2px dashed rgba(255, 0, 60, 0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 0, 60, 0.02);
}

.slip-drop-zone:hover {
    background: rgba(255, 0, 60, 0.05);
    border-color: var(--primary);
}

.slip-drop-zone span.icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.slip-drop-zone p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slip-drop-zone.has-file {
    border-color: #00ff55;
    background: rgba(0, 255, 85, 0.05);
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

/* Scrollbar for modal */
.purchase-modal-content::-webkit-scrollbar {
    width: 6px;
}
.purchase-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.purchase-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Advanced Download Styles */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 5%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

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

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 25px;
    padding-left: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-container input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.featured-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.app-card-advanced {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.app-card-advanced:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.1);
}

.app-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.app-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.app-info-advanced {
    flex-grow: 1;
}

.app-name-advanced {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.app-meta-advanced {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.app-meta-advanced span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    color: #00ff55;
    font-weight: 700;
}

.app-desc-short {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.download-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dl-count {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats-bar {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-value {
        font-size: 1.5rem;
    }
}
