/* Poker Online - Estilos Únicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #6B1C23;
    --gold: #D4AF37;
    --dark: #1A0F0F;
    --cream: #F5EFE6;
    --accent: #8B2635;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
}

.main-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark) 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(107, 28, 35, 0.3);
}

.navigation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo-section img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941E 100%);
    color: var(--dark);
    padding: 0.85rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.hero-banner {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941E 100%);
    color: var(--dark);
    padding: 1.2rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section, .features-section, .games-section, .payment-section, 
.license-section, .support-section, .responsible-section, .faq-section,
.reviews-section, .about-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    color: var(--burgundy);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.intro-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2C1810;
}

.intro-content p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.intro-content h3 {
    font-size: 1.9rem;
    color: var(--burgundy);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 28, 35, 0.15);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 28, 35, 0.25);
}

.game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-info {
    padding: 2rem;
}

.game-title {
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.game-description {
    font-size: 1.05rem;
    color: #4A3428;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-game {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--accent) 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-game:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(107, 28, 35, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(107, 28, 35, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-text {
    font-size: 1.05rem;
    color: #4A3428;
    line-height: 1.7;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(107, 28, 35, 0.1);
}

.payment-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.payment-name {
    font-size: 1.3rem;
    color: var(--burgundy);
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 4px 15px rgba(107, 28, 35, 0.1);
}

.faq-question {
    font-size: 1.4rem;
    color: var(--burgundy);
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1.1rem;
    color: #4A3428;
    line-height: 1.8;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(107, 28, 35, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: 1.2rem;
    color: var(--burgundy);
    font-weight: 700;
}

.review-rating {
    color: var(--gold);
    font-size: 1.1rem;
}

.reviewer-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.05rem;
    color: #4A3428;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
    text-align: right;
}

.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 6px 20px rgba(107, 28, 35, 0.15);
}

.main-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--burgundy) 100%);
    color: var(--cream);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-section h4 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.95rem;
}

.age-restriction {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid, .features-grid, .payment-grid, .reviews-container {
        grid-template-columns: 1fr;
    }
}
