@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f9d76c;
    --gold-dark: #aa8c2c;
    --bg-dark: #0a0a12;
    --bg-card: #11111a;
    --bg-glass: rgba(20, 20, 35, 0.85);
    --accent: #ff4757;
    --accent-green: #2ed573;
    --text: #f1f2f6;
    --text-dim: #a4b0be;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a12 50%, #000000 100%);
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.25; }
}

nav {
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo, a.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.balance-badge {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6); }
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

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

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

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.form-container {
    max-width: 450px;
    margin: 5rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gold-light);
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(255,255,255,0.08);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alert-error { background: rgba(255, 71, 87, 0.15); border: 1px solid var(--accent); color: #ff6b81; }
.alert-success { background: rgba(46, 213, 115, 0.15); border: 1px solid var(--accent-green); color: #7bed9f; }

.dashboard {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.welcome-bar h2 {
    font-size: 2rem;
    font-weight: 700;
}

.welcome-bar h2 span {
    color: var(--gold-light);
}

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

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #16162a, #0f0f1a);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.game-card .game-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.game-card .game-info {
    padding: 1.5rem 2rem;
    background: rgba(0,0,0,0.3);
}

.game-card .game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.game-card .game-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.game-card .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-board {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Blackjack */
.blackjack-table {
    background: linear-gradient(135deg, #1a5f2a, #0d3d1a);
    border-radius: 20px 20px 100px 100px;
    padding: 2rem;
    min-height: 400px;
    position: relative;
    border: 8px solid #5a3a1a;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 10px 40px rgba(0,0,0,0.5);
}

.card {
    width: 90px;
    height: 130px;
    background: white;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    margin: 0 5px;
    font-weight: 700;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    animation: dealCard 0.4s ease-out forwards;
    transform-origin: bottom center;
    position: relative;
    font-size: 1.1rem;
}

@keyframes dealCard {
    from { transform: translateY(-50px) rotateX(60deg); opacity: 0; }
    to { transform: translateY(0) rotateX(0deg); opacity: 1; }
}

.card.red { color: #e74c3c; }
.card.black { color: #2c3e50; }

.card-top { font-size: 1.2rem; align-self: flex-start; }
.card-center { font-size: 2rem; align-self: center; }
.card-bottom { font-size: 1.2rem; align-self: flex-end; transform: rotate(180deg); }

.card-back {
    background: linear-gradient(135deg, #c0392b, #8e44ad);
    border: 2px solid #fff;
    color: white;
    display: flex; align-items: center; justify-content: center;
}
.card-back .card-center { color: white; font-size: 1.5rem; }

.hand-area {
    margin: 1.5rem 0;
    text-align: center;
}

.hand-label {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Roulette Canvas */
.roulette-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    position: relative;
    width: 400px;
    height: 400px;
}

.roulette-canvas {
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.2);
}

.roulette-pointer {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--gold);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.roulette-center-gold {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
    z-index: 5;
}

/* Roulette Table */
.roulette-table-new {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
    max-width: 700px;
    margin: 0 auto;
    background: #1a472a;
    padding: 1rem;
    border-radius: 10px;
    border: 4px solid #5a3a1a;
}
.roulette-cell {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; cursor: pointer; border-radius: 6px;
    transition: all 0.2s; font-size: 0.9rem; position: relative;
}
.roulette-cell:hover { transform: scale(1.1); z-index: 5; }
.roulette-cell.red { background: #c0392b; color: white; }
.roulette-cell.black { background: #111; color: white; }
.roulette-cell.green { background: #27ae60; color: white; grid-column: span 12; aspect-ratio: 6/1; }
.roulette-cell.selected { box-shadow: 0 0 15px var(--gold); border: 2px solid var(--gold); transform: scale(1.1); }
.roulette-chip {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px; background: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: #000; font-weight: 900; border: 2px solid #fff; z-index: 10;
}
.roulette-outside {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
    max-width: 700px; margin: 0.5rem auto;
}
.roulette-outside-bet {
    padding: 0.8rem; text-align: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; cursor: pointer; font-weight: 700; transition: all 0.2s;
}
.roulette-outside-bet:hover { background: rgba(212,175,55,0.2); }
.roulette-outside-bet.selected { background: var(--gold); color: #000; border-color: var(--gold-light); }

/* Slots */
.slot-machine-frame {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 650px;
    margin: 0 auto;
    border: 4px solid var(--gold-dark);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.1);
    position: relative;
}

.slot-machine-frame::before {
    content: 'ROYAL SLOTS';
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    font-weight: 900; color: var(--gold); letter-spacing: 3px; font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.slot-window {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: #000;
    border-radius: 16px;
    padding: 1.5rem;
    border: 3px solid #333;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
}

.slot-reel-modern {
    height: 160px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 30%, #1a1a1a 70%, #0a0a0a 100%);
    border-radius: 12px;
    border: 2px solid #444;
    overflow: hidden;
    position: relative;
}

.slot-reel-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 3s cubic-bezier(0.15, 0.9, 0.34, 1);
}

.slot-reel-modern .symbol {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
    width: 100%;
}

.slot-reel-modern .blur-strip {
    filter: blur(2px);
    opacity: 0.7;
}

.slot-reel-modern .win-glow {
    animation: slotGlow 0.6s ease infinite alternate;
}

@keyframes slotGlow {
    from { box-shadow: inset 0 0 20px rgba(46,213,115,0.3); }
    to { box-shadow: inset 0 0 40px rgba(46,213,115,0.8); border-color: #2ed573; }
}

/* Keno Mini */
.keno-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 450px;
    margin: 2rem auto;
}

.keno-mini-number {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.keno-mini-number:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); transform: scale(1.08); }
.keno-mini-number.selected { background: var(--gold); color: #000; border-color: var(--gold-light); transform: scale(1.1); box-shadow: 0 0 15px var(--gold); }
.keno-mini-number.drawn { background: var(--accent); color: #fff; border-color: #ff6b81; animation: drawPop 0.5s ease; }
.keno-mini-number.selected.drawn { background: #27ae60; color: #fff; border-color: #2ecc71; box-shadow: 0 0 20px #2ed573; }

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

.keno-ball-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    min-height: 60px;
    align-items: center;
}

.keno-ball {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff6b81, var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: #fff; font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255,71,87,0.4);
    animation: ballDrop 0.5s ease forwards;
    border: 2px solid rgba(255,255,255,0.3);
}

@keyframes ballDrop {
    from { transform: translateY(-30px) scale(0.5); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Controls */
.controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
}

.controls .bet-input {
    width: 120px;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
}

.controls .bet-input:focus {
    outline: none;
    border-color: var(--gold);
}

.game-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.game-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4); }
.game-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.game-btn.hit { background: linear-gradient(135deg, #27ae60, #229954); }
.game-btn.stand { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.game-btn.deal { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; }

.result-message {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    min-height: 2rem;
}

.result-message.win { color: var(--accent-green); text-shadow: 0 0 20px rgba(46, 213, 115, 0.5); animation: winPulse 1s ease infinite; }
.result-message.lose { color: var(--accent); }

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

.chips-area {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.chip {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 4px dashed rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.chip:hover { transform: translateY(-5px) rotate(10deg); }
.chip.selected { box-shadow: 0 0 20px var(--gold); border-color: var(--gold); transform: scale(1.15); }

.chip-5 { background: #e74c3c; color: white; }
.chip-10 { background: #3498db; color: white; }
.chip-25 { background: #27ae60; color: white; }
.chip-50 { background: #f39c12; color: white; }
.chip-100 { background: #9b59b6; color: white; }

select {
    padding: 1rem;
    background: #16162a;
    color: #f1f2f6;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

select option {
    background: #1a1a2e;
    color: #f1f2f6;
    padding: 10px;
}

select option:hover, select option:focus {
    background: #2a2a4e;
}

.pending-row {
    background: rgba(255, 193, 7, 0.08);
}

.approved-row {
    background: rgba(46, 213, 115, 0.08);
}

.rejected-row {
    background: rgba(255, 71, 87, 0.08);
}

.btn-confirm {
    background: linear-gradient(135deg, #2ed573, #27ae60);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    cursor: pointer;
    font-size: 1.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
}

.btn-confirm:hover { transform: scale(1.15); box-shadow: 0 0 15px rgba(46,213,115,0.4); }

.btn-reject {
    background: linear-gradient(135deg, #ff4757, #c0392b);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    cursor: pointer;
    font-size: 1.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
}

.btn-reject:hover { transform: scale(1.15); box-shadow: 0 0 15px rgba(255,71,87,0.4); }

.transaction-pending {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    font-weight: 700;
    font-size: 0.9rem;
}

.transaction-pending::before {
    content: '';
    width: 12px; height: 12px;
    border: 2px solid #ffc107;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin-clock 1s linear infinite;
}

@keyframes spin-clock {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .games-grid { grid-template-columns: 1fr; }
    .roulette-wrapper { width: 300px; height: 300px; }
    .roulette-canvas { width: 280px !important; height: 280px !important; }
    .keno-mini-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
    .roulette-table-new { grid-template-columns: repeat(6, 1fr); }
    nav { flex-direction: column; gap: 1rem; padding: 1rem; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; }
    .nav-links a { margin: 0 1rem; }
    .card { width: 65px; height: 95px; font-size: 0.9rem; }
    .card-center { font-size: 1.5rem; }
    .slot-window { gap: 0.5rem; padding: 1rem; }
    .slot-reel-modern { height: 110px; }
    .slot-reel-modern .symbol { height: 110px; font-size: 2.5rem; }
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 3rem;
}

footer a { color: var(--gold); text-decoration: none; }

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.history-table th, .history-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.history-table th {
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.history-table tr:hover { background: rgba(255,255,255,0.02); }

.win-amount { color: var(--accent-green); font-weight: 700; }
.lose-amount { color: var(--accent); font-weight: 700; }
