/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f9d976, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

.section-sub {
    text-align: center;
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f9d976, #f39c12);
    color: #0a0a0a;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #f9d976;
    padding: 12px 30px;
    border: 2px solid #f9d976;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #f9d976;
    color: #0a0a0a;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* ===== HEADER ===== */
.header {
    background: rgba(10, 10, 10, 0.95);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

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

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}

.logo-icon {
    color: #f9d976;
    margin-right: 8px;
    font-size: 2rem;
}

.logo-text {
    color: #fff;
}

.logo-text span {
    color: #f9d976;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #f9d976;
}

.btn-header {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 100px;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(243, 156, 18, 0.05) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, 10%); }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #f9d976 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 25px;
}

.hero-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid #333;
}

.hero-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-chip {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f9d976, #d4a017);
    box-shadow: 0 0 60px rgba(243, 156, 18, 0.3);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.casino-chip::after {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #0a0a0a;
    font-weight: 900;
    letter-spacing: 10px;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== GAMES SECTION ===== */
.games {
    padding: 80px 0;
    background: #0f0f0f;
}

.game-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ccc;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #f9d976;
    background: #f9d976;
    color: #0a0a0a;
}

.game-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.game-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slot */
.slot-machine {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.reel {
    width: 100px;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    background: #0a0a0a;
    border: 2px solid #333;
    position: relative;
}

.symbol {
    height: 66.66px; /* 200/3 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    line-height: 1;
}

.slot-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.slot-balance,
.roulette-balance,
.bj-balance {
    font-weight: 600;
    font-size: 1.2rem;
}

.slot-result,
.roulette-result,
.bj-result {
    font-weight: 700;
    font-size: 1.3rem;
    min-width: 120px;
    color: #f9d976;
}

.slot-real {
    margin-top: 20px;
}

/* Roulette */
.roulette-table {
    max-width: 700px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    text-align: center;
}

.roulette-wheel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin: 20px 0;
}

.roulette-number {
    background: #2a2a2a;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
    border: 1px solid #333;
}

.roulette-number[data-num="0"] {
    background: #27ae60;
}

.roulette-number[data-num="0"]:hover {
    background: #2ecc71;
}

.roulette-number:hover {
    background: #3a3a3a;
}

.roulette-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.roulette-real {
    margin-top: 20px;
}

/* Blackjack */
.blackjack-table {
    max-width: 700px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    text-align: center;
}

.bj-dealer,
.bj-player {
    margin: 15px 0;
    padding: 15px;
    background: #0f0f0f;
    border-radius: 12px;
}

.bj-dealer span,
.bj-player span {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.bj-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-height: 70px;
    flex-wrap: wrap;
}

.bj-cards .card {
    background: #fff;
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.8rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    min-width: 50px;
}

.bj-score {
    font-weight: 700;
    font-size: 1.4rem;
    color: #f9d976;
}

.bj-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bj-real {
    margin-top: 20px;
}

/* ===== BONUS ===== */
.bonus {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #1a1a1a, #0a0a0a);
}

.bonus-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    gap: 40px;
}

.bonus-info h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #f9d976;
}

.bonus-info p {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-info ul {
    margin: 20px 0;
}

.bonus-info ul li {
    padding: 6px 0;
    border-bottom: 1px solid #222;
}

.bonus-image {
    font-size: 8rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ===== REVIEWS ===== */
.reviews {
    padding: 80px 0;
    background: #0f0f0f;
}

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

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #f9d976;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    color: #aaa;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #f9d976;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: #f9d976;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-badges {
        justify-content: center;
    }
    .casino-chip {
        width: 200px;
        height: 200px;
    }
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .nav ul {
        gap: 15px;
    }
    .btn-header {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .slot-reels {
        gap: 10px;
    }
    .reel {
        width: 70px;
        height: 150px;
    }
    .symbol {
        height: 50px;
        font-size: 2.2rem;
    }
    .roulette-wheel {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .nav ul {
        gap: 10px;
        font-size: 0.9rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-badges span {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .slot-controls, .roulette-controls, .bj-controls {
        flex-direction: column;
        gap: 10px;
    }
    .reel {
        width: 60px;
        height: 120px;
    }
    .symbol {
        height: 40px;
        font-size: 1.8rem;
    }
}