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

:root {
    --primary-gold: #d4af37;
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-purple: #6b46c1;
    --text-light: #e5e5e5;
    --text-gray: #a0a0a0;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--gradient-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid var(--primary-gold);
}

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

.logo h1 {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 5px;
}

.logo .subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.15);
}

.nav-link.active::after {
    width: 80%;
}

.header-btn {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.header-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.header-btn:active {
    transform: translateY(0) scale(1.02);
}

.play-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
    white-space: nowrap;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: play-pulse 2s ease-in-out infinite;
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.7);
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #fff;
}

.play-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.play-btn-large {
    padding: 18px 50px;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
}

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 6px 28px rgba(34, 197, 94, 0.8); }
}

/* Section Styles */
.section {
    padding: 60px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.content {
    background: var(--secondary-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.content p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content a {
    color: var(--primary-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.content a:hover {
    color: #f4d03f;
    border-bottom-color: #f4d03f;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Intro Section */
.intro-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* Games Section */
.games-section {
    background: var(--secondary-dark);
}

.game-category {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: '🎰';
    font-size: 1.5rem;
}

.game-category:nth-child(2) .category-title::before {
    content: '🎲';
}

.game-category:nth-child(3) .category-title::before {
    content: '🃏';
}

.game-category:nth-child(4) .category-title::before {
    content: '🎴';
}

.game-category p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Bonuses Section */
.bonuses-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* Payments Section */
.payments-section {
    background: var(--secondary-dark);
}

/* Mobile Section */
.mobile-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

/* Security Section */
.security-section {
    background: var(--primary-dark);
}

/* Pros/Cons Section */
.pros-cons-section {
    background: var(--secondary-dark);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pros-box, .cons-box {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.pros-box {
    border-top: 4px solid #10b981;
}

.cons-box {
    border-top: 4px solid #ef4444;
}

.pros-title, .cons-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3rem;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Conclusion Section */
.conclusion-section {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.conclusion-box {
    text-align: center;
    background: var(--secondary-dark);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--primary-gold);
}

.conclusion-title {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer p {
    margin: 10px 0;
    color: var(--text-gray);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.7;
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .nav {
        justify-content: center;
    }

    .header-btn,
    .play-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content {
        padding: 20px;
    }

    .content p {
        font-size: 1rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .conclusion-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .header-btn,
    .play-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .conclusion-box {
        padding: 30px 20px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

