/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #c41e3a;
    --color-secondary: #8b0000;
    --color-accent: #ffd700;
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: var(--color-white);
}

h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
}

h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* Header y Navegación */
.main-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-secondary) 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo-section img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.6);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-light);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease;
}

.btn-hero {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transition: var(--transition);
    animation: fadeInUp 1.4s ease;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secciones */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Intro Section */
.intro-section {
    background-color: var(--color-light);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.game-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

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

.game-info {
    padding: 2rem;
}

.game-title {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.game-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-game {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-game:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
}

.bonus-section .section-title {
    color: var(--color-white);
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bonus-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bonus-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bonus-title {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.btn-bonus {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    transition: var(--transition);
}

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

/* Payment Section */
.payment-section {
    background-color: var(--color-light);
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.payment-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.payment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.payment-method {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.payment-method h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.payment-method ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.payment-method li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

/* License Section */
.license-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.license-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.license-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.license-text h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Support Section */
.support-section {
    background-color: var(--color-light);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.support-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.support-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.support-channel {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.support-channel h3 {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

/* Responsible Gaming */
.responsible-gaming {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: var(--color-white);
}

.responsible-gaming .section-title {
    color: var(--color-white);
}

.responsible-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.responsible-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.responsible-text h3 {
    color: var(--color-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.responsible-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.responsible-list,
.warning-signs,
.help-resources {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0 2rem;
}

.responsible-list li,
.warning-signs li,
.help-resources li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.help-resources a {
    color: var(--color-accent);
    text-decoration: underline;
}

.help-resources a:hover {
    color: var(--color-white);
}

.age-restriction {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 5px solid var(--color-accent);
}

.age-warning {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background-color: var(--color-light);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-content h3 {
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--color-primary);
}

.faq-question {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--color-light);
}

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

.review-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.reviewer-name {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.reviewer-location {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.review-rating {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.review-text {
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-title {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links li,
.footer-social li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-social a {
    color: var(--color-light);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-payments,
.footer-license,
.footer-age,
.footer-copyright {
    margin-bottom: 1.5rem;
}

.footer-license {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-license img {
    width: 80px;
    height: auto;
}

.age-restriction-footer {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.footer-copyright p {
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .bonus-content,
    .license-content,
    .support-content,
    .responsible-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .navigation-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .games-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
