@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --primary: #00ff41;
    --secondary: #ff0051;
    --accent: #00d9ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(15, 15, 15, 0.8);
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border: rgba(0, 255, 65, 0.2);
    --shadow: rgba(0, 255, 65, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

body.custom-cursor {
    cursor: none !important;
}

body.custom-cursor * {
    cursor: none !important;
}

body.loaded {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Effects */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 255, 65, 0.015) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.2;
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.12) 0%, rgba(0, 255, 65, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
    left: 0;
    top: 0;
    mix-blend-mode: lighten;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease;
}

.cursor-glow.hover {
    width: 400px;
    height: 400px;
}

.cursor-glow.on-primary {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
    mix-blend-mode: overlay;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    left: 0;
    top: 0;
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
    will-change: transform;
}

.cursor-dot.hover {
    width: 30px;
    height: 30px;
    background: rgba(0, 255, 65, 0.15);
    border: 2px solid var(--primary);
}

.cursor-dot.on-primary {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

@media (pointer: coarse), (hover: none) {
    body.custom-cursor, body.custom-cursor * {
        cursor: auto !important;
    }
    .cursor-glow, .cursor-dot {
        display: none !important;
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

/* Navigation - Improved */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 30px var(--shadow);
    background: rgba(10, 10, 10, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 900;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
    text-shadow: 0 0 15px var(--primary);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-domain {
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-login {
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--text-primary);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-login:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 65, 0.4);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

/* Hero Section - Compact & Professional */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(0, 255, 65, 0.06) 0%, transparent 60%);
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--primary) 1px, transparent 1px), linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    animation: grid-move 20s linear infinite;
    transform: perspective(500px) rotateX(60deg);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 255, 65, 0.08);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.hero-title-accent {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* News Ticker */
.news-ticker {
    width: 100%;
    background: rgba(0, 255, 65, 0.05);
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.ticker-content {
    display: flex;
    animation: scroll-ticker 40s linear infinite;
    will-change: transform;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 3rem;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    border-right: 2px solid rgba(0, 255, 65, 0.2);
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-item i {
    color: var(--primary);
    font-size: 1rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.ticker-item:nth-child(1) i { animation-delay: 0s; }
.ticker-item:nth-child(2) i { animation-delay: 0.3s; }
.ticker-item:nth-child(3) i { animation-delay: 0.6s; }
.ticker-item:nth-child(4) i { animation-delay: 0.9s; }
.ticker-item:nth-child(5) i { animation-delay: 1.2s; }
.ticker-item:nth-child(6) i { animation-delay: 1.5s; }

@keyframes pulse-icon {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.ticker-item span {
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.hero-trust {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: rgba(0, 255, 65, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.15);
}

.stat-icon-mini {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: float-indicator 2s ease-in-out infinite;
}

@keyframes float-indicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-scroll-indicator i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 65, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 8rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.tab-btn:hover::before, .tab-btn.active::before {
    left: 0;
}

.tab-btn:hover, .tab-btn.active {
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 65, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px var(--shadow);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 217, 255, 0.1));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
}

.card-badge.premium {
    background: var(--primary);
    color: var(--bg-dark);
}

.card-badge.free {
    background: var(--accent);
    color: var(--bg-dark);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.quick-view {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.quick-view:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary);
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.card-category {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-version {
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-features span {
    font-size: 0.75rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
}

.free-tag {
    font-size: 1.2rem;
}

.card-btn {
    padding: 0.7rem 1.2rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.card-btn:hover::before {
    left: 0;
}

.card-btn:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    transform: translateX(3px);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(3px);
}

.load-more {
    text-align: center;
}

.btn-load-more {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 65, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 50px var(--shadow);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.pricing-header p {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.pricing-features li.disabled {
    color: var(--text-secondary);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-secondary);
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.pricing-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.pricing-btn.primary:hover {
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.5);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 217, 255, 0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title-main { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 968px) {
    .nav-menu { gap: 1.5rem; font-size: 0.9rem; }
    .nav-actions { gap: 0.8rem; }
    .hero-title-main { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats { gap: 2.5rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-menu { display: none; }
    .nav-actions { gap: 0.5rem; }
    .nav-login { font-size: 0.85rem; padding: 0.5rem 1rem; }
    .nav-cta { font-size: 0.85rem; padding: 0.6rem 1.2rem; }
    .hero { padding: 120px 0 50px; min-height: 80vh; }
    .hero-title-main { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-mini { width: 100%; }
    .section-title { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2.5rem; }
    .category-tabs { gap: 0.5rem; }
    .tab-btn { padding: 0.6rem 1rem; font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-title-main { font-size: 2rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.5rem 1rem; }
    .btn-primary, .btn-secondary { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .btn-large { padding: 1rem 2rem; font-size: 0.95rem; }
    .stat-value { font-size: 2rem; }
    .stat-number { font-size: 2.5rem; }
}

/* Professional animations only */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px var(--primary); }
    50% { box-shadow: 0 0 25px var(--primary); }
}

/* Ripple effect - professional */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.5s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* Smooth transitions for all interactive elements */
button, a, .product-card, .feature-card, .pricing-card {
    will-change: transform;
}

/* Logo */
.logo-text {
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    text-shadow: 0 0 15px var(--primary);
}

/* Removed goofy badge animations */

/* Stat number subtle glow */
.stat-number {
    text-shadow: 0 0 20px var(--primary);
}

/* Pricing badge - removed goofy animation */

/* Footer social icons - removed goofy animations */

/* Smooth scroll snap for sections */
@media (min-width: 1024px) {
    section {
        scroll-margin-top: 80px;
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* GPU acceleration for animated elements */
.cursor-glow, .cursor-dot, .product-card, .feature-card, .pricing-card,
.btn-primary, .btn-secondary, .card-btn, .nav-cta {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cursor-glow, .cursor-dot {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* Loading state */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Enhanced hover states */
.card-features span {
    transition: all 0.3s ease;
}

.product-card:hover .card-features span {
    transform: translateX(5px);
}

.pricing-features li {
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    transform: translateX(5px);
}

/* Section title animations */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--primary);
}

.section-header:hover .section-title::after {
    width: 100%;
}

/* Card content animations */
.card-content h3 {
    transition: all 0.3s ease;
}

.product-card:hover .card-content h3 {
    color: var(--primary);
    transform: translateX(5px);
}

/* Smooth icon rotations */
.faq-question i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced button states */
button:active {
    transform: scale(0.95);
}

/* Professional gradient text */
.glitch-main {
    background-size: 200% 200%;
}

/* Status indicators - subtle pulse only */
.status-indicator, .badge-dot, .status-dot {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth category transition */
.product-card {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid background - simple animation */
.grid-bg {
    will-change: transform;
    animation: grid-move 20s linear infinite;
}

/* Optimized scanline */
.scanline {
    will-change: transform;
}

/* Button icon animations */
.btn-primary i, .btn-secondary i, .card-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover i, .btn-secondary:hover i {
    transform: translateX(5px);
}

/* Price value animation */
.price-value {
    transition: all 0.3s ease;
}

.pricing-card:hover .price-value {
    transform: scale(1.1);
    text-shadow: 0 0 30px var(--primary);
}

/* Ultra-smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Optimize rendering */
.container {
    contain: layout style;
}

/* Lazy load optimization */
img, video {
    content-visibility: auto;
}

/* Better text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

/* Smooth opacity transitions */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Card hover effects - professional only */

/* Removed goofy border animations */

/* Professional button hover only */

/* Smooth transitions for all states */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimize animations */
@media (prefers-reduced-motion: no-preference) {
    .hero-content > * {
        animation-fill-mode: both;
    }
}

/* Better focus states */
button:focus-visible, a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    box-shadow: 0 0 20px var(--primary);
}

/* Smooth color transitions */
.nav-menu a, .card-btn, .pricing-btn, .tab-btn {
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced backdrop blur */
.navbar, .card-overlay {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Removed goofy scale animation */

/* Better shadow transitions */
.product-card, .feature-card, .pricing-card {
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimize repaints */
.cursor-glow, .cursor-dot, .grid-bg, .scanline {
    will-change: transform;
    contain: layout style paint;
}

/* Smooth hover transitions for icons */
.feature-icon, .stat-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced text shadows */
.glitch, .logo-text, .section-title .highlight {
    transition: text-shadow 0.3s ease;
}

/* Smooth FAQ transitions */
.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better performance for transforms */
@media (min-width: 1024px) {
    .product-card, .feature-card, .pricing-card {
        transform: translate3d(0, 0, 0);
    }
}

/* Removed goofy gradient animation */

/* Enhanced button ripple */
button {
    position: relative;
    overflow: hidden;
}

/* Optimize font loading */
@font-face {
    font-display: swap;
}

/* Better image loading */
img {
    loading: lazy;
    decoding: async;
}

/* Smooth section transitions */
section {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Cursor handled by body class */

/* Final performance boost */
.product-grid, .features-grid, .pricing-grid {
    will-change: contents;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 2;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-category {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.modal-description {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-features {
    margin-bottom: 1.5rem;
}

.modal-features h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.modal-features ul {
    list-style: none;
}

.modal-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
}

.modal-features li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.modal-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 6px;
}

.modal-stats div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.modal-stats i {
    color: var(--primary);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.modal-price {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
}

/* Notifications */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Cart Badge */
.nav-actions {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    display: none;
}

/* Login Page Styles */
.login-page {
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}

.login-box {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header .logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-header h1 {
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-subtitle i {
    color: var(--primary);
}

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 255, 65, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-error {
    display: none;
    padding: 1rem;
    background: rgba(255, 0, 81, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 6px;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-login {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-login:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.5);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-footer {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.security-badges {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.security-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.warning-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.warning-text i {
    color: #ffa500;
}

/* Logout Button */
.nav-logout {
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logout:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-box {
        padding: 2rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .security-badges {
        flex-direction: column;
    }
}
