/* Estilos Base */
body, html {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.landing-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 20px;
    text-align: center;
}

.main-container {
    width: 95%;
    max-width: 750px; /* Banner ancho como querías */
    margin: auto;
    display: flex;
    flex-direction: column;
    min-height: 95vh;
}

/* Banner de los 5 Peluseros */
.main-banner {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

/* Textos e Intro */
.intro h1 { color: #f1c40f; font-size: 2.2em; margin-bottom: 12px; text-transform: uppercase; }
.intro p { color: #ccc; font-size: 1.15em; line-height: 1.4; margin-bottom: 30px; }

/* Tarjeta y Botón */
.ticket-card {
    background: #111;
    border: 2px solid #e74c3c;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.9);
}

.event-info i { color: #e74c3c; width: 28px; }

.link-maps { text-decoration: none; color: #fff; display: inline-block; transition: 0.3s; }
.link-maps small { display: block; font-size: 0.8em; color: #888; margin-top: 4px; }
.link-maps:hover, .link-maps:hover small { color: #f1c40f; }

.divider { border: 0; border-top: 1px solid #222; margin: 22px 0; }

.btn-cta {
    display: block;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.3em;
    transition: 0.3s;
}

.btn-cta:hover { background-color: #c0392b; transform: scale(1.03); }

/* Redes Sociales */
.social-buttons { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.btn-social { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; font-size: 24px; text-decoration: none; transition: 0.3s; }
.yt { background-color: #ff0000; }
.fb { background-color: #1877f2; }
.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.btn-social:hover { transform: translateY(-5px); filter: brightness(1.2); }

/* Footer */
.main-footer { margin-top: auto; padding: 50px 0 20px 0; color: #666; font-size: 0.85em; border-top: 1px solid #1a1a1a; }
.link-kuyen { text-decoration: none; transition: 0.3s; }
.link-kuyen strong { color: #e74c3c; }
.link-kuyen:hover strong { color: #f1c40f; }

.social-text {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-style: italic;
}