/* Casino Bingo Online V4 - Mexican Luxury Theme */
:root {
    --primary-green: #004d40; /* Dark Green */
    --secondary-gold: #ffd700; /* Gold */
    --accent-red: #d32f2f; /* Mexican Red */
    --text-light: #f5f5f5;
    --bg-dark: #121212;
    --card-bg: #1e1e1e;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    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, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

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

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

/* Header */
header {
    background-color: rgba(0, 77, 64, 0.95);
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding: 15px 0;
}

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

.logo img {
    height: 70px;
    width: auto;
}

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

nav a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

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

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-login:hover {
    background-color: var(--secondary-gold);
    color: var(--primary-green);
}

.btn-register {
    background-color: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
}

.btn-register:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-banner-v4.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid var(--secondary-gold);
}

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

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

.btn-hero {
    background-color: var(--secondary-gold);
    color: var(--primary-green);
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* Sections */
section {
    padding: 80px 0;
}

.bg-darker {
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--secondary-gold);
    margin: 15px auto 0;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: var(--secondary-gold);
}

.game-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img-wrapper img {
    transform: scale(1.1);
}

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

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 40px;
}

.payment-methods img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #aaa;
}

.footer-col ul li a:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
}

.license-badge {
    display: block;
    margin: 20px auto;
    width: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
