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

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a2e;
    --accent-color: #e94560;
    --text-color: #f0f0f0;
    --bg-dark: #0f0f1e;
    --bg-card: #16213e;
    --border-color: #2a2a4e;
    --success-color: #00d9a3;
    --warning-color: #ff6b6b;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
}

.container-header,
.container-main,
.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

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

.logo-section {
    flex-shrink: 0;
}

.logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.navigation-menu {
    flex-grow: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8941f 100%);
    color: var(--secondary-color);
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-block;
}

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

/* Hero Section */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 35px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c7375f 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
    display: inline-block;
}

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

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.section-intro {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #c0c0c0;
}

/* Sections */
.intro-section,
.games-section,
.promotions-section,
.payment-section,
.license-section,
.support-section,
.responsible-gaming-section,
.about-section,
.faq-section,
.reviews-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #d0d0d0;
    text-align: justify;
}

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

.game-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
}

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

.game-info {
    padding: 25px;
}

.game-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.game-description {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-game {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8941f 100%);
    color: var(--secondary-color);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-game:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Promotions */
.promotions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.promotion-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(233, 69, 96, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.promotion-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.03);
}

.promotion-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promotion-item p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Payment Section */
.payment-intro {
    font-size: 17px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #d0d0d0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--success-color);
    transform: translateY(-5px);
}

.payment-icon {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
    height: auto;
}

.payment-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.payment-description {
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-details {
    list-style: none;
    padding-left: 0;
}

.payment-details li {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.payment-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.payment-withdrawals {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 217, 163, 0.05);
    border-radius: 15px;
    border: 2px solid var(--success-color);
}

.subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 20px;
}

.withdrawal-times {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.withdrawal-times li {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.withdrawal-times li::before {
    content: '⏱';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.withdrawal-note {
    font-size: 15px;
    color: #c0c0c0;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--warning-color);
    border-radius: 5px;
}

/* License Section */
.license-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.license-badge {
    flex-shrink: 0;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.license-text {
    flex: 1;
    min-width: 300px;
}

.license-text p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Support Section */
.support-intro {
    font-size: 17px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #d0d0d0;
}

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

.support-channel {
    text-align: center;
    padding: 30px;
    background: var(--secondary-color);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.support-channel:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.support-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.support-channel-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.support-channel p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.6;
}

.support-faq-link {
    margin-top: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    text-align: center;
}

.support-faq-link p {
    font-size: 16px;
    color: #d0d0d0;
}

/* Responsible Gaming */
.responsible-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.responsible-icon {
    flex-shrink: 0;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.responsible-text {
    flex: 1;
    min-width: 300px;
}

.responsible-text p,
.responsible-text h3 {
    margin-bottom: 20px;
}

.responsible-text p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.7;
}

.responsible-tools,
.warning-signs,
.help-resources,
.values-list,
.why-choose-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.responsible-tools li,
.warning-signs li,
.help-resources li,
.values-list li,
.why-choose-list li {
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.responsible-tools li::before,
.help-resources li::before,
.values-list li::before,
.why-choose-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 20px;
}

.warning-signs li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.age-restriction {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 107, 107, 0.15);
    border: 3px solid var(--warning-color);
    border-radius: 10px;
}

.age-warning {
    font-size: 18px;
    color: var(--warning-color);
    text-align: center;
    font-weight: 700;
}

/* About Section */
.about-content p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* FAQ Section */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: var(--secondary-color);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-answer {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer h4 {
    font-size: 18px;
    color: var(--success-color);
    margin: 20px 0 10px;
}

.faq-answer ol,
.faq-answer ul {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.reviewer-location {
    font-size: 14px;
    color: #909090;
    display: block;
    margin-top: 5px;
}

.stars {
    font-size: 20px;
}

.review-content p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: #808080;
    font-style: italic;
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    border-top: 3px solid var(--primary-color);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.payment-icons,
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icons img,
.social-links img {
    transition: all 0.3s ease;
}

.payment-icons img:hover,
.social-links img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-license,
.footer-age-warning,
.footer-copyright {
    margin-bottom: 25px;
}

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

.footer-license p,
.footer-age-warning p,
.footer-copyright p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-age-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    max-width: 600px;
    margin: 25px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .games-grid,
    .payment-methods,
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .license-content,
    .responsible-content {
        flex-direction: column;
        text-align: center;
    }
    
    .license-badge,
    .responsible-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .container-header {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
}
