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

body {
    background: #0a0507;
    background-image: radial-gradient(circle at 20% 30%, rgb(0, 0, 0) 0%, #050303 100%);
    font-family: 'Roboto Condensed', sans-serif;
    color: #ececec;
    padding: 1.5rem;
    min-height: 100vh;
}

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

/* ========== HEADER - LOGO CENTRADO PERFECTO ========== */
.hero {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.hero-badge {
    display: inline-block;
    background: #000000;
    color: #ff0000;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    letter-spacing: 10px;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    margin-bottom: 1rem;
    border: 1px solid #FFD966;
}

.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -9rem 0;
}

.main-logo {
    max-width: 100%;
    width: 800px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(196, 30, 30, 0.5));
    transition: transform 0.2s ease;
}

.main-logo:hover {
    transform: scale(1.02);
}

.logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 520px;
    border-radius: 60px;
    background: radial-gradient(ellipse at center, rgba(196, 30, 30, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #FFD966;
    font-weight: bold;
    border-top: 2px solid #c41e1e;
    border-bottom: 2px solid #c41e1e;
    display: inline-block;
    padding: 0.2rem 1.2rem;
    margin-top: 0.5rem;
}

.hero-date {
    font-size: 0.75rem;
    color: #ffffff;
    margin-top: 0.8rem;
    letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 750px) {
    body {
        padding: 0.8rem;
    }

    .main-layout {
        flex-direction: column;
    }

    .match-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .select-area {
        align-self: flex-end;
    }
}