/* Bono Casino Sin Deposito - CSS Styles */
/* Color Scheme: Burgundy (#8B1538) + Gold (#D4AF37) + Cream (#F5E6D3) */

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

:root {
    --burgundy-primary: #8B1538;
    --burgundy-dark: #6B0F2A;
    --burgundy-light: #A5244A;
    --gold-primary: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #E8C547;
    --cream: #F5E6D3;
    --cream-dark: #E8D4BC;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-light: #F8F8F8;
    --gray-medium: #CCCCCC;
    --shadow: rgba(139, 21, 56, 0.15);
}

body {
    font-family: 'Merriweather', 'Georgia', serif;
    line-height: 1.7;
    color: var(--black);
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-primary) 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.site-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

nav ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold-light);
}

nav ul li a:hover::after {
    width: 80%;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--burgundy-dark);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--gold-primary);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--gold-primary);
    color: var(--burgundy-dark);
    border: none;
    font-size: 1.8rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--gold-light);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.hero-content h1 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    color: var(--burgundy-primary);
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(139, 21, 56, 0.1);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--burgundy-light);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 5px solid var(--gold-primary);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    color: var(--burgundy-primary);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy-primary) 0%, var(--gold-primary) 100%);
    border-radius: 2px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.game-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--cream-dark);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.25);
    border-color: var(--gold-primary);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-card h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--burgundy-primary);
    padding: 20px 20px 10px;
    font-weight: 700;
}

.game-card p {
    padding: 0 20px 20px;
    color: var(--black);
    font-size: 1rem;
}

.game-button {
    display: block;
    background: linear-gradient(135deg, var(--burgundy-primary) 0%, var(--burgundy-light) 100%);
    color: var(--gold-light);
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-top: 2px solid var(--gold-primary);
}

.game-button:hover {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-primary) 100%);
    color: var(--gold-primary);
}

/* Content Section */
.content-section {
    background: var(--white);
    padding: 80px 0;
}

.content-section h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.2rem;
    color: var(--burgundy-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.content-section h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--burgundy-light);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--cream-dark);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(139, 21, 56, 0.25);
    border-color: var(--gold-primary);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
}

.feature-card h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--burgundy-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
    border: 2px solid var(--cream-dark);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, var(--burgundy-primary) 0%, var(--burgundy-light) 100%);
    color: var(--gold-light);
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

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

.faq-question:hover {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-primary) 100%);
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

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

.faq-answer p {
    padding: 25px;
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-primary) 100%);
    color: var(--cream);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--burgundy-light);
    color: var(--cream-dark);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 8px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .logo {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}
