* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --bg-black: #0a0a0a;
        --text-cream: #f5e6d3;
        --cyan-glow: #00d4ff;
        --cyan-dark: #0099cc;
        --dark-gray: #1a1a1a;
        --primary-bg: #0a0a0a;
        --secondary-bg: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --red-glow: #ff0000;
        --gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--bg-black);
        color: var(--text-cream);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Fondo con mapa de Europa y circuitos */
    .background-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        overflow: hidden;
    }

    .europe-map {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><path d="M400,200 Q450,180 500,200 T600,250 Q650,300 600,350 T500,400 Q450,380 400,350 T350,300 Q300,250 350,200" fill="none" stroke="%23003344" stroke-width="1" opacity="0.3"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.1;
    }

    /* Circuitos de fondo animados */
    .circuit-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .circuit-line {
        position: absolute;
        background: var(--cyan-glow);
        opacity: 0.1;
        box-shadow: 0 0 10px var(--cyan-glow);
    }

    .circuit-horizontal {
        height: 1px;
        width: 100px;
        animation: pulse-horizontal 4s infinite;
    }

    .circuit-vertical {
        width: 1px;
        height: 100px;
        animation: pulse-vertical 4s infinite;
    }

    .circuit-node {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--cyan-glow);
        border-radius: 50%;
        opacity: 0.3;
        animation: node-pulse 2s infinite;
    }
/* Sección de Reseñas */
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.average-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ffa500;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}

.total-reviews {
    color: #999;
    font-size: 1rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.review-header {
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--cyan-glow);
}

