<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    background-image: url('images/phoenix-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Estilo del logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5rem;
    margin: 2rem 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.7);
}

/* Contenido principal */
.content-box {
    text-align: center;
    margin: 5rem auto;
    max-width: 800px;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 3px solid #ff6400;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.3);
}
.content-box h1{    
    color: #ff6400;
    font-family: system-ui;
}
.content-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #f9f4e9;
    font-family: system-ui;
    /*text-transform: uppercase;*/
}

.edition-info {
    margin: 2rem 0;
    color: #f9f4e9;
    font-family: system-ui;
}

.edition-info p {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin: 1rem 0;
}

.pre-sale {
    color: #ff6400;
    font-size: 2.2rem !important;
    text-shadow: 0 0 5px rgba(255, 100, 0, 0.5);
}

.cta {
    margin-top: 4rem;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

/* Pie de pÃ¡gina */
footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .content-box h2 {
        font-size: 1.8rem;
    }
    
    .edition-info p {
        font-size: 1.4rem;
    }
    
    .pre-sale {
        font-size: 1.6rem !important;
    }
}</pre></body></html>