:root {
    --color-primary: #1e3a8a;
    --color-primary-dark: #172554;
    --color-secondary: #fbbf24;
    --color-secondary-dim: #d97706;
    --color-bg-light: #fefce8;
    --color-bg-card: #ffffff;
    --color-text-dark: #1f2937;
    --color-text-light: #f3f4f6;
    --color-border: #ca8a04;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 0 15px rgba(251, 191, 36, 0.5);
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-image: linear-gradient(to bottom, #fffbeb, #fefce8);
}

h1, h2, h3, .logo, .step-number {
    font-family: 'Cinzel', serif;
    color: var(--color-primary-dark);
}

.site-header {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 1rem 0;
    border-bottom: 4px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px #000;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.site-header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.site-header nav a:hover {
    color: var(--color-secondary);
}

.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(23, 37, 84, 0.9)), url('/media/bg.webp') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-secondary);
}

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

.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-secondary);
    margin-top: 5px;
}

.content-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    text-align: justify;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 40px 0;
    opacity: 0.5;
}

.casino-card {
    background: #fff;
    border-left: 5px solid var(--color-secondary);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}

.casino-card h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

.step-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.paytable-box {
    background: #fff;
    border: 2px solid var(--color-secondary);
    padding: 20px;
    border-radius: 8px;
}

.paytable-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.paytable-box li {
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--shadow-card);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

footer {
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    border-top: 4px solid var(--color-secondary);
}

footer p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #d1d5db;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .site-header nav {
        display: none;
    }
    .site-header .container {
        justify-content: center;
    }
    .content-section h2 {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }
}