:root {
    --bg-dark: #050505;
    --bg-panel: #111111;
    --accent-primary: #00f3ff;
    /* Cyberpunk Cyan */
    --accent-secondary: #ff003c;
    /* Aggressive Red */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(transparent 0%,
            rgba(255, 255, 255, 0.05) 0.5%,
            transparent 1%);
    animation: scanline 10s linear infinite;
    opacity: 0.3;
}

@keyframes scanline {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0%);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    position: relative;
    color: var(--text-white);
    text-shadow: 2px 2px var(--accent-secondary);
}

.sub-glitch {
    color: var(--accent-primary);
    text-shadow: -2px 2px var(--accent-secondary);
}

.hero-sub {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin: 20px 0 40px;
    letter-spacing: 2px;
}

.btn-mega {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-secondary);
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--accent-secondary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
}

.btn-mega:hover {
    background: transparent;
    box-shadow: 0 0 40px rgba(255, 0, 60, 0.8);
    transform: scale(1.05);
}

.offline-badge {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

/* FEATURES SECTION */
.features {
    padding: 100px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-panel);
    padding: 40px;
    border-left: 4px solid var(--accent-primary);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #1a1a1a;
}

.neon-text {
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

/* DEMO MOCKUP */
.demo-section {
    padding: 100px 20px;
    background: #080808;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.highlight {
    color: var(--accent-secondary);
}

.demo-container-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.demo-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.demo-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.tech-list .icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 50%;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.tech-detail strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
}

