/* --- 1. HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom left */
    padding: 40px 40px 100px 40px;
    /* Updated gradient to fade into the black site background */
    background: linear-gradient(rgba(0,0,0,0.2), var(--primary-bg)), 
                url('./images/Background-image.png') no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 90px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    max-width: 800px;
    color: var(--text-main);
}

.sub-welcome {
    display: block;
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 600;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

/* NEW: Hero Action Area for the Red Registration Button */
.hero-actions {
    margin-top: 35px;
}

/* --- 2. LIVE SHOWS SECTION --- */
.live-shows-section {
    padding: 80px 40px;
    background: var(--primary-bg);
}

.section-header {
    display: flex;
    align-items: baseline; 
    justify-content: space-between; 
    padding: 0 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Accent for the Section Title (Optional but looks sharp) */
.section-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--accent-red);
    margin-top: 8px;
    border-radius: 2px;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-all:hover {
    color: var(--accent-red); /* Highlights Pastel Red on hover */
}

/* --- 3. VIDEO GRID & CARDS --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail-container {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-card:hover .thumbnail {
    transform: scale(1.05);
}

.video-card:hover {
    transform: translateY(-5px);
}

/* Hover border effect to match theme */
.video-card:hover .thumbnail-container {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px var(--accent-red-dim);
}

/* --- 4. MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {

    /* Better viewport behavior on mobile browsers */
    .hero-section {
        min-height: 100svh;
        padding: 90px 20px 60px 20px;

        justify-content: center;
        align-items: center;
        text-align: center;

        background-position: center center;
    }

    .hero-title {
        max-width: 100%;

        font-size: clamp(42px, 13vw, 72px);

        line-height: 0.92;
        letter-spacing: -1px;
    }

    .sub-welcome {
        margin-top: 18px;

        font-size: 16px;
        line-height: 1.5;

        max-width: 320px;

        color: rgba(255,255,255,0.85);
    }

    .hero-actions {
        width: 100%;
        margin-top: 28px;

        display: flex;
        justify-content: center;
    }

    .hero-actions .btn-registration,
    .hero-actions button,
    .hero-actions a {
        width: 100%;
        max-width: 320px;

        min-height: 54px;

        font-size: 15px;
        border-radius: 14px;
    }

    /* SECTION */
    .live-shows-section {
        padding: 50px 16px;
    }

    .section-header {
        padding: 0 2px 14px 2px;

        margin-bottom: 22px;

        align-items: center;
    }

    .section-header h2 {
        font-size: 22px;
        line-height: 1.1;
    }

    .section-header h2::after {
        width: 32px;
        height: 3px;
    }

    .view-all {
        font-size: 12px;
    }

    /* GRID */
    .video-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .video-card {
        width: 100%;
    }

    .thumbnail-container {
        border-radius: 18px;

        overflow: hidden;

        border: 1px solid rgba(255,255,255,0.08);
    }

    .thumbnail {
        aspect-ratio: 16 / 9;
    }

    /* Better mobile taps */
    .video-card,
    .btn-registration,
    button,
    a {
        -webkit-tap-highlight-color: transparent;
    }

    /* Improve scrolling smoothness */
    body {
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }
}
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.division-card {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 28px;
    min-height: 340px;

    display: flex;
    flex-direction: column;
}

.division-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.division-players {
    display: flex;
    flex-direction: column;
    gap: 14px;

    overflow-y: auto;
    padding-right: 4px;
}

/* PLAYER ROW */
.player-chip {
    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.04);

    padding: 12px;
    border-radius: 16px;

    transition: 0.2s ease;
}

.player-chip:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
}

.player-chip img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;

    border: 2px solid #ff4d5a;
}

.player-chip-info {
    display: flex;
    flex-direction: column;
}

.player-chip-info strong {
    font-size: 0.95rem;
    color: white;
}

.player-chip-info small {
    color: #9ca3af;
    margin-top: 2px;
    font-size: 0.8rem;
}

.empty-text {
    color: #777;
    font-size: 0.9rem;
}
/* PLAYER RANK */

.player-chip {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 12px;
    margin-bottom: 12px;

    border-radius: 14px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);
}

.player-rank {
    min-width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,107,107,0.12);

    color: var(--accent-red);

    font-weight: 800;
    font-size: 0.95rem;
}

.player-chip img {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    object-fit: cover;
}

.player-chip-info {
    display: flex;
    flex-direction: column;
}

.player-chip-info strong {
    color: white;
}

.player-chip-info small {
    color: var(--text-dim);
}