    :root {
        --bg0: #050B16;
        --bg1: #071427;
        --stroke: #1C3C66;
        --text: #EAF2FF;
        --muted: #A8C0E6;
        --muted2: #7FA2D6;
        --shadow: 0 12px 30px rgba(0, 0, 0, .35);
        --r: 16px;
        --r2: 22px;
        --max: 1150px;
        --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
        --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

        /* Form field colors */
        --fieldBg: rgba(10, 23, 48, .55);
        --fieldStroke: rgba(28, 60, 102, .75);
        --fieldText: #EAF2FF;
        --fieldPlaceholder: rgba(168, 192, 230, .75);
    }

    * {
        box-sizing: border-box
    }

    body {
        margin: 0;
        font-family: var(--sans);
        color: var(--text);
        background:
            radial-gradient(1200px 600px at 20% -10%, rgba(59, 166, 255, .22), transparent 55%),
            radial-gradient(900px 600px at 90% 10%, rgba(124, 77, 255, .18), transparent 55%),
            radial-gradient(700px 500px at 60% 90%, rgba(55, 214, 122, .10), transparent 55%),
            linear-gradient(180deg, var(--bg0), var(--bg1) 55%, var(--bg0));
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none
    }

    .container {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto
    }

    header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(12px);
        background: rgba(5, 11, 22, .72);
        border-bottom: 1px solid rgba(28, 60, 102, .55)
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        padding: 14px 0
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 950
    }

    /* ✅ LOGO FIX: bigger + visible */
    .logoWrap {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        border: 1px solid rgba(59, 166, 255, .28);
        background:
            radial-gradient(40px 40px at 35% 30%, rgba(59, 166, 255, .28), transparent 60%),
            radial-gradient(40px 40px at 70% 70%, rgba(124, 77, 255, .20), transparent 60%),
            rgba(10, 23, 48, .55);
        box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex: 0 0 auto;
    }

    .logoImg {
        width: 52px;
        height: 52px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
    }

    .navlinks {
        display: flex;
        gap: 10px;
        flex-wrap: wrap
    }

    .navlinks a {
        padding: 10px 10px;
        border-radius: 12px;
        color: var(--muted);
        font-weight: 900;
        font-size: 14px;
        border: 1px solid transparent
    }

    .navlinks a:hover {
        color: var(--text);
        border-color: rgba(59, 166, 255, .22);
        background: rgba(11, 31, 58, .45)
    }

    .btn {
        cursor: pointer;
        border: none;
        border-radius: 14px;
        padding: 11px 14px;
        color: var(--text);
        background: linear-gradient(135deg, rgba(59, 166, 255, .95), rgba(124, 77, 255, .75));
        border: 1px solid rgba(255, 255, 255, .10);
        font-weight: 950;
        transition: transform .12s ease, filter .12s ease;
    }

    .btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.05)
    }

    .btn:active {
        transform: translateY(0);
        filter: brightness(.98)
    }

    .ghost {
        background: transparent;
        border: 1px solid rgba(28, 60, 102, .75);
        color: var(--muted)
    }

    .socialIcon {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        border: 1px solid rgba(28, 60, 102, .75);
        background: rgba(10, 23, 48, .35);
        color: rgba(234, 242, 255, .92);
        box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
        transition: transform .12s ease, filter .12s ease, border-color .12s ease;
    }

    .socialIcon:hover {
        transform: translateY(-1px);
        filter: brightness(1.08);
        border-color: rgba(59, 166, 255, .28);
    }

    .socialIcon:active {
        transform: translateY(0);
        filter: brightness(.98);
    }

    .hero {
        padding: 22px 0 12px
    }

    .card {
        border-radius: var(--r2);
        border: 1px solid rgba(28, 60, 102, .7);
        background: linear-gradient(180deg, rgba(10, 23, 48, .70), rgba(10, 23, 48, .35));
        box-shadow: var(--shadow);
        padding: 18px;
    }

    h1 {
        margin: 0 0 8px;
        font-size: clamp(24px, 3vw, 36px);
        letter-spacing: -.6px
    }

    h1 strong {
        background: linear-gradient(135deg, #3BA6FF, #7C4DFF);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

    p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55
    }

    .section {
        margin-top: 12px
    }

    .sectionTitle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin: 6px 0 10px;
    }

    .sectionTitle h2 {
        margin: 0;
        font-size: 14px;
        font-weight: 950;
        color: var(--muted2);
        letter-spacing: .2px;
    }

    .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(59, 166, 255, .28);
        background: rgba(59, 166, 255, .08);
        color: rgba(234, 242, 255, .92);
        font-weight: 950;
        font-size: 12px;
        font-family: var(--mono);
    }

    .grid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .grid3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }

    .box {
        border-radius: var(--r);
        border: 1px solid rgba(28, 60, 102, .65);
        background: rgba(10, 23, 48, .42);
        padding: 14px
    }

    .box h3 {
        margin: 0 0 8px;
        font-size: 14px;
        color: var(--muted2);
        font-weight: 950
    }

    .note {
        margin-top: 10px;
        font-size: 12.5px;
        color: var(--muted)
    }

    .subnote {
        margin-top: 6px;
        font-size: 12.5px;
        color: rgba(168, 192, 230, .72)
    }

    .divider {
        height: 1px;
        background: rgba(28, 60, 102, .55);
        margin: 12px 0;
    }

    ul {
        margin: 8px 0 0;
        padding-left: 18px;
        color: var(--muted);
        line-height: 1.55
    }

    li {
        margin: 6px 0
    }

    /* Tournament cards */
    .tCard {
        border-radius: var(--r2);
        border: 1px solid rgba(28, 60, 102, .7);
        background: linear-gradient(180deg, rgba(10, 23, 48, .66), rgba(10, 23, 48, .30));
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        min-height: 210px;
    }

    .tHead {
        padding: 14px 14px 10px;
        border-bottom: 1px solid rgba(28, 60, 102, .55);
        background: rgba(7, 20, 39, .18);
    }

    .tName {
        margin: 0;
        font-weight: 950;
        font-size: 16px;
        letter-spacing: -.2px;
        line-height: 1.2;
    }

    .tMeta {
        margin-top: 6px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        color: rgba(168, 192, 230, .9);
        font-size: 12.5px;
        font-family: var(--mono);
        font-weight: 900;
    }

    .tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(28, 60, 102, .7);
        background: rgba(5, 11, 22, .18);
    }

    .tBody {
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }

    .kv {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(28, 60, 102, .65);
        background: rgba(5, 11, 22, .22)
    }

    .kv b {
        font-weight: 950
    }

    .kv span {
        font-family: var(--mono);
        color: var(--muted2);
        font-weight: 900
    }

    .tActions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: auto
    }

    /* ✅ FORM FIX: visible select/options text + cupos line */
    form {
        display: grid;
        gap: 10px
    }

    .fg {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px;
        border-radius: 16px;
        border: 1px solid var(--fieldStroke);
        background: var(--fieldBg);
    }

    .fg label {
        font-size: 12px;
        color: var(--muted2);
        font-weight: 950
    }

    .fg input,
    .fg textarea,
    .fg select {
        border: none;
        outline: none;
        background: transparent;
        color: var(--fieldText);
        font-weight: 800;
        font-size: 14px;
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
        color: var(--fieldPlaceholder);
        font-weight: 700;
    }

    .fg select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 26px;
        cursor: pointer;
    }

    .fg select option {
        background: #071427;
        color: #EAF2FF;
        font-weight: 800;
    }

    .fg.selectWrap {
        position: relative;
    }

    .fg.selectWrap:after {
        content: "▾";
        position: absolute;
        right: 12px;
        top: 34px;
        color: rgba(234, 242, 255, .75);
        pointer-events: none;
        font-weight: 950;
        font-size: 14px;
    }

    .cuposLine {
        margin-top: 6px;
        font-size: 12.5px;
        color: rgba(168, 192, 230, .9);
        font-weight: 900;
        font-family: var(--mono);
    }

    .fg textarea {
        min-height: 88px;
        resize: vertical;
        font-weight: 700
    }

    .actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        flex-wrap: wrap
    }

    .ok {
        display: none;
        margin-top: 10px;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(55, 214, 122, .35);
        background: rgba(55, 214, 122, .08);
        font-weight: 950
    }

    .err {
        display: none;
        margin-top: 10px;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(255, 110, 110, .35);
        background: rgba(255, 110, 110, .08);
        font-weight: 950
    }

    /* Map */
    .mapWrap {
        border-radius: var(--r2);
        border: 1px solid rgba(28, 60, 102, .7);
        overflow: hidden;
        background: rgba(10, 23, 48, .35);
    }

    .mapTop {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(28, 60, 102, .55);
        background: rgba(7, 20, 39, .18);
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .mapTop b {
        font-weight: 950
    }

    .mapFrame {
        width: 100%;
        height: 465px;
        border: 0;
        display: block;
    }

    footer {
        padding: 22px 0 30px;
        color: rgba(168, 192, 230, .72);
        font-size: 12.5px
    }

    @media (max-width: 1020px) {
        .grid3 {
            grid-template-columns: 1fr 1fr
        }
    }

    @media (max-width: 860px) {

        .grid2,
        .grid3 {
            grid-template-columns: 1fr
        }

        .navlinks {
            display: none
        }

        .logoWrap {
            width: 50px;
            height: 50px
        }

        .logoImg {
            width: 40px;
            height: 40px
        }
    }

    /* =========================
   Sponsors (antes de Torneos)
   ========================= */
    .sponsorGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sponsorCard {
        border-radius: var(--r);
        border: 1px solid rgba(28, 60, 102, .65);
        background: rgba(10, 23, 48, .35);
        padding: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 86px;
    }

    .sponsorCard img {
        width: 100%;
        max-width: 250px;
        max-height: 250px;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .25));
        opacity: .95;
    }

    @media (max-width: 1020px) {
        .sponsorGrid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 860px) {
        .sponsorGrid {
            grid-template-columns: repeat(2, 1fr);
        }
    }