/* Variables */
:root {
    --primary-color: #A6236E;
    --footer-color: #3B0A45;
    --text-light: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Video de fondo */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Botones de tienda */
.store-buttons {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.shop-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.shop-button:hover {
    background: #8a1c5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Contenido principal */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

header {
    max-width: 800px;
}

h1 {
    font-family: 'Brush Script MT', cursive;
    font-size: 5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Pie de página */
footer {
    background: var(--footer-color);
    padding: 1.5rem;
    width: 100%;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: #e0a3ff;
    transform: translateY(-3px);
}

/* Icono X específico */
.fa-x {
    font-size: 1.1rem;
    font-weight: bold;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .store-buttons {
        top: 1rem;
        right: 1rem;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }
    
    .shop-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .fa-x {
        font-size: 1rem;
    }
}