.verified-badge {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

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

.review-rating {
    margin-bottom: 20px;
}

.review-title {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.review-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.review-text p {
    margin-bottom: 15px;
}

.review-text p:last-child {
    margin-bottom: 0;
}

   
    @keyframes pulse-horizontal {
        0%, 100% { transform: scaleX(1); opacity: 0.1; }
        50% { transform: scaleX(1.5); opacity: 0.3; }
    }

    @keyframes pulse-vertical {
        0%, 100% { transform: scaleY(1); opacity: 0.1; }
        50% { transform: scaleY(1.5); opacity: 0.3; }
    }

    @keyframes node-pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.3;
            box-shadow: 0 0 10px var(--cyan-glow);
        }
        50% {
            transform: scale(1.5);
            opacity: 0.6;
            box-shadow: 0 0 20px var(--cyan-glow);
        }
    }

    /* Efecto de candado central */
    .lock-effect {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        z-index: -1;
        pointer-events: none;
    }

    .lock-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
        opacity: 0.2;
        animation: lock-pulse 3s infinite;
    }

    @keyframes lock-pulse {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.2;
        }
        50% {
            transform: translate(-50%, -50%) scale(1.3);
            opacity: 0.4;
        }
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid var(--cyan-dark);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: 'Bebas Neue', cursive;
        font-size: 2rem;
        letter-spacing: 2px;
        color: var(--text-cream);
    }

    .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    .nav-links a {
        color: var(--text-cream);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
    }

    .nav-links a:hover {
        color: var(--cyan-glow);
        text-shadow: 0 0 10px var(--cyan-glow);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.7) 70%);
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        padding: 0 20px;
        z-index: 10;
    }

    .book-cover {
        width: 300px;
        height: auto;
        margin-bottom: 40px;
        filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.3));
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    h1 {
        font-family: 'Bebas Neue', cursive;
        font-size: 5rem;
        letter-spacing: 5px;
        margin-bottom: 20px;
        text-transform: uppercase;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }

    .author {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .countdown-wrapper {
        margin: 40px 0;
    }

    .countdown-label {
        font-size: 1rem;
        opacity: 0.8;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .countdown {
        font-family: 'Courier New', monospace;
        font-size: 3rem;
        color: var(--cyan-glow);
        font-weight: bold;
        text-shadow: 0 0 20px var(--cyan-glow);
        background: rgba(0, 212, 255, 0.1);
        padding: 20px 40px;
        border-radius: 10px;
        display: inline-block;
        border: 1px solid var(--cyan-dark);
    }

    .tagline {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.8;
        font-style: italic;
    }

    .cta-button {
        display: inline-block;
        padding: 15px 50px;
        background: linear-gradient(45deg, var(--cyan-dark), var(--cyan-glow));
        color: var(--bg-black);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        overflow: hidden;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    }

    /* Sections */
    section {
        padding: 100px 20px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .section-title {
        font-family: 'Bebas Neue', cursive;
        font-size: 3rem;
        margin-bottom: 40px;
        text-align: center;
        color: var(--text-cream);
        letter-spacing: 3px;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: var(--cyan-glow);
        box-shadow: 0 0 10px var(--cyan-glow);
    }

    /* Synopsis */
    .synopsis {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 10px;
        padding: 50px;
        margin: 40px auto;
        max-width: 800px;
        position: relative;
        backdrop-filter: blur(5px);
    }

    .synopsis::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: linear-gradient(45deg, var(--cyan-glow), transparent, var(--cyan-glow));
        border-radius: 10px;
        opacity: 0.3;
        z-index: -1;
        animation: rotate-border 10s linear infinite;
    }

    @keyframes rotate-border {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }

    .synopsis p {
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .synopsis strong {
        color: var(--cyan-glow);
        font-weight: 600;
    }

    /* Characters */
    .characters-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .character-card {
        background: rgba(0, 30, 40, 0.6);
        border: 1px solid rgba(0, 255, 255, 0.2);
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .character-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 255, 255, 0.5);
        box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    }

    .character-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 250px;
        background: #000;
    }

    .character-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .character-card:hover .character-image {
        transform: scale(1.05);
    }

    .character-content {
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
    }

    /* Efecto de brillo en las imágenes */
    .character-image-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(0, 255, 255, 0.2) 50%,
            transparent 70%
        );
        transform: rotate(45deg) translateX(-100%);
        transition: transform 0.6s ease;
        z-index: 1;
    }

    .character-card:hover .character-image-wrapper::before {
        transform: rotate(45deg) translateX(100%);
    }

    /* Overlay de gradiente para mejorar legibilidad del texto */
    .character-image-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        pointer-events: none;
    }

    .character-name {
        font-family: 'Bebas Neue', cursive;
        font-size: 1.8rem;
        color: var(--cyan-glow);
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .character-role {
        color: rgba(0, 255, 255, 0.7);
        font-style: italic;
        margin-bottom: 15px;
        opacity: 0.7;
    }

    /* Buy Options */
    .buy-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .buy-card {
        background: rgba(26, 26, 26, 0.8);
        border: 2px solid rgba(0, 212, 255, 0.3);
        border-radius: 10px;
        padding: 40px;
        text-align: center;
        transition: all 0.3s;
        position: relative;
        backdrop-filter: blur(5px);
    }

    .buy-card:hover {
        border-color: var(--cyan-glow);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
        transform: translateY(-5px);
    }

    .price {
        font-family: 'Bebas Neue', cursive;
        font-size: 3rem;
        color: var(--cyan-glow);
        margin: 20px 0;
        text-shadow: 0 0 10px var(--cyan-glow);
    }

    /* ===== BANNER UNLIMITED ===== */
    .unlimited-banner {
        padding: 60px 20px;
        text-align: center;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 204, 0.05) 50%, transparent 100%);
        border-top: 1px solid rgba(0, 212, 255, 0.3);
        border-bottom: 1px solid rgba(0, 212, 255, 0.3);
        margin: 80px auto;
        width: 100%;
        max-width: 1200px;
        overflow: hidden;
        position: relative;
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
    }

    .unlimited-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .unlimited-title {
        font-family: 'Bebas Neue', cursive;
        font-size: 2.2rem;
        color: var(--cyan-glow);
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        margin: 0;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .unlimited-subtitle {
        font-size: 1.2rem;
        color: var(--text-cream);
        margin: 0;
        opacity: 0.9;
        font-weight: 500;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }

    .unlimited-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
        animation: unlimited-scan 4s infinite;
        z-index: 1;
    }

    .unlimited-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .unlimited-banner a {
        display: inline-block;
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
        text-decoration: none;
        border-radius: 15px;
        overflow: hidden;
        border: 3px solid transparent;
    }

    .unlimited-banner a:hover {
        border-color: var(--cyan-glow);
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.8),
            0 0 60px rgba(0, 212, 255, 0.6),
            0 0 90px rgba(0, 212, 255, 0.4);
        transform: scale(1.02);
    }

    .unlimited-image {
        max-width: 100%;
        width: auto;
        max-height: 200px;
        height: auto;
        border-radius: 12px;
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.4),
            0 5px 15px rgba(0, 212, 255, 0.1);
        transition: all 0.4s ease;
        display: block;
        margin: 0 auto;
    }

    .unlimited-banner a:hover .unlimited-image {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.6),
            0 10px 30px rgba(0, 212, 255, 0.5),
            0 0 50px rgba(0, 212, 255, 0.7);
        filter: brightness(1.15) contrast(1.1);
    }

    /* Eliminar efectos ::before y ::after que causan problemas */

    /* Animaciones simplificadas */
    @keyframes unlimited-scan {
        0% {
            left: -100%;
        }
        50% {
            left: -20%;
        }
        100% {
            left: 100%;
        }
    }

    /* ===== SECCIÓN DE HITOS ===== */
    .hitos-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        background: var(--gradient);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        position: relative;
        overflow: hidden;
    }

    .hitos-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 30%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.03) 0%, transparent 30%);
        pointer-events: none;
    }

    .hitos-section .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        background: linear-gradient(45deg, var(--cyan-glow), #ffffff, var(--red-glow));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        position: relative;
        z-index: 1;
    }

    .hitos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .hito-card {
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 25px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .hito-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .hito-card:hover::before {
        left: 100%;
    }

    .hito-card.achieved {
        border-color: var(--cyan-glow);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        background: rgba(0, 255, 255, 0.05);
    }

    .hito-card.locked {
        opacity: 0.5;
        filter: grayscale(0.7);
    }

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

    .hito-emoji {
        font-size: 2rem;
        transition: all 0.3s ease;
    }

    .hito-card.achieved .hito-emoji {
        filter: none;
        animation: celebrate 0.6s ease-out;
    }

    .hito-card.locked .hito-emoji {
        filter: grayscale(1) opacity(0.3);
    }

    .hito-status {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .status-achieved {
        background: var(--cyan-glow);
        color: var(--primary-bg);
        box-shadow: 0 0 10px var(--cyan-glow);
    }

    .status-locked {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hito-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-primary);
    }

    .hito-card.achieved .hito-title {
        color: var(--cyan-glow);
        text-shadow: 0 0 5px var(--cyan-glow);
    }

    .hito-description {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hito-progress {
        width: 100%;
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .hito-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, var(--cyan-glow), #00cccc);
        width: 0%;
        transition: width 0.8s ease;
        box-shadow: 0 0 10px var(--cyan-glow);
    }

    .hito-card.achieved .hito-progress-bar {
        width: 100%;
    }

    .hito-date {
        font-size: 0.8rem;
        color: var(--text-secondary);
        text-align: right;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hito-card.achieved .hito-date {
        opacity: 1;
        color: var(--cyan-glow);
    }

    .stats-summary {
        text-align: center;
        margin-top: 50px;
        padding: 30px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        border: 1px solid rgba(0, 255, 255, 0.2);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--cyan-glow);
        text-shadow: 0 0 10px var(--cyan-glow);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-top: 5px;
    }

    @keyframes celebrate {
        0% { transform: scale(1); }
        50% { transform: scale(1.2) rotate(10deg); }
        100% { transform: scale(1); }
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    /* Newsletter */
    .newsletter {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 10px;
        padding: 50px;
        text-align: center;
        margin-top: 50px;
        backdrop-filter: blur(5px);
    }

    .newsletter-form {
        display: flex;
        gap: 15px;
        max-width: 500px;
        margin: 30px auto 0;
    }

    .newsletter-form input {
        flex: 1;
        padding: 15px;
        background-color: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 50px;
        color: var(--text-cream);
        font-size: 1rem;
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: var(--cyan-glow);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }

    /* Footer */
    footer {
        background-color: rgba(26, 26, 26, 0.5);
        padding: 50px 20px;
        text-align: center;
        margin-top: 100px;
        border-top: 1px solid rgba(0, 212, 255, 0.3);
        backdrop-filter: blur(5px);
    }

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

    .social-links a {
        color: var(--text-cream);
        font-size: 2rem;
        transition: all 0.3s;
    }

    .social-links a:hover {
        color: var(--cyan-glow);
        transform: translateY(-3px);
        text-shadow: 0 0 15px var(--cyan-glow);
    }

    /* Legal Pages Styles */
    .legal-content {
        min-height: 100vh;
        padding: 120px 20px 60px;
        position: relative;
        z-index: 1;
    }

    .legal-container {
        max-width: 900px;
        margin: 0 auto;
        background: rgba(0, 20, 40, 0.9);
        border: 1px solid var(--cyan-glow);
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    }

    .legal-date {
        color: var(--cyan-glow);
        font-size: 0.9rem;
        margin-bottom: 30px;
        opacity: 0.8;
    }

    .legal-section {
        margin-bottom: 40px;
    }

    .legal-section h2 {
        color: var(--cyan-glow);
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 1px;
    }

    .legal-section h3 {
        color: var(--cyan-glow);
        font-size: 1.3rem;
        margin: 20px 0 15px;
        font-weight: 600;
    }

    .legal-section p {
        line-height: 1.8;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .legal-section ul {
        margin: 15px 0;
        padding-left: 30px;
    }

    .legal-section li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }

    .legal-section strong {
        color: var(--cyan-glow);
    }

    .footer-links {
        margin-top: 10px;
        font-size: 0.9rem;
    }

    .footer-links a {
        color: var(--cyan-glow);
        text-decoration: none;
        margin: 0 10px;
        transition: all 0.3s;
    }

    .footer-links a:hover {
        color: var(--cyan-glow);
        text-shadow: 0 0 10px var(--cyan-glow);
    }

    /* Responsive */
    @media (max-width: 768px) {
        h1 {
            font-size: 3rem;
        }

        .countdown {
            font-size: 1.8rem;
            padding: 15px 25px;
        }

        .book-cover {
            width: 200px;
        }

        .nav-links {
            display: none;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .synopsis {
            padding: 30px 20px;
        }

        .legal-container {
            padding: 20px;
        }

        .legal-section h2 {
            font-size: 1.5rem;
        }

        .hitos-grid {
            grid-template-columns: 1fr;
        }
        
        .hitos-section .section-title {
            font-size: 2rem;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Responsive para el banner */
        .unlimited-banner {
            padding: 40px 15px;
            margin: 60px auto;
        }
        
        .unlimited-title {
            font-size: 1.8rem;
        }
        
        .unlimited-subtitle {
            font-size: 1rem;
        }
        
        .unlimited-image {
            max-height: 150px;
            max-width: 95%;
        }
        
        .unlimited-banner a:hover .unlimited-image {
            transform: scale(1.05) translateY(-2px);
        }
        @media (max-width: 768px) {
    .average-rating {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-title {
        font-size: 1rem;
    }
    }

    @media (max-width: 480px) {
        .unlimited-banner {
            padding: 30px 10px;
            margin: 40px auto;
        }
        
        .unlimited-title {
            font-size: 1.5rem;
            line-height: 1.3;
        }
        
        .unlimited-subtitle {
            font-size: 0.9rem;
        }
        
        .unlimited-image {
            max-height: 120px;
            max-width: 90%;
        }
    }

    /* Animación de entrada */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s, transform 0.8s;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Loading screen */
    .loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bg-black);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s;
    }

    .loader.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .loader-icon {
        width: 100px;
        height: 100px;
        border: 3px solid var(--cyan-dark);
        border-top-color: var(--cyan-glow);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    /* ===== SECCIÓN DE RESEÑAS ===== */
#resenas {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.resenas-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Resumen de valoraciones */
.rating-summary {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.rating-overview {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    margin-bottom: 20px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.stars-container {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 10px 0;
}

.stars-container i {
    margin: 0 2px;
    text-shadow: 0 0 10px #ffd700;
}

.rating-count {
    color: #999;
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-row {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