.tech-detail small {
    display: block;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.demo-window {
    flex: 1;
    min-width: 300px;
    height: 500px;
    /* Fixed height for consistency */
    background: #000;
    border: 1px solid #333;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-right: 4px solid var(--accent-secondary);
    /* Accent edge */
}

/* Simulated Content */
.gfx-mockup {
    width: 100%;
    height: 100%;
    position: relative;
    background: url('https://images.unsplash.com/photo-1574629810360-7efbbe436f0d?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.7;
}

.score-bug {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background: #000;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.lower-third {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    min-width: 300px;
    /* Ensure minimum width for presence */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center internal text */
    text-align: center;
}

.name {
    background: var(--accent-secondary);
    color: white;
    padding: 10px 40px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    transform: skewX(-10deg);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.role {
    background: #111;
    color: white;
    padding: 5px 30px;
    font-size: 1.2rem;
    transform: skewX(-10deg);
    width: fit-content;
    margin-top: 5px;
    border: 1px solid #333;
}

/* ARSENAL GRID (Features List) */
.arsenal-section {
    padding: 100px 20px;
    background: #050505;
    /* Solid dark background */
    text-align: center;
    border-top: 1px solid #333;
    position: relative;
    z-index: 1;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    /* Widen cards for side-by-side */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.arsenal-item {
    background: #1e1e1e;
    padding: 25px;
    border: 2px solid #555;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: left;
    display: flex;
    /* Flexbox for side-by-side */
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.arsenal-content {
    flex: 1;
}

/* Accent Top Border */
.arsenal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-primary);
    opacity: 0.7;
    transition: opacity 0.3s, height 0.3s;
}

.arsenal-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.arsenal-item:hover::before {
    opacity: 1;
    height: 5px;
}

.arsenal-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    padding: 10px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.arsenal-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-primary);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.arsenal-item p {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
}

/* MINI PREVIEWS (Right Side Mockups) */
.mini-preview {
    width: 160px;
    /* Slightly wider to fit details */
    height: 90px;
    background: #000;
    /* Broadcast monitor look */
    border: 3px solid #333;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    /* Screen depth */
}

/* 1. REAL SCOREBOARD REPLICA */
.mini-scorechip {
    display: flex;
    align-items: stretch;
    font-family: 'Orbitron', sans-serif;
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0.85);
    /* Fit in box */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: none;
    background: transparent;
    gap: 0;
    padding: 0;
}

.mini-scorechip span {
    padding: 5px 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Simulate pseudo-elements with classes since we can't style pseudos inline easily */
.mini-scorechip span:first-child {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

/* Home */
.mini-scorechip b {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 800;
}

.mini-scorechip span:last-child {
    background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
    color: white;
}

/* Away */
.mini-time {
    display: none;
}

/* Hide time for cleaner chip look */

/* 2. REAL TACTICAL BOARD REPLICA */
.mini-pitch {
    width: 100%;
    height: 100%;
    /* Exact Render.html Radial Gradient */
    background: radial-gradient(circle at center, #1a472a 0%, #0d2b16 100%);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Center circle */
.mini-pitch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.d1 {
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
}

.d2 {
    top: 60%;
    left: 30%;
}

.d3 {
    top: 60%;
    left: 70%;
}

.d4 {
    top: 35%;
    left: 45%;
}

.d5 {
    top: 35%;
    left: 55%;
}

/* 3. REAL SUBS REPLICA */
.mini-sub {
    font-family: 'Montserrat', sans-serif;
    width: 90%;
}

.sub-out,
.sub-in {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px;
    border-radius: 2px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
}

.sub-out {
    border-left: 3px solid #ff1744;
}

/* Real Red */
.sub-in {
    border-left: 3px solid #00e676;
}

/* Real Green */

/* 4. REAL LOWER THIRD (Interviews) REPLICA */
.mini-lower {
    width: 90%;
    position: relative;
}

.m-name {
    background: rgba(15, 15, 15, 0.95);
    border-left: 3px solid #00e5ff;
    /* Cyan Accent */
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 3px 5px;
    transform: skewX(-10deg);
}

.m-role {
    color: #00e5ff;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 10px;
    transform: skewX(-10deg);
    border: none;
    background: transparent;
    width: auto;
    margin: 0;
}

/* 5. BUMPERS (Breaking News) */
.mini-breaking {
    background: repeating-linear-gradient(45deg, #a00, #a00 10px, #800 10px, #800 20px);
    color: white;
    font-weight: 900;
    font-size: 0.7rem;
    padding: 5px 15px;
    border: 2px solid white;
    transform: rotate(-5deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.d1 {
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
}

/* GK */
.d2 {
    top: 60%;
    left: 30%;
}

.d3 {
    top: 60%;
    left: 70%;
}

.d4 {
    top: 40%;
    left: 40%;
}

.d5 {
    top: 40%;
    left: 60%;
}

/* Mini Subs */
.mini-sub {
    font-size: 0.5rem;
    font-weight: 700;
    width: 100%;
    padding: 5px;
}

.sub-out {
    background: #300;
    color: #f55;
    margin-bottom: 2px;
    padding: 2px;
}

.sub-in {
    background: #030;
    color: #5f5;
    padding: 2px;
}

/* Mini Lower Third */
.mini-lower {
    width: 90%;
    text-align: center;
}

.m-name {
    background: var(--accent-secondary);
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px;
    transform: skewX(-10deg);
}

.m-role {
    background: #222;
    color: white;
    font-size: 0.4rem;
    padding: 1px;
    width: 80%;
    margin: 2px auto 0;
    transform: skewX(-10deg);
    border: 1px solid #444;
}

/* Mini Breaking */
.mini-breaking {
    background: repeating-linear-gradient(45deg, #a00, #a00 10px, #800 10px, #800 20px);
    color: white;
    font-weight: 900;
    font-size: 0.7rem;
    padding: 5px 15px;
    border: 2px solid white;
    transform: rotate(-5deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

/* Mini Ad & Loc & Shield */
.mini-ad {
    background: white;
    color: black;
    font-weight: 900;
    padding: 5px 10px;
    font-size: 0.7rem;
}

.mini-loc {
    color: var(--accent-primary);
    font-size: 0.6rem;
    font-weight: 700;
    border: 1px solid var(--accent-primary);
    padding: 3px;
    border-radius: 3px;
}

.mini-shield-grid .shield {
    font-size: 1rem;
}


/* PRICING */
.pricing {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Align for scale effect */
}

.plan-card {
    background: var(--bg-panel);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.plan-card.pro {
    background: #161616;
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-white);
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    padding: 0 20px;
}

li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
    color: #ddd;
}

.btn-plan {
    display: block;
    padding: 15px;
    background: #333;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-glow {
    background: var(--accent-primary);
    color: black;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.btn-glow:hover {
    background: white;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.9rem;
}

/* 9. MINI REFEREE */
.mini-referee {
    display: flex;
    gap: 4px;
    align-items: center;
    background: linear-gradient(90deg, #111 0%, #222 100%);
    padding: 5px;
    border-radius: 4px;
    border-left: 2px solid #f59e0b;
}

.ref-dot {
    width: 6px;
    height: 6px;
    background-color: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
}

/* 10. MINI PLAYER SUPER */
.mini-player-super {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 5px;
    border-radius: 2px;
    width: 90%;
}

.p-pic {
    width: 25px;
    height: 25px;
    background: #444;
    border-radius: 50%;
    border: 1px solid #777;
}

.p-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.p-line1 {
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    width: 80%;
}

.p-line2 {
    height: 3px;
    background: #f59e0b;
    width: 50%;
}

/* 11. MINI INTERVIEW SUPER */
.mini-interview-super {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 80%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    padding: 5px;
    border-left: 3px solid #cb2d3e;
}

.i-line {
    height: 4px;
    background: #fff;
    width: 90%;
}

.i-line.short {
    width: 60%;
    opacity: 0.7;
}

/* 12. MINI CARD EVENT */
.mini-card-event {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-icon {
    width: 12px;
    height: 16px;
    border-radius: 2px;
}

.card-icon.yellow {
    background: #ffeb3b;
    box-shadow: 0 0 5px #ffeb3b;
}

.card-icon.red {
    background: #f44336;
    box-shadow: 0 0 5px #f44336;
}

.player-name {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

/* 13. MINI COMMERCIAL LOGO */
.mini-commercial {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.commercial-box {
    color: #f59e0b;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* CHECKOUT MODAL STYLES - FIXED & PREMIUM */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-top: 5px solid var(--accent-primary);
    padding: 60px 40px 40px;
    width: 95%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 243, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: all 0.5s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
}

.close-modal:hover {
    color: var(--accent-secondary);
}

.checkout-header {
    margin-bottom: 40px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.badge-lock, .badge-pci {
    font-size: 0.75rem;
    background: rgba(0, 243, 255, 0.05);
    padding: 6px 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.checkout-body {
    transition: opacity 0.3s ease;
}

.order-summary {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px;
    border: 1px solid #1a1a1a;
    margin-bottom: 40px;
    border-radius: 4px;
}

.order-summary p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-summary .price-val {
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    display: block;
    margin-top: 5px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.input-group input {
    width: 100%;
    background: #050505;
    border: 1px solid #222;
    padding: 16px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    border-radius: 2px;
}

.input-group input::placeholder {
    color: #222;
    letter-spacing: 2px;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
    background: #080808;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.card-input-wrapper {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    filter: grayscale(1) invert(1);
    opacity: 0.3;
}

.btn-confirm {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 20px;
    letter-spacing: 2px;
}

.crypto-hint {
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    margin-top: 30px;
    letter-spacing: 1px;
}

/* OVERLAYS INTERNAL */
.overlay-internal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    box-shadow: 0 0 25px var(--accent-primary);
    animation: scan 2.5s ease-in-out infinite;
    z-index: 1001;
}

@keyframes scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.glitch-text {
    font-size: 2.2rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-primary);
    margin-bottom: 40px;
    font-weight: 900;
}

.security-steps {
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
}

.step {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    font-family: 'Orbitron', sans-serif;
}

.step.active {
    color: white;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.step.active::before {
    content: '> ';
    color: var(--accent-primary);
}

/* SUCCESS OVERLAY */
#success-overlay {
    background: radial-gradient(circle at center, #001010 0%, #000 100%);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-icon {
    font-size: 7rem;
    color: var(--accent-primary);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.4));
    animation: success-pulse 2s infinite ease-in-out;
}

@keyframes success-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4)); }
}

#success-overlay .neon-text {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#success-overlay p {
    color: var(--text-gray);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.close-success {
    margin-top: 0;
    width: 100%;
    max-width: 320px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .glitch {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .btn-mega {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .demo-container-split {
        flex-direction: column-reverse; /* Text first on mobile usually better, but mockups visual might be better first? Let's keep normal flow or column */
        flex-direction: column;
    }
    
    .demo-window {
        width: 100%;
        min-width: auto;
        height: 350px;
    }
    
    .arsenal-grid, .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 1.8rem !important; /* Force small size for mobile to fix the reported issue */
        word-break: break-word; /* Ensure it wraps if still too long */
    }
    
    .hero-content {
        padding: 15px;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .arsenal-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .mini-preview {
        margin: 15px auto 0;
    }
    
    .plan-card {
        padding: 30px 15px;
    }
    
    .price {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
}
