/* Freeze2k - Hybrid Light Theme with Neon Accents */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@700;800;900&display=swap');

:root {
    /* Dark Backgrounds */
    --bg-primary: #0a0f1a;
    --bg-secondary: #0f1629;
    --bg-tertiary: #1a1f35;
    --bg-card: #111827;

    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Neon Accent Colors */
    --neon-cyan: #00d4ff;
    --neon-blue: #0099ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --accent: #00d4ff;
    --accent-hover: #00b8e6;
    --accent-light: rgba(0, 212, 255, 0.1);
    --accent-glow: rgba(0, 212, 255, 0.4);

    /* Borders & Shadows */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(0, 212, 255, 0.5);

    /* Status Colors */
    --success-color: #22c55e;
    --success-bg: #dcfce7;
    --error-color: #ef4444;
    --error-bg: #fee2e2;
    --warning-color: #f59e0b;
    --warning-bg: #fef3c7;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(0, 212, 255, 0.5);

    /* Legacy mappings */
    --tron-cyan: var(--neon-cyan);
    --tron-blue: var(--neon-blue);
    --primary-color: var(--accent);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #0a0f1a 0%, #0f1629 50%, #0a0f1a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Retro grid pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Scanline effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

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

/* Header - Dark with neon accent */
.header {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f35 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ffff 0%, #00d4ff 50%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

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

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 40%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Forms */
.form-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    margin: 0 auto;
    transition: all 0.3s;
}

.form-container:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.1);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

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

.form-input, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px var(--accent-light), 0 0 20px rgba(0, 212, 255, 0.15);
}

.form-input.error {
    border-color: var(--error-color);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-helper {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.form-error {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Buttons - Neon style */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-block {
    width: 100%;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0, 153, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.6);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.alert-success {
    background: var(--success-bg);
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: var(--error-bg);
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: var(--warning-bg);
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Footer - Dark with neon accent */
.footer {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f35 100%);
    color: #fff;
    padding: 3rem 0;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

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

.footer .logo-text {
    font-size: 22px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Loading Spinner - Neon style */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tip Jar Component */
.tip-jar {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.tip-jar:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.tip-jar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.tip-message {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.tip-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0070ba, #003087);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
}

.tip-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 112, 186, 0.5);
}

.tip-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
}

/* Cards - With hover glow */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-md), 0 0 30px rgba(0, 212, 255, 0.12);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

/* Glow link style */
a.glow-link {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s;
}

a.glow-link:hover {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

/* Neon underline links */
a.neon-link {
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
}

a.neon-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

a.neon-link:hover::after {
    width: 100%;
}

a.neon-link:hover {
    color: var(--neon-cyan);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .form-container {
        padding: 1.5rem;
    }

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

    .nav-links {
        display: none;
    }

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

    .logo-text {
        font-size: 22px;
    }
}

/* Donation Popup */
.donation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.donation-popup.show {
    opacity: 1;
    visibility: visible;
}

.donation-popup .popup-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.donation-popup.show .popup-content {
    transform: scale(1);
}

.donation-popup .popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.donation-popup .popup-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.donation-popup .popup-icon {
    margin-bottom: 1rem;
    color: #ff6b6b;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.donation-popup .popup-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.donation-popup .popup-message {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.donation-popup .popup-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #0070ba, #003087);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 112, 186, 0.4);
}

.donation-popup .popup-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 112, 186, 0.6);
}

.donation-popup .popup-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 1rem 0 0 0;
}

/* =====================================================
   HIT COUNTER STYLES
   ===================================================== */

/* Retro 90s Web Counter */
.hit-counter.retro-counter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.5),
        0 0 10px rgba(0, 212, 255, 0.2);
}

.retro-counter .counter-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: #00d4ff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.retro-counter .counter-digits {
    display: flex;
    gap: 2px;
}

.retro-counter .digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 28px;
    background: #000;
    border: 1px solid #222;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: bold;
    color: #00ff41;
    text-shadow: 0 0 8px #00ff41;
    box-shadow: inset 0 0 5px rgba(0, 255, 65, 0.2);
}

.retro-counter .counter-unique {
    font-size: 0.6rem;
    color: #666;
    margin-top: 0.5rem;
    font-family: monospace;
}

/* Modern Minimal Counter */
.hit-counter.modern-counter {
    display: inline-flex;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.modern-counter .counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modern-counter .counter-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.modern-counter .counter-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge Counter */
.hit-counter.badge-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.badge-counter .badge-icon {
    font-size: 0.875rem;
}

.badge-counter .badge-count {
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer Hit Counter Layout */
.footer-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-stats .stat-value {
    font-weight: 600;
    color: var(--accent);
}

/* =====================================================
   NINTENDO CARTRIDGE GAME CARD
   ===================================================== */

.game-cartridge {
    position: relative;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 8px 8px 4px 4px;
    padding: 0;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 3px solid #1a1a1a;
}

.game-cartridge:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        0 0 30px rgba(255, 0, 100, 0.3);
}

/* Cartridge notch at top */
.game-cartridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: #111;
    border-radius: 0 0 4px 4px;
}

/* Cartridge grip lines at bottom */
.game-cartridge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #222 0px,
        #222 4px,
        #1a1a1a 4px,
        #1a1a1a 8px
    );
}

.cartridge-label {
    margin: 20px 10px 30px 10px;
    background: linear-gradient(135deg, #ff0066 0%, #ff3300 50%, #ff6600 100%);
    border-radius: 4px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,0.2),
        inset 0 -2px 4px rgba(0,0,0,0.2);
}

/* Worn label effect */
.cartridge-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.cartridge-logo {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.25rem;
    color: #fff;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 4px 0 rgba(0,0,0,0.3);
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cartridge-logo .logo-hood {
    display: block;
    font-size: 0.6rem;
    color: #ffff00;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000;
    margin-top: 0.25rem;
    letter-spacing: 2px;
}

.cartridge-subtitle {
    font-family: 'Arial Black', sans-serif;
    font-size: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.75rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cartridge-rating {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #000;
    color: #fff;
    font-size: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
}

/* Seal of quality */
.cartridge-seal {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.4rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 2px solid #cc8800;
}

/* Gun/crosshair decorations */
.cartridge-decor {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    z-index: 0;
}

.cartridge-decor.top-left {
    top: 10px;
    left: 10px;
}

.cartridge-decor.bottom-right {
    bottom: 30px;
    right: 10px;
}

/* NEW badge on cartridge */
.cartridge-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #00ff00;
    color: #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(-15deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 10;
}
