:root {
    --primary-dark: #0c1445;
    --primary-medium: #1a237e;
    --secondary-gold: #ffd700;
    --secondary-gold-light: #ffea00;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --accent-teal: #00b8d4;
    --gradient-dark: linear-gradient(135deg, #0c1445 0%, #1a237e 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff9d00 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: var(--gradient-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.license-banner {
    background-color: var(--primary-medium);
    padding: 15px 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.license-banner a {
    color: var(--secondary-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.license-banner a:hover {
    color: var(--secondary-gold-light);
    text-decoration: underline;
}

.logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 56px;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-gold);
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-gold);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-gold);
}

.btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    background-image: url('img/background.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 20, 69, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Main Content */
main {
    padding: 60px 0;
}

section {
    margin-bottom: 60px;
}

section h2 {
    color: var(--secondary-gold);
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.introduction {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 60px;
}

.introduction p {
    margin-bottom: 20px;
    padding: 0 20px;
}

/* Bonuses Section */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-table caption {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-gold);
}

.bonus-table th {
    background-color: var(--primary-medium);
    color: var(--secondary-gold);
    text-align: left;
    font-weight: 600;
    padding: 15px;
}

.bonus-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table tbody tr {
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s;
}

.bonus-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Payment Methods */
.payment-methods ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.payment-methods li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.payment-methods li:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.payment-methods li::before {
    content: '•';
    color: var(--secondary-gold);
    font-size: 20px;
    margin-right: 10px;
}

/* Game Selection */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.game-category {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.game-category img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-category-content {
    padding: 20px;
}

.game-category h3 {
    color: var(--secondary-gold);
    margin-bottom: 10px;
    font-size: 22px;
}

/* Live Dealer */
.live-dealer-features {
    list-style-position: inside;
    margin-top: 20px;
}

.live-dealer-features li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.live-dealer-features strong {
    color: var(--secondary-gold);
}

/* Responsible Gambling */
.responsible-gambling {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-teal);
}

/* FAQ Section */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--secondary-gold);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: var(--primary-medium);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    color: var(--secondary-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-nav-container {
        flex-direction: column;
        gap: 5px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    section h2 {
        font-size: 28px;
    }

    .bonus-table {
        display: block;
        overflow-x: auto;
    }

    .payment-methods ul,
    .game-categories {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul.active {
        display: flex;
    }
}
