@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Inter:wght@400;700;900&display=swap');

:root {
    --bg-color: #050508;
    --card-bg: #0f0f13;
    --text-primary: #e0e0e0;
    --text-secondary: #8a8a9b;
    --accent-color: #00ff88;
    /* Cyber Green */
    --accent-glow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.3);
    --border-color: #2a2a35;
    --font-heading: 'Share Tech Mono', monospace;
    --font-body: 'Inter', sans-serif;

    /* BSOD Colors */
    --bsod-bg: #0078d7;
    /* classic win10/11 blue */
    --bsod-text: #ffffff;

    /* VRAM Colors */
    --vram-accent: #ff0055;
    /* RGB Pink/Red */
    --vram-glow: 0 0 10px rgba(255, 0, 85, 0.5);
}

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

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glitch-text {
    position: relative;
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.icon-chip {
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-color);
    position: relative;
    box-shadow: var(--accent-glow);
}

.icon-chip::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: repeating-linear-gradient(90deg, var(--accent-color) 0, var(--accent-color) 2px, transparent 2px, transparent 4px);
    opacity: 0.5;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--accent-glow);
}

.btn-cta:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    transform: scale(1.05);
}

@keyframes pulse-border {
    0% {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

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

.stat-card {
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    display: block;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #0a0a0e;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-family: var(--font-heading);
}

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

.price-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.price-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--accent-glow);
}

.price-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

/* VRAM Variant */
.price-card.vram:hover {
    border-color: var(--vram-accent);
}

.price-card.vram.featured {
    border-color: var(--vram-accent);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.price-card.vram.featured::before {
    background: var(--vram-accent);
}

.price-card.vram .price {
    color: var(--vram-accent);
}

.price-card.vram .btn-cta {
    border-color: var(--vram-accent);
    color: var(--vram-accent);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

.price-card.vram .btn-cta:hover {
    background: var(--vram-accent);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.8);
}

.price-card.vram .specs-list li::before {
    color: var(--vram-accent);
}

.ram-size {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.specs-list {
    list-style: none;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: left;
}

.specs-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.specs-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Partners Section */
.partners {
    padding: 40px 0;
    background: #000;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    opacity: 0.5;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: bold;
    letter-spacing: 2px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    overflow: hidden;
}

.user-info h4 {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.user-info span {
    font-size: 0.8rem;
    color: #666;
}

/* Live Stats Section */
.stats-bar {
    background: linear-gradient(90deg, #000, #111, #000);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.live-stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.live-stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #fff;
    display: block;
}

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

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: var(--card-bg);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background: #000;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.comparison-table td {
    color: var(--text-secondary);
}

.check-mark {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cross-mark {
    color: #555;
}

/* Accessories */
.accessory-card {
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.accessory-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.accessory-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: #222;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 2px solid var(--accent-color);
    overflow: hidden;
}

.team-name {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #15151a;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: #020202;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--card-bg);
    width: 500px;
    padding: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: var(--accent-glow);
    text-align: center;
}

/* Scanner Modal Specifics */
#scanner-modal {
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
}

#scanner-content {
    width: 700px;
    max-width: 90%;
    background: #000;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
    padding: 0;
    overflow: hidden;
    position: relative;
    font-family: 'Consolas', 'Monaco', monospace;
    text-align: left;
}

.scan-header {
    background: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.scan-body {
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.scan-line {
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeIn 0.1s forwards;
}

.scan-line.error {
    color: #ff0055;
    font-weight: bold;
    text-shadow: 0 0 5px #ff0055;
}

.scan-line.warning {
    color: #ffcc00;
}

.scan-line.success {
    color: #00ff00;
    font-weight: bold;
}

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

.scan-progress {
    width: 100%;
    height: 10px;
    background: #111;
    margin: 5px 0 15px;
    position: relative;
    display: none;
    /* hidden by default */
}

.scan-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
}

.progress-container {
    margin-top: 30px;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.progress-bar {
    height: 20px;
    background: #1a1a20;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transition: width 0.2s linear;
}

.status-text {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-height: 1.5em;
}

/* BSOD Prank */
#bsod {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bsod-bg);
    color: var(--bsod-text);
    z-index: 9999;
    padding: 100px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: none;
}

.bsod-content {
    max-width: 900px;
}

.sad-face {
    font-size: 8rem;
    margin-bottom: 40px;
    display: block;
}

.bsod-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: normal;
}

/* As Seen On */
.as-seen-on {
    background: #050508;
    border-bottom: 1px solid var(--border-color);
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.media-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
}

/* Trust Badges */
.trust-badge {
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #888;
    background: #111;
    cursor: help;
}

.trust-badge:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.bsod-details {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: #fff;
    /* Placeholder for QR */
    padding: 5px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.stop-code {
    font-size: 0.9rem;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

/* Reveal Message */
#reveal-msg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    z-index: 10000;
    border: 2px solid #fff;
}

#reveal-msg h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Matrix Animation Canvas */
#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 102;
    flex-direction: column;
    gap: 5px;
    margin-right: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s;
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        border-left: 1px solid var(--accent-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 100;
        gap: 40px;
    }

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