:root {
    --primary-color: #A52A2A; /* Rojo Roma */
    --secondary-color: #D4AF37; /* Dorado Imperial */
    --background-color: #1E1E1E; /* Negro piedra */
    --text-color: #F5F5F5; /* Blanco mármol */
    --accent-color: #FFD675; /* Amarillo Pergamino */
    --metal-color: #5A5A5A; /* Gris Hierro */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lora', 'Crimson Text', serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(30, 30, 30, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--secondary-color);
    height: auto;
    min-height: 56px;
    top: 0;
    left: 0;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--secondary-color);
}

.nav-logo {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.logo-text {
    color: var(--secondary-color); /* Mismo color que el logo */
    font-weight: bold;
    font-size: 1.8rem; /* Tamaño reducido */
    margin-left: 0.5rem; /* Espacio entre logo y texto */
    vertical-align: middle; /* Alinear verticalmente con el logo */
    line-height: 1; /* Ajustar altura de línea para que no ocupe espacio extra */
}

.language-selector {
    float: right;
}

.language-selector button {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector button.active {
    background: var(--secondary-color);
    color: var(--background-color);
}

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

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

.hero-content {
    z-index: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: -2rem;
}

.newsletter-signup {
    margin-top: 2rem;
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-signup p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

#signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
}

#signup-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
}

#signup-form button {
    width: 100%;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--text-color);
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#signup-form button:hover {
    background: #8B2323;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .nav-left {
        order: 1;
        flex: 0 0 auto;
        width: auto;
    }

    .nav-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .nav-center {
        order: 3;
        flex: 0 0 100%;
        flex-direction: row;
        overflow-x: auto;
        justify-content: center;
        padding: 0.5rem 0;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-center::-webkit-scrollbar {
        display: none;
    }

    .nav-center a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    .language-selector button {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-logo img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    nav {
        height: 60px;
        flex-wrap: wrap;
        padding: 0.5rem;
        gap: 0.5rem;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        background: rgba(30, 30, 30, 0.95);
        border-bottom: 1px solid var(--secondary-color);
    }

    .nav-left {
        order: 1;
        flex: 0 0 auto;
        width: auto;
    }

    .nav-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .nav-center {
        order: 3;
        flex: 0 0 100%;
        flex-direction: row;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;
        gap: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-center a {
        font-size: 0.8rem;
        padding: 0.25rem 0.4rem;
        white-space: nowrap;
    }

    .game-description {
        padding: 1.2rem 1.2rem;
        margin: 1rem auto;
        width: 90%;
    }

    .game-description p {
        font-size: 1.15rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }

    .reward-card {
        min-width: 180px;
        height: auto;
        min-height: 340px;
        max-height: 380px;
        padding: 1.2rem;
    }

    .reward-title {
        height: auto;
        min-height: 3.5rem;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .social-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 2rem auto;
        max-width: 500px;
    }

    .social-links a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        margin: 0;
    }

    #hero-video {
        object-position: 15% center;
    }
    
    .rewards-grid {
        padding: 0.75rem;
    }
    
    .reward-card {
        min-width: 180px;
        min-height: 340px;
        max-height: 380px;
        padding: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    .coming-soon-banner {
        font-size: 1rem;
        padding: 0.6rem 0.75rem;
    }

    .trailer {
        padding: 2rem 1rem;
    }

    .kickstarter-note {
        margin: 1.5rem auto;
        padding: 1rem;
        font-size: 1rem;
    }

    .spam-note {
        font-size: 0.85rem;
    }
    
    .subscribe-info {
        font-size: 1rem;
        margin: 0.7rem 0;
    }

    .arrow-down {
        font-size: 1.2rem;
        margin: 0.1rem 0 0.2rem;
    }
    
    .social {
        padding: 1.5rem 1rem;
    }
    
    footer {
        padding: 0.75rem;
    }
    
    .hero-content .cta-primary {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .nav-left {
        order: 1;
        flex: 0 0 auto;
        width: auto;
    }

    .nav-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .nav-center {
        order: 3;
        flex: 0 0 100%;
        flex-direction: row;
        overflow-x: auto;
        justify-content: center;
        padding: 0.5rem 0;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-center::-webkit-scrollbar {
        display: none;
    }

    .nav-center a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .language-selector button {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-logo img {
        width: 32px;
        height: 32px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto;
    }

    .social-links a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        margin: 0;
    }

    #hero-video {
        object-position: 15% center;
    }

    .hero {
        height: 80vh;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem !important;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .subscribe-info {
        margin: 0.5rem 0;
    }

    .hero-content .cta-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .game-description {
        padding: 1.2rem 1.2rem;
        margin: 1rem auto;
        width: 90%;
    }

    .game-description p {
        font-size: 1.15rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }

    .trailer {
        padding: 1.5rem 1rem;
    }

    .rewards {
        padding: 2rem 0;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .social-links a {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .social-links img {
        width: 20px;
        height: 20px;
    }

    .rewards-grid {
        padding: 0.75rem;
    }

    .reward-card {
        min-width: 180px;
        min-height: 340px;
        max-height: 380px;
        padding: 1rem;
    }

    .reward-price {
        font-size: 1.7rem;
    }

    .reward-title {
        font-size: 1.2rem;
        height: auto;
        min-height: 4rem;
    }

    .reward-features {
        font-size: 0.95rem;
    }

    .newsletter-signup {
        width: 95%;
    }

    #signup-form input[type="email"] {
        padding: 0.6rem;
    }

    #signup-form button {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }

    .nav-center {
        gap: 1rem;
    }
    
    header {
        padding-top: 60px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    html {
        scroll-padding-top: 50px;
    }
    
    .faq {
        padding: 2rem 1rem !important;
    }
    
    .faq-container {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .faq-question {
        font-size: 1.3rem !important;
        padding: 0.6rem 3rem 0.6rem 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .faq-answer {
        font-size: 1.22rem !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        max-height: 0 !important;
    }
    
    .arrow-down {
        margin: 0.1rem 0 0.2rem;
    }

    .section-header {
        margin-bottom: 0.8rem !important;
    }
    
    .game-description {
        margin: 0.3rem auto !important;
        padding: 0.7rem !important;
    }
    
    .features {
        padding: 0.7rem !important;
    }
    
    .key-features {
        padding: 0.7rem !important;
        gap: 0.7rem !important;
    }
    
    .feature-card {
        padding: 0.7rem !important;
    }
    
    .trailer {
        padding: 0.7rem !important;
    }
    
    .faq-container {
        gap: 0.7rem !important;
        margin-top: 0.8rem !important;
    }
    
    .faq-item {
        padding: 0 !important;
    }
    
    .faq-question {
        padding: 0.7rem 2.5rem 0.7rem 0.6rem !important;
    }
    
    .faq-answer {
        padding: 0 0.6rem 0.7rem 0.6rem !important;
    }
    
    .newsletter {
        padding: 1rem 0.7rem !important;
        margin-top: 0.7rem !important;
    }
    
    .countdown {
        padding: 1rem 0.7rem !important;
    }
    
    .social {
        padding: 1rem 0.7rem !important;
    }
    
    .social-links {
        margin-top: 0.7rem !important;
    }
    
    .hero-content {
        padding: 0.7rem !important;
    }
    
    h1 {
        margin-bottom: 0.3rem !important;
    }
    
    .subtitle {
        margin-bottom: 0.7rem !important;
    }
    
    .hero-buttons {
        margin-top: 0.7rem !important;
    }

    .section-header h2 {
        font-size: 1.7rem !important;
    }

    .section-header h2::after {
        bottom: -5px !important;
        height: 2px !important;
    }

    /* Reducir espaciado entre el título de FAQ y lo de arriba */
    .faq {
        padding-top: 0.2rem !important;
        margin-top: -0.5rem !important;
    }
    
    .faq .section-header {
        margin-bottom: 0.2rem !important;
    }
    
    /* Reducir el tamaño vertical de las preguntas */
    .faq-question {
        font-size: 1.3rem !important;
        padding: 0.6rem 3rem 0.6rem 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .faq-item {
        margin-bottom: 0.4rem !important;
    }
    
    /* Asegurar que las respuestas estén completamente ocultas hasta hacer clic */
    .faq-answer {
        font-size: 1.22rem !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        max-height: 0 !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.5rem 0.8rem 0.8rem 0.8rem !important;
        max-height: 500px !important;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.25rem;
        min-height: 40px;
    }

    .nav-center a {
        font-size: 0.75rem;
        padding: 0.25rem 0.35rem;
    }

    .social-icons {
        gap: 0.25rem;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .language-selector button {
        padding: 0.25rem 0.35rem;
        font-size: 0.75rem;
    }

    .nav-logo img {
        width: 28px;
        height: 28px;
    }

    .reward-card {
        min-width: 170px;
        min-height: 320px;
        max-height: 360px;
    }

    .reward-features {
        font-size: 0.95rem;
    }

    .social-links {
        max-width: 300px;
    }

    .game-description {
        padding: 1rem 1rem;
        margin: 0.8rem auto;
        width: 92%;
    }

    .subscribe-info {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .arrow-down {
        margin: 0.05rem 0 0.1rem;
        font-size: 1rem;
    }
    
    .social {
        padding: 1rem 0.5rem;
    }
    
    footer {
        padding: 0.5rem;
    }

    .hero {
        height: 70vh;
    }

    h1 {
        font-size: 2rem;
    }

    .subscribe-info {
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 0.5rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .social h2 {
        font-size: 1.8rem;
    }

    .game-description p {
        font-size: 1.05rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.1rem !important;
    }

    .nav-center a {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }

    .kickstarter-note {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
    }

    .social-links a {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .social-links img {
        width: 18px;
        height: 18px;
    }

    .reward-card {
        min-width: 170px;
        min-height: 320px;
        max-height: 360px;
    }

    .reward-price {
        font-size: 1.44rem;
    }

    .reward-title {
        font-size: 1.12rem;
    }

    .reward-features {
        font-size: 0.8rem;
    }

    .nav-center {
        padding: 0.3rem 0;
        gap: 0.6rem;
    }
    
    header {
        padding-top: 60px;
    }

    html {
        scroll-padding-top: 45px;
    }
    
    .faq {
        padding: 1.5rem 0.8rem !important;
    }
    
    .faq-container {
        gap: 0.8rem !important;
        margin-top: 1rem !important;
    }
    
    .faq-question {
        font-size: 1.15rem !important;
        padding: 0.5rem 2.5rem 0.5rem 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .faq-question::after {
        right: 0.7rem !important;
        font-size: 1.1rem !important;
    }
    
    .faq-answer {
        font-size: 1.08rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        max-height: 0 !important;
    }

    .faq-container {
        width: 95%;
        margin: 2rem auto;
    }

    .hero-content .cta-primary {
        margin-top: 0;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .section-header {
        margin-bottom: 0.5rem !important;
    }
    
    .game-description {
        margin: 0.2rem auto !important;
        padding: 0.5rem !important;
    }
    
    .features {
        padding: 0.5rem !important;
    }
    
    .key-features {
        padding: 0.5rem !important;
        gap: 0.5rem !important;
    }
    
    .feature-card {
        padding: 0.5rem !important;
    }
    
    .trailer {
        padding: 0.5rem !important;
    }
    
    .faq {
        padding: 0.8rem 0.5rem !important;
    }
    
    .faq-container {
        gap: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .faq-question {
        padding: 0.5rem 2rem 0.5rem 0.5rem !important;
    }
    
    .faq-answer {
        padding: 0 0.5rem 0.5rem 0.5rem !important;
    }
    
    .newsletter {
        padding: 0.8rem 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .countdown {
        padding: 0.8rem 0.5rem !important;
    }
    
    .social {
        padding: 0.8rem 0.5rem !important;
    }
    
    .social-links {
        margin-top: 0.5rem !important;
    }
    
    .hero-content {
        padding: 0.5rem !important;
    }
    
    h1 {
        margin-bottom: 0.2rem !important;
    }
    
    .subtitle {
        margin-bottom: 0.5rem !important;
    }
    
    .hero-buttons {
        margin-top: 0.5rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .section-header h2::after {
        bottom: -4px !important;
        height: 2px !important;
        width: 80px !important;
    }

    /* Reducir espaciado entre el título de FAQ y lo de arriba */
    .faq {
        padding-top: 0.1rem !important;
        margin-top: -0.7rem !important;
    }
    
    .faq .section-header {
        margin-bottom: 0.1rem !important;
    }
    
    /* Reducir el tamaño vertical de las preguntas */
    .faq-question {
        font-size: 1.15rem !important;
        padding: 0.5rem 2.5rem 0.5rem 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .faq-item {
        margin-bottom: 0.3rem !important;
    }
    
    /* Asegurar que las respuestas estén completamente ocultas hasta hacer clic */
    .faq-answer {
        font-size: 1.08rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        max-height: 0 !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.4rem 0.8rem 0.6rem 0.8rem !important;
        max-height: 500px !important;
    }
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--background-color);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-secondary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-alternative {
    background: var(--background-color);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #8B2323;
}

.cta-alternative:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.game-description {
    margin: 2rem auto;
    text-align: center;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Crimson Text', serif;
    width: 99%;
    max-width: 2000px;
}

.game-description p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 100%;
    padding: 0;
}

.game-description p:last-child {
    margin-bottom: 0;
}

.social {
    padding: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    background-color: rgba(30, 30, 30, 0.8);
}

.social-links a:hover {
    background-color: rgba(165, 42, 42, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Definir estilos unificados para todas las redes sociales */
.social-links a.discord,
.social-links a.youtube,
.social-links a.tiktok,
.social-links a.instagram,
.social-links a.facebook,
.social-links a.twitter {
    background-color: rgba(30, 30, 30, 0.8);
}

/* Estilos para los círculos de navegación */
.rewards-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .rewards-grid {
        padding: 0.75rem;
    }
    
    .reward-card {
        min-width: 180px;
        min-height: 340px;
        max-height: 380px;
        padding: 1rem;
    }
    
    .reward-price {
        font-size: 1.7rem;
    }

    .reward-title {
        font-size: 1.2rem;
        height: auto;
        min-height: 4rem;
    }

    .reward-features {
        font-size: 0.95rem;
    }

    .newsletter-signup {
        width: 95%;
    }

    #signup-form input[type="email"] {
        padding: 0.6rem;
    }

    #signup-form button {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }

    /* Ajustar la navegación para que quepa mejor */
    .nav-center {
        gap: 1rem;
    }
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.newsletter {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
}

.newsletter .newsletter-signup {
    margin: 0 auto;
}

main {
    padding-top: 2rem;
}

.scroll-section {
    text-align: center;
    padding: 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.scroll-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.scroll-button:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.countdown {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.faq {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.nav-center a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.input--hidden {
    display: none !important;
}

.sib-form-message-panel {
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 4px;
    max-width: 500px;
    display: none;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.sib-form-message-panel--active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#error-message {
    background-color: rgba(165, 42, 42, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

#success-message {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

#success-message .sib-icon {
    fill: #22c55e;
}

.sib-form-message-panel__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sib-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.coming-soon-banner {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 0.7rem 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.coming-soon-banner p {
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.4;
}

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

.trailer-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kickstarter-note {
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    max-width: 800px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.spam-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .coming-soon-banner {
        font-size: 1rem;
        padding: 0.6rem 0.75rem;
    }

    .trailer {
        padding: 2rem 1rem;
    }

    .kickstarter-note {
        margin: 1.5rem auto;
        padding: 1rem;
        font-size: 1rem;
    }

    .spam-note {
        font-size: 0.85rem;
    }
    
    .subscribe-info {
        font-size: 1rem;
        margin: 0.7rem 0;
    }

    .arrow-down {
        font-size: 1.2rem;
        margin: 0.3rem 0;
    }
    
    .social {
        padding: 1.5rem 1rem;
    }
    
    footer {
        padding: 0.75rem;
    }
    
    .hero-content .cta-primary {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

header {
    padding-top: 70px;
}

.subscribe-info {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.arrow-down {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0.1rem 0 0.2rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Añadir estilos para las nuevas redes sociales */

/* Ajustar diseño para mostrar más redes sociales */
@media (max-width: 768px) {
    .social-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 2rem auto;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .subscribe-info {
        font-size: 1rem;
    }

    .arrow-down {
        font-size: 1.2rem;
    }
}

.hero-content .cta-primary {
    margin-top: 0.2rem;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    margin: 0;
}

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

footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
}

/* Reglas específicas para Chrome en Android */
@supports (-webkit-appearance:none) and (display:flow-root) {
    @media (max-width: 768px) {
        .hero-content {
            width: 100%;
            box-sizing: border-box;
        }
        
        .game-description {
            width: 90%;
            box-sizing: border-box;
            margin: 1rem auto;
        }
        
        .game-description p {
            font-size: 1.15rem !important;
            margin-bottom: 1.2rem !important;
            line-height: 1.5 !important;
        }
        
        .trailer-container {
            height: 0;
            padding-bottom: 56.25%;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            box-sizing: border-box;
        }
        
        .faq-question {
            position: relative;
            padding-right: 3rem;
        }
        
        .faq-question::after {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    
    @media (max-width: 480px) {
        .game-description p {
            font-size: 1.05rem !important;
            line-height: 1.4 !important;
            margin-bottom: 1.1rem !important;
        }
    }
}

/* Mejoras específicas para la barra de navegación en móviles */
@media only screen and (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        padding: 0.5rem;
        gap: 0.5rem;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-sizing: border-box;
    }
    
    .nav-left {
        order: 1;
        flex: 0 0 auto;
        width: auto;
    }
    
    .nav-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    
    .nav-center {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        box-sizing: border-box;
        position: relative;
    }
    
    .nav-center::-webkit-scrollbar {
        display: none;
    }
    
    .nav-center:after, .nav-center:before {
        display: none;
    }
    
    header {
        padding-top: 60px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding: 1rem;
    }

    .coming-soon-banner {
        margin-top: 0;
    }
    
    .game-description p {
        font-size: 1.15rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .game-description p {
        font-size: 1.05rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.1rem !important;
    }
}

/* RESET FINAL PARA MÓVILES - NO MODIFICAR */
/* Estos estilos tienen mayor especificidad y se aplicarán sin importar el orden */
@media (max-width: 768px) {
    body .game-description p {
        font-size: 1.15rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }
    
    /* Anular cualquier otra regla posterior */
    body .game-description p, 
    body .game-description p:first-child,
    body .game-description p:last-child {
        font-size: 1.15rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    body .game-description p {
        font-size: 1.05rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.1rem !important;
    }
    
    /* Anular cualquier otra regla posterior */
    body .game-description p, 
    body .game-description p:first-child,
    body .game-description p:last-child {
        font-size: 1.05rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.1rem !important;
    }
}

/* Reglas específicas para Chrome en Android con máxima especificidad */
@supports (-webkit-appearance:none) and (display:flow-root) {
    @media (max-width: 768px) {
        html body .game-description p {
            font-size: 1.15rem !important;
            margin-bottom: 1.2rem !important;
            line-height: 1.5 !important;
        }
    }
    
    @media (max-width: 480px) {
        html body .game-description p {
            font-size: 1.05rem !important;
            line-height: 1.4 !important;
            margin-bottom: 1.1rem !important;
        }
    }
}

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

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Reglas específicas para navegadores problemáticos como Mi Browser de Xiaomi */
@supports not (-webkit-overflow-scrolling: auto) {
    /* Mantener solo las reglas para FAQ, eliminar las de video */
    
    /* Ajustes para que el despliegue del FAQ funcione en navegadores alternativos */
    .faq-question {
        -webkit-tap-highlight-color: transparent !important;
        cursor: pointer !important;
        user-select: none !important;
        -webkit-user-select: none !important;
    }
    
    .faq-item.active .faq-answer {
        display: block !important;
        height: auto !important;
        max-height: 500px !important;
        overflow: visible !important;
        padding: 0.4rem 0.8rem 0.6rem 0.8rem !important;
    }
    
    .faq-answer {
        display: none !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
    }
    
    /* Asegurar que el símbolo + se muestre correctamente */
    .faq-question::after {
        content: '+' !important;
        display: block !important;
        position: absolute !important;
        right: 1rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 1.5rem !important;
        font-family: Arial, sans-serif !important;
    }
    
    .faq-item.active .faq-question::after {
        content: '−' !important; /* Usar el signo menos en lugar de rotar el más */
    }
}

.hero-fallback-image {
    display: none; /* Oculto por defecto */
}

/* Solo se mostrará cuando JavaScript lo añada para navegadores problemáticos */
.hero-fallback-image.active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-image: url("assets/hero-fallback-tablet.jpg");
}

/* Versión móvil para pantallas pequeñas */
@media (max-width: 480px) {
    .hero-fallback-image.active {
        background-image: url("assets/hero-fallback-mobile.jpg") !important;
    }
}

/* Menú hamburguesa y menú móvil adicional */
body.no-scroll {
    overflow: hidden;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 60px;
    right: 0;
    width: 250px;
    padding: 20px 0;
    z-index: 999;
    box-shadow: -5px 5px 10px rgba(0,0,0,0.3);
    border-left: 1px solid #f0ad4e;
    border-bottom: 1px solid #f0ad4e;
    border-bottom-left-radius: 8px;
}

.mobile-menu a {
    color: #f0ad4e;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.5em;
    padding: 15px 20px;
    width: 100%;
    text-align: right;
    border-bottom: 1px solid rgba(240, 173, 78, 0.2);
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover, .mobile-menu a.active {
    background-color: #f0ad4e;
    color: #1a1a1a;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    margin-right: 15px;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-center {
        display: none;
    }
    
    header {
        padding-top: 60px;
    }
    
    .coming-soon-banner {
        margin-top: 0;
    }
}

/* Estilos para la Encuesta Rápida */
.survey-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 640px; /* Ancho aumentado */
    max-width: 90%;
    background-color: rgba(45, 45, 45, 0.97); /* Un poco más oscuro que el nav */
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Por encima de otros elementos */
    font-family: 'Crimson Text', serif;
    overflow: hidden;
    display: flex; /* Usaremos flex para la estructura interna */
    flex-direction: column;
}

.survey-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(30, 30, 30, 0.8); /* Similar al nav */
    border-bottom: 1px solid var(--secondary-color);
}

.survey-header h3 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.survey-close-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}
.survey-close-btn:hover {
    color: var(--primary-color);
}

.survey-content {
    padding: 15px;
    max-height: calc(100vh - 150px); /* Evitar que sea demasiado alto en móviles */
    overflow-y: auto;
}

.survey-question {
    margin-bottom: 20px;
}

.survey-question label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.survey-note {
    font-size: 0.85rem;
    color: var(--text-color);
    font-style: italic;
}

/* Estilos para opciones de rating (botones 1-10) */
.survey-options-rating {
    display: flex;
    flex-wrap: nowrap; 
    gap: 5px; 
    justify-content: flex-start; /* Alinear botones a la izquierda */
    width: auto; 
    max-width: 100%; 
    overflow-x: auto; 
    padding-bottom: 5px; 
    /* margin: 0 auto; // Eliminado para que no se centre el contenedor si es estrecho */
}

.survey-rating-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--metal-color);
    color: var(--text-color);
    padding: 8px 0;
    width: 55px; /* Ancho aumentado a 55px */
    min-width: 55px; /* Ancho mínimo aumentado a 55px */
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    text-align: center;
}

.survey-rating-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.survey-rating-btn.selected {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--secondary-color);
    font-weight: bold;
}

/* Estilos para opciones de tiers de apoyo */
.survey-options-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 8px;
}

.survey-tier-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--metal-color);
    color: var(--text-color);
    padding: 10px 5px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    text-align: center;
}

.survey-tier-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.survey-tier-btn.selected {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--secondary-color);
    font-weight: bold;
}

/* Estilos para opciones de fuente de descubrimiento */
.survey-options-source {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
}

.survey-source-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--metal-color);
    color: var(--text-color);
    padding: 10px 5px; /* Consistent with survey-tier-btn */
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    text-align: center;
}

.survey-source-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.survey-source-btn.selected {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--secondary-color);
    font-weight: bold;
}

.survey-content textarea {
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--metal-color);
    color: var(--text-color);
    border-radius: 4px;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 60px;
}

.survey-content textarea::placeholder {
    color: #bbb;
    font-style: italic;
}

.survey-submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.survey-submit-btn:hover {
    background-color: #8B2323; /* Rojo Roma más oscuro */
}

/* Ajustes para móviles */
@media (max-width: 480px) {
    .survey-popup {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    .survey-header h3 {
        font-size: 1.1rem;
    }
    .survey-question label {
        font-size: 1rem;
    }
    .survey-rating-btn, .survey-tier-btn, .survey-source-btn {
        font-size: 0.8rem;
        padding: 8px 3px;
    }
    .survey-options-rating { /* Estilos específicos para los botones de rating en móvil */
        flex-wrap: wrap; 
        justify-content: flex-start; 
        width: 295px; /* Ancho para 5 botones de 55px + 4 gaps de 5px = 295px */
        margin: 0; 
        overflow-x: visible; 
        padding-bottom: 0; 
    }
    .survey-rating-btn { /* El ancho ya se define arriba, pero confirmamos para móvil */
        width: 55px; 
        min-width: 55px;
    }
    .survey-options-source {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); /* Ajustar para móviles */
    }
}

/* Estilos para el contador de suscriptores en la sección Hero (usando ID para mayor especificidad) */
#hero-subscriber-counter {
    margin-top: 2.5rem; /* Aumentar más el espacio superior */
    font-size: 1.4rem; /* Hacer la frase base aún más grande */
    color: var(--accent-color); /* Amarillo pergamino */
}

#hero-subscriber-counter strong {
    font-weight: 900; /* Máxima negrita */
    color: var(--secondary-color); /* Dorado imperial */
    font-size: 1.6em; /* Hacer el número aún más grande (relativo al 1.4rem) */
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.7); /* Añadir un brillo dorado */
    display: inline-block; /* Para que acepte algunos efectos si es necesario */
    margin: 0 0.2em; /* Pequeño espacio alrededor del número */
}

/* Media Query para responsive de la navegación */
@media (max-width: 1400px) {
    .nav-center {
        display: none; /* Ocultar enlaces centrales en móvil */
    }
    .nav-left {
        flex-basis: auto; /* Permitir que el logo tome el espacio necesario */
    }
    .nav-right {
        flex-basis: auto; /* Permitir que el menú hamburguesa tome el espacio necesario */
        justify-content: flex-end; /* Asegurar que el menú hamburguesa esté a la derecha */
    }
    .hamburger-menu {
        display: flex; /* Mostrar el menú hamburguesa en móvil */
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 60px;
        right: 0; /* Alinear a la derecha */
        width: 250px; /* Ancho fijo para el menú desplegable */
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px 0;
        z-index: 999;
        box-shadow: -5px 5px 10px rgba(0,0,0,0.3); /* Sombra a la izquierda */
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a {
        color: #f0ad4e;
        text-decoration: none;
        font-family: 'Cinzel', serif;
        font-size: 1.2em;
        padding: 15px 20px;
        text-align: right; /* Alinear texto a la derecha */
        border-bottom: 1px solid rgba(240, 173, 78, 0.2);
        transition: background-color 0.3s, color 0.3s;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover, .mobile-menu a.active {
        background-color: #f0ad4e;
        color: #1a1a1a;
    }
}

/* Base styles for the founder popup */
.founder-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.founder-content {
    background-color: #1a1a1a;
    border: 2px solid #ffcc00;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
    animation: fadeInScale 0.3s ease-out;
    color: #f0f0f0;
    font-family: 'Crimson Text', serif;
    overflow-y: auto; /* Para pantallas pequeñas */
    max-height: 90vh; /* Para pantallas pequeñas */
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.founder-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: #ffcc00;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
}

.founder-close-btn:hover {
    color: #fff;
}

.founder-icon {
    font-size: 3em;
    margin-bottom: 15px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.founder-content h3 {
    font-family: 'Cinzel', serif;
    color: #ffcc00;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

.founder-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.founder-content ul li {
    background-color: #2b2b2b;
    border-left: 3px solid #ffcc00;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.2);
}

.founder-warning {
    color: #ff4500;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.05em;
}

.founder-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcc00;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.founder-cta:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.founder-cta .button-icon {
    font-size: 1.5em;
    line-height: 1;
}

.founder-footer {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 30px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-content {
        padding: 30px 20px;
        width: 95%;
    }

    .founder-content h3 {
        font-size: 1.8em;
    }

    .founder-cta {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .founder-content ul {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .founder-content {
        padding: 25px 15px;
    }

    .founder-content h3 {
        font-size: 1.5em;
    }

    .founder-icon {
        font-size: 2.5em;
    }

    .founder-cta {
        font-size: 1em;
        padding: 10px 20px;
    }
} 