/* pg 777 Casino - Estilos Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales - Deep Purple + Gold */
    --primary-purple: #4A148C;
    --secondary-purple: #6A1B9A;
    --light-purple: #9C27B0;
    --dark-purple: #311B92;
    --gold: #FFD700;
    --light-gold: #FFECB3;
    --dark-gold: #FFA000;
    
    /* Colores de fondo */
    --bg-dark: #1A0033;
    --bg-card: #2D1B4E;
    --bg-overlay: rgba(26, 0, 51, 0.95);
    
    /* Colores de texto */
    --text-primary: #FFFFFF;
    --text-secondary: #E1BEE7;
    --text-muted: #B39DDB;
    
    /* Colores de acento */
    --accent-green: #00E676;
    --accent-red: #FF1744;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(255, 215, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 215, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(255, 215, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.4);
    
    /* Fuentes */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Header */
.header {
    background: linear-gradient(180deg, rgba(74, 20, 140, 0.95) 0%, rgba(45, 27, 78, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    width: 100px;
    height: auto;
    filter: drop-shadow(var(--shadow-glow));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--dark-purple);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.85) 0%, rgba(26, 0, 51, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    color: var(--text-secondary);
    font-weight: 400;
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--dark-purple);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    border: 3px solid var(--gold);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.6);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.intro-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* Games Section */
.games-section {
    background: var(--bg-card);
}

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

.game-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid var(--light-purple);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    border-color: var(--gold);
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.game-card-content {
    padding: 25px;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--gold);
}

.game-card-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-purple);
    transform: translateX(5px);
}

/* Promo Section */
.promo-section {
    background: var(--bg-dark);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.promo-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
}

.promo-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.payment-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

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

.payment-method {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-purple);
    transition: var(--transition);
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.payment-method img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.payment-method h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gold);
}

.payment-method p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.payment-info {
    background: var(--dark-purple);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.payment-info h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--gold);
}

.payment-info ul {
    list-style: none;
}

.payment-info li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-secondary);
    padding-left: 25px;
    position: relative;
}

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

.payment-info strong {
    color: var(--gold);
}

/* License Section */
.license-section {
    background: var(--bg-dark);
}

.license-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.license-badge img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-glow);
}

.license-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold);
}

.license-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.license-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.license-text li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);
    padding-left: 30px;
    position: relative;
}

.license-text li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

.license-text strong {
    color: var(--gold);
    font-weight: 600;
}

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

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-purple);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.support-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gold);
}

.support-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsible Section */
.responsible-section {
    background: var(--bg-dark);
}

.responsible-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

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

.tool-item {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-purple);
    transition: var(--transition);
}

.tool-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.tool-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--gold);
}

.tool-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tool-item a {
    color: var(--gold);
    text-decoration: underline;
}

.age-restriction {
    background: var(--accent-red);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.age-restriction p {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

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

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 35px 0 20px;
    color: var(--gold);
}

.about-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.about-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);
    padding-left: 30px;
    position: relative;
}

.about-content li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.about-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-purple);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--light-gold);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

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

.review-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-purple);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

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

.reviewer-info strong {
    display: block;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.review-rating {
    font-size: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--bg-dark) 100%);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold);
}

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

.footer-col h3,
.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 28px;
}

.footer-col h4 {
    font-size: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

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

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-subtitle {
    margin-top: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    font-size: 24px;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-payment {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 15px;
}

.footer-payment h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-license {
    text-align: center;
    margin-bottom: 30px;
}

.footer-license img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-license p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-responsible {
    text-align: center;
    padding: 25px;
    background: var(--dark-purple);
    border-radius: 15px;
    margin-bottom: 30px;
}

.footer-responsible p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-responsible a {
    color: var(--gold);
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-list a {
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
        display: block;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .games-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .license-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .license-badge {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-hero {
        font-size: 18px;
        padding: 15px 35px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .promo-grid,
    .payment-grid,
    .support-grid,
    .responsible-tools {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
