/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-primary: #E60012;
    --red-dark: #B8000E;
    --red-light: #FF3333;
    --white: #FFFFFF;
    --black: #000000;
    --gray-dark: #1a1a1a;
    --gray-header: #2d2d2d;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    background: #FFFFFF;
    padding: 12px 24px;
    position: relative;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    position: relative;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    flex: 1;
}

.hob-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FF6D6D 0%, #A30000 100%);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 7.82px 23.45px 0 rgba(158, 29, 29, 0.32);
    text-decoration: none;
}

.hob-btn-icon {
    display: none;
    height: 35px;
    width: auto;
}

.logo-j88 {
    height: 36px;
    width: auto;
}

.logo-dv {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.logo-j88com {
    height: 32px;
    width: auto;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    margin-top: 60px;
    background: var(--red-primary);
    padding: 20px;
}

.announcement-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.announcement-inner h1 {
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-top: 8px;
    text-transform: uppercase;
}


/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 40px 24px;
}

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

.video-player {
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    display: block;
    min-height: 400px;
}

.video-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.video-slider-track {
    display: contents;
}

.video-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.video-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.video-slider-dots .dot.active {
    background: var(--red-primary, #E60012);
}

.thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.thumbnail.active {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.thumbnail:hover {
    opacity: 0.9;
}

.video-banner {
    width: 100%;
    background: linear-gradient(180deg, #FFE8EC 0%, #FFF5F7 50%, #FFE8EC 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 190px;
    flex-wrap: wrap;
}

.video-banner-mobile {
    display: none;
}

.video-banner-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 190px;
    flex-wrap: wrap;
}

.video-banner img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.video-banner-desktop img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    width: 100%;
    background-image: url('1707whiteback%201.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 528px;
}

.intro-container {
    max-width: 1751px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
}

.intro-image {
    width: 100%;
    max-width: 527px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}

.intro-content h2 {
    color: #FF0000;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-content p {
    color: #000000;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 32px;
}

.intro-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--red-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
}

/* ===== ACHIEVEMENTS ===== */
.achievements-section {
    background: var(--white);
    padding: 60px 24px;
}

.achievements-container {
    max-width: 1556px;
    margin: 0 auto;
    padding: 0 24px;
}

.achievements-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 56px;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.stat-card img {
    width: 263px;
    height: auto;
}

.stat-card span {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

.trophies-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.trophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 220px;
}

.trophy-item img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.trophy-item span {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    padding: 12px 20px;
    background: rgba(230, 0, 18, 0.08);
    border-radius: 4px;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership-section {
    background: var(--white);
    padding: 60px 24px;
}

.partnership-container {
    max-width: 1293px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.partnership-content {
    max-width: 100%;
}

.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.partnership-logos img {
    height: 48px;
    width: auto;
}

.partnership-content h2 {
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    color: #FF0000;
}

.partnership-content p {
    color: var(--black);
    font-size: 23px;
    font-weight: 600;
    text-align: left;
}

.partnership-image img {
    border-radius: 8px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: var(--white);
    padding: 60px 24px;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.benefits-container .benefits-left {
    grid-column: 1;
}

.benefits-container .benefits-right {
    grid-column: 2;
}


.benefits-image-block {
    margin-bottom: 16px;
}

.benefits-image-block img {
    border-radius: 8px;
    margin-bottom: 0;
}

.benefits-bar h3 {
    color: #FFFFFF;
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-left: 12px;
    background: linear-gradient(180deg, #FF000D 0%, #E00015 100%);
    border-radius: 10px;
}

.benefits-expand-text {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
}

.benefits-right h2 {
    color: #FF0000;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 100%;
}

.benefit-item {
    margin-bottom: 24px;
}

.benefit-item h3 {
    color: #FFFFFF;
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-left: 12px;
    background: linear-gradient(180deg, #FF000D 0%, #E00015 100%);
    border-radius: 10px;
}

.benefit-item p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
}

.event-images-row {
    width: 66%;
    margin: 0 auto;
}

.event-images-row img {
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Desktop: collage in right column; hide mobile copy */
.event-images-row-mobile {
    display: none;
}

.event-images-row-desktop {
    margin-top: 24px;
}

/* ===== FEATURED EVENTS ===== */
.featured-events {
    background: var(--white);
    width: 100%;
}

.featured-events h2 {
    text-align: center;
    color: var(--red-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.events-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events-row {
    display: grid;
    gap: 20px;
}

.events-row-1 {
    grid-template-columns: repeat(3, 1fr);
}

.events-row-2 {
    grid-template-columns: repeat(4, 1fr);
}

.events-grid img {
    width: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #FF0000 100%);
    color: var(--white);
    padding: 48px 24px 24px;
}

.footer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-images img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 24px 0;
}

.footer-menu a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-divider {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.footer-copyright {
    text-align: center;
    padding: 24px 0 0;
}

.footer-copyright p {
    font-size: 12px;
    color: var(--white);
}

/* ===== FOOTER MOBILE (chỉ hiển thị trên mobile) ===== */
.footer-mobile {
    display: none;
    background: #FF0000;
    color: var(--white);
    padding: 0 0 24px;
}

.footer-mobile-section1 {
    color: var(--black);
    padding: 24px 16px 32px;
    margin-bottom: 0;
}

.footer-mobile-banner {
    text-align: center;
    margin-bottom: 28px;
}

.footer-mobile-banner img {
    max-width: 100%;
    height: auto;
}

.footer-mobile-rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-mobile-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
}

.footer-mobile-sig {
    flex-shrink: 0;
}

.footer-mobile-sig img {
    max-width: 80px;
    height: auto;
}

.footer-mobile-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    text-align: right;
}

.footer-mobile-text strong {
    font-size: 14px;
    display: block;
}

.footer-mobile-text span {
    font-size: 13px;
    color: var(--black);
}

/* ===== FOOTER MOBILE SECTION 2 - NOTÍCIAS ===== */
.footer-mobile-section2 {
    color: var(--black);
    padding: 24px 16px 32px;
}

.footer-mobile-news-banner {
    text-align: center;
    margin-bottom: 24px;
}

.footer-mobile-news-banner img {
    max-width: 100%;
    height: auto;
}

.footer-mobile-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-mobile-news-card {
    display: flex;
    align-items: flex-start;
    background: #c50d0d;
    border: 4px solid #fc3838;
    border-radius: 14px;
    padding: 5px;
    gap: 16px;
    overflow: hidden;
}

/* Wrapper ảnh: không kéo dãn, chiều cao theo ảnh */
.footer-mobile-news-img-wrap {
    width: 44%;
    flex-shrink: 0;
    align-self: flex-start;
    border-radius: 10px;
    overflow: hidden;
    background: #FFFFFF;
}

.footer-mobile-news-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-mobile-news-text {
    flex: 1;
    min-width: 0;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.footer-mobile-news-text h3 {
    font-size: 12px;
    font-weight: bold;
    color: #FFFB00;
    margin: 0;
    line-height: 1.3;
}

.footer-mobile-news-text p {
    font-size: 13px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-mobile-content {
    margin-bottom: 24px;
    padding: 0 16px;
}

.footer-mobile-content img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-mobile-copyright {
    text-align: center;
    padding: 0 16px;
}

.footer-mobile-copyright p {
    font-size: 12px;
    color: var(--white);
}

/* ===== iPad Pro & Desktop (834px+) - đảm bảo layout desktop ===== */
@media (min-width: 834px) {
    .video-banner-mobile {
        display: none !important;
    }

    .video-banner-desktop {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 32px;
        justify-content: center;
    }

    .video-banner-desktop img {
        height: 44px;
        width: auto;
        flex: 0 1 auto;
        min-width: 0;
        object-fit: contain;
    }

    .footer.footer-desktop {
        display: block !important;
    }

    .footer-mobile {
        display: none !important;
    }

    /* 5 ảnh footer luôn 1 hàng (cả iPad landscape >1024px) */
    .footer.footer-desktop .footer-images {
        flex-wrap: nowrap;
        min-width: 0;
    }

    .footer.footer-desktop .footer-images img {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
    }
}

/* ===== TABLET / iPad Pro (834px - 1024px) - footer giống Desktop ===== */
@media (min-width: 834px) and (max-width: 1024px) {
    .video-banner-desktop {
        gap: 24px;
        flex-wrap: nowrap;
    }

    .video-banner-desktop img {
        height: 40px;
    }

    /* Footer desktop layout trên iPad Pro: hàng ngang, khoảng cách đều */
    .footer.footer-desktop {
        padding: 48px 24px 24px;
        background: linear-gradient(180deg, #FFFFFF 0%, #FF0000 100%);
    }

    .footer.footer-desktop .footer-images {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
        min-width: 0;
    }

    .footer.footer-desktop .footer-images img {
        max-height: 80px;
        width: auto;
        min-width: 0;
        flex: 0 1 auto;
        object-fit: contain;
    }

    .footer.footer-desktop .footer-menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px 16px;
        padding: 24px 0;
    }

    .footer.footer-desktop .footer-copyright {
        text-align: center;
        padding: 24px 0 0;
    }
}

/* ===== TABLET (≤1024px) - chỉ stats, events, footer; không đổi intro/partnership (iPad Pro giữ desktop) ===== */
@media (max-width: 1024px) {
    .stat-card img {
        width: 120px;
    }

    .trophy-item img {
        max-width: 220px;
    }

    .stats-row {
        gap: 32px;
    }

    .trophies-row {
        justify-content: center;
        gap: 56px;
    }

    .trophy-item {
        flex: none;
    }

    .events-row-1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-images img {
        max-height: 100px;
    }
}

/* ===== MOBILE & iPad Mini / iPad Air (< 834px) ===== */
/* iPad Pro (834px+) uses Desktop layout */
@media (max-width: 833px) {
    .header {
        padding: 10px 16px;
        position: relative;
    }

    .header-container {
        position: relative;
    }

    .hob-btn-text {
        display: none;
    }

    .hob-btn-icon {
        display: block;
    }

    .hob-btn {
        background: none;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex: none;
    }

    .logo-dv {
        height: 44px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
    }

    .logo-j88com {
        height: 24px;
    }

    .announcement-bar {
        margin-top: 52px;
        padding: 16px;
    }

    .hero-overlay {
        padding: 24px 16px 16px;
    }

    .video-section {
        padding: 24px 16px;
    }

    .video-player video {
        min-height: 250px;
    }

    .video-thumbnails {
        display: block;
        margin-top: 16px;
    }

    .video-slider-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        margin-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .video-slider-track::-webkit-scrollbar {
        display: none;
    }

    .video-slider-track .thumbnail {
        flex: 0 0 calc(50% - 6px);
        min-width: calc(50% - 6px);
        scroll-snap-align: start;
    }

    .video-slider-dots {
        display: flex;
    }

    .video-banner-mobile {
        display: block;
        width: 100%;
        height: auto !important;
        object-fit: contain;
    }

    .video-banner-desktop {
        display: none;
    }

    .intro-section {
        padding: 40px 5px;
        background-image: url('background_mb_one.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: auto;
        min-height: 0;
    }

    .intro-container {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }

    .intro-image-wrapper {
        order: 1;
    }

    .intro-content {
        order: 2;
    }

    .intro-image {
        max-width: 100%;
    }

    .intro-content h2 {
        font-size: clamp(18px, 4.5vw, 22px);
        line-height: 1.35;
        margin-bottom: 16px;
        word-wrap: break-word;
    }

    .intro-content p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .intro-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .intro-buttons .btn {
        flex: 1 1 0%;
        min-width: 0;
        width: auto;
        padding: 12px 10px;
        font-size: 11px;
    }

    .achievements-section {
        padding: 40px 5px;
    }

    .achievements-container {
        padding: 0 5px;
    }

    .stats-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .stat-card {
        flex: 1 1 0%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .stat-card span {
        font-size: 14px;
        text-align: center;
        line-height: 1.35;
        min-height: 2.7em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-card img {
        width: 70px;
    }

    .trophies-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .trophies-row::-webkit-scrollbar {
        display: none;
    }

    .trophy-item {
        flex: 0 0 auto;
        min-width: calc((100vw - 32px - 20px) / 2);
        scroll-snap-align: start;
    }

    .trophy-item img {
        width: auto;
        height: auto;
    }

    .partnership-section {
        padding: 40px 16px;
    }

    .partnership-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partnership-content {
        display: contents;
    }

    .partnership-content h2 {
        order: 0;
        text-align: center;
        font-size: clamp(18px, 4.5vw, 22px);
        margin-bottom: 0;
    }

    .partnership-image {
        order: 1;
        display: block !important;
    }

    .partnership-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .partnership-content p {
        order: 2;
        text-align: left;
        font-size: 15px;
        line-height: 1.5;
    }

    .partnership-logos {
        order: -1;
        display: flex !important;
        justify-content: center;
    }

    .partnership-logos img {
        max-height: 40px;
        width: auto;
    }

    .benefits-section {
        padding: 40px 16px;
    }

    .benefits-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .benefits-right {
        order: 0;
    }

    .benefits-right h2 {
        text-align: center;
        font-size: clamp(18px, 4.5vw, 22px);
        margin-bottom: 24px;
    }

    .benefits-right .benefit-item {
        margin-bottom: 24px;
    }

    .benefits-right .benefit-item h3 {
        font-size: 14px;
        padding: 5px;
        text-align: center;
    }

    .benefits-right .benefit-item p {
        font-size: 15px;
        line-height: 1.5;
    }

    .benefits-container .benefits-left,
    .benefits-container .benefits-right {
        grid-column: auto;
        grid-row: auto;
    }

    .event-images-row-desktop {
        display: none;
    }

    .event-images-row-mobile {
        display: block;
        width: 100%;
        margin: 16px 0;
    }

    .benefits-left .event-images-row-mobile img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .benefits-left {
        order: 2;
    }

    .benefits-left .benefits-image-block img {
        display: none;
    }

    .benefits-left .benefits-bar {
        margin-bottom: 12px;
    }

    .benefits-left .benefits-bar h3 {
        font-size: 15px;
        padding: 14px 12px;
        text-align: center;
    }

    .benefits-left .benefits-expand-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .event-images-row {
        grid-template-columns: 1fr;
    }

    .featured-events h2 {
        text-align: center;
        margin-bottom: 24px;
    }

    .events-grid {
        gap: 16px;
    }

    .events-row-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .events-row-1 img:nth-child(3) {
        display: none;
    }

    .events-row-2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .events-row-2 img:nth-child(4) {
        display: none;
    }

    .events-grid img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: block !important;
        background: linear-gradient(180deg, #FFFFFF 0%, #F45E5E 65%);
    }

    .footer-images {
        flex-direction: column;
        gap: 20px;
    }

    .footer-images img {
        max-height: 150px;
        max-width: 100%;
    }

    .footer-menu {
        flex-direction: column;
        gap: 12px;
    }

    .footer-divider {
        display: none;
    }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media (max-width: 480px) {
    .hob-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .header-container {
        gap: 8px;
    }

    .stat-card img {
        width: 90px;
    }

    .trophy-item img {
        max-width: 180px;
    }

    .player-item img {
        width: 60px;
        height: 60px;
    }
}
