:root {
    --primary-color: #EF3737; /* Pin Up Red */
    --primary-hover: #D02B2B;
    --secondary-color: #00A06D; /* Green for success/money */
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    text-align: center; /* Center align for mobile responsiveness */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Placeholder casino bg */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 15px;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(239, 55, 55, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 55, 55, 0.6);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: #008c5e;
    transform: translateY(-2px);
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 55, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(239, 55, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 55, 55, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.bonus-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-tag.new { background-color: #3498db; }
.bonus-tag.exclusive { background-color: #9b59b6; }

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.bonus-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bonus-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* SEO Text, About, FAQ */
.seo-section, .about-section, .faq-section {
    padding: 60px 0;
    background-color: #161616;
}

.seo-section h2, .about-section h2, .faq-section h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
}

.seo-section h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.seo-section p, .about-section p, .faq-section p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.seo-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

.seo-section li {
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 25px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

footer p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

footer .warning {
    font-size: 0.7rem;
    color: #444;
    border: 1px solid #333;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }

    nav {
        display: none; /* Simplify for MVP, could add burger menu later */
    }
}
