/* 16bet - Royal Night Theme */
:root {
    --primary-color: #2E004E; /* Deep Purple */
    --secondary-color: #FFD700; /* Gold */
    --accent-color: #4B0082; /* Indigo */
    --text-light: #F5F5F5;
    --text-dark: #1A1A1A;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --success: #00C851;
    --danger: #ff4444;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), #FFA500);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Header - Non-sticky as requested */
header {
    background-color: var(--primary-color);
    padding: 15px 0;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
    z-index: 100;
}

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

.logo img {
    height: 60px;
}

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

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Grid */
.games-section {
    padding: 60px 0;
}

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

.game-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.game-card:hover {
    transform: scale(1.03);
    border-color: var(--secondary-color);
}

.game-info {
    padding: 15px;
    text-align: center;
}

/* Content Modules */
.module-section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

.module-section:nth-child(even) {
    background-color: #151515;
}

.content-block {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

/* Payment Table */
.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--bg-card);
}

.payment-table th, .payment-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.payment-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-card);
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px;
    display: none;
    background: #121212;
    border-top: 1px solid #333;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 3px solid var(--secondary-color);
}

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

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.license-badge {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simple mobile menu handling for now */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 20px;
    }
}
