/* ============================================
   GambaCalc - Dark Neon Dashboard Styles
   ============================================ */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2e;
    --neon-green: #39ff14;
    --neon-uranium: #00ff88;
    --neon-cyan: #00b4d8;
    --neon-pink: #ff006e;
    --neon-magenta: #f72585;
    --neon-yellow: #ffd60a;
    --neon-purple: #7b2ff7;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --border-color: rgba(57, 255, 20, 0.15);
    --glow-green: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3), 0 0 40px rgba(57, 255, 20, 0.1);
    --glow-cyan: 0 0 10px rgba(0, 180, 216, 0.5), 0 0 20px rgba(0, 180, 216, 0.3);
    --glow-pink: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3);
}

* {
    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);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   Animated Background
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d0d1a 25%, #0a0a0f 50%, #101020 75%, #0a0a0f 100%);
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: breathe 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-green), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-uranium), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

@keyframes breathe {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.2); }
}

.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { filter: drop-shadow(0 0 5px var(--neon-green)); }
    50% { filter: drop-shadow(0 0 15px var(--neon-uranium)) drop-shadow(0 0 30px var(--neon-green)); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-uranium), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--neon-green);
    border-color: rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.05);
}

.nav-link.active {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
    box-shadow: var(--glow-green);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--neon-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(57, 255, 20, 0); }
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 2rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Category Cards
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.category-card:nth-child(1) { animation-delay: 0.2s; }
.category-card:nth-child(2) { animation-delay: 0.4s; }
.category-card:nth-child(3) { animation-delay: 0.6s; }

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.1);
}

.category-card.originals:hover { border-color: var(--neon-uranium); box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1); }
.category-card.slots:hover { border-color: var(--neon-magenta); box-shadow: 0 10px 40px rgba(247, 37, 133, 0.1); }
.category-card.sports:hover { border-color: var(--neon-cyan); box-shadow: 0 10px 40px rgba(0, 180, 216, 0.1); }

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { filter: drop-shadow(0 0 3px var(--neon-green)); }
    50% { filter: drop-shadow(0 0 10px var(--neon-uranium)); }
}

.card-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.card-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(57, 255, 20, 0.3);
    text-transform: uppercase;
}

.card-body {
    padding: 1.2rem 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.card-body::-webkit-scrollbar {
    width: 4px;
}

.card-body::-webkit-scrollbar-track {
    background: transparent;
}

.card-body::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 2px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
}

.card-stat {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Game Grid inside cards */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.game-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-chip:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: rgba(57, 255, 20, 0.3);
    transform: scale(1.02);
}

.game-chip-icon {
    font-size: 1.1rem;
}

.game-chip-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.game-chip-rtp {
    font-size: 0.6rem;
    color: var(--neon-green);
    margin-left: auto;
    font-family: 'Orbitron', sans-serif;
}

/* Sports List */
.sports-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sport-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sport-item:hover {
    background: rgba(0, 180, 216, 0.05);
    border-color: rgba(0, 180, 216, 0.3);
}

.sport-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.sport-live {
    font-size: 0.65rem;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   Live Wins Ticker
   ============================================ */
.wins-ticker {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ticker-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.ticker-pulse {
    width: 10px;
    height: 10px;
    background: var(--neon-pink);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.ticker-content {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.ticker-content::-webkit-scrollbar {
    height: 3px;
}

.ticker-content::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 2px;
}

.win-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.win-game {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.win-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.win-multi {
    font-size: 0.65rem;
    color: var(--neon-cyan);
    font-weight: 500;
}

/* ============================================
   RTP Chart
   ============================================ */
.chart-section {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.chart-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    width: 140px;
    flex-shrink: 0;
}

.chart-bar-container {
    flex: 1;
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.chart-bar {
    height: 100%;
    border-radius: 14px;
    transition: width 1.5s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.chart-bar-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.chart-bar.green { background: linear-gradient(90deg, var(--neon-green), var(--neon-uranium)); box-shadow: 0 0 10px rgba(57, 255, 20, 0.3); }
.chart-bar.cyan { background: linear-gradient(90deg, var(--neon-cyan), #0096c7); box-shadow: 0 0 10px rgba(0, 180, 216, 0.3); }
.chart-bar.pink { background: linear-gradient(90deg, var(--neon-pink), var(--neon-magenta)); box-shadow: 0 0 10px rgba(255, 0, 110, 0.3); }
.chart-bar.purple { background: linear-gradient(90deg, var(--neon-purple), #9d4edd); box-shadow: 0 0 10px rgba(123, 47, 247, 0.3); }

/* ============================================
   Games Browser
   ============================================ */
.search-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.neon-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.neon-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.filter-btn.active {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.games-browser {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

.game-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.game-card-emoji {
    font-size: 1.8rem;
    animation: bounce 3s ease-in-out infinite;
}

.game-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-card-category {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.game-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.game-stat {
    display: flex;
    flex-direction: column;
}

.game-stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.game-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-green);
}

.game-stat-value.high { color: var(--neon-green); }
.game-stat-value.medium { color: var(--neon-yellow); }
.game-stat-value.low { color: var(--neon-pink); }

/* ============================================
   Calculator
   ============================================ */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.calc-panel {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.calc-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--neon-cyan);
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.neon-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(0, 255, 136, 0.15));
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    color: var(--neon-green);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-btn:hover {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.25), rgba(0, 255, 136, 0.25));
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.result-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--neon-green);
}

.result-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}

.result-value.negative {
    color: var(--neon-pink);
    text-shadow: 0 0 5px rgba(255, 0, 110, 0.3);
}

/* ============================================
   Promo Codes
   ============================================ */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.promo-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-uranium));
    animation: gradient-flow 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.promo-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

.promo-type {
    font-size: 0.65rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.promo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promo-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.promo-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(57, 255, 20, 0.1);
    border: 1px dashed var(--neon-green);
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--neon-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-code:hover {
    background: rgba(57, 255, 20, 0.2);
}

.promo-requirement {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

.promo-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.info-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.info-card ol, .info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-card li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.info-card ol li::before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.7rem;
}

.info-card ol {
    counter-reset: list-item;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.footer-brand span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-green);
}

.footer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-link {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
    }
    .main-content {
        padding: 6rem 1rem 1rem;
    }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    .stat-value {
        font-size: 1rem;
    }
    .games-browser {
        grid-template-columns: 1fr;
    }
    .calc-results {
        grid-template-columns: 1fr;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .game-grid {
        grid-template-columns: 1fr;
    }
}