/* ===== 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;
}


/* ===== MAIN CONTENT (background: background_pc.webp) ===== */
/* Lưu ý: đặt file background_pc.webp cùng thư mục với index.html/styles.css thì background mới hiện */
.is_bg {
    background-image: url('background_pc.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Decorative watermarks + vertical text (no section backgrounds) */
.main-content-watermark {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    max-width: 18vw;
    pointer-events: none;
    opacity: 0.2;
    z-index: 0;
}
.main-content-watermark-left {
    left: 5px;
    background: url('JAMES RODRÍGUEZ.webp') left center no-repeat;
    background-size: contain;
}
.main-content-watermark-right {
    right: 5px;
    background: url('JAMES RODRÍGUEZ.webp') right center no-repeat;
    background-size: contain;
    transform: scaleX(-1);
}
.main-content-vertical-text {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(12px, 1.6vw, 20px);
    font-weight: bold;
    color: #FFFFFF;
    -webkit-text-stroke: 1px var(--red-primary);
    paint-order: stroke fill;
    letter-spacing: 0.2em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

/* All sections inside main-content: no background */
.mc-section {
    background: none;
    position: relative;
    z-index: 1;
}
.mc-red-bar {
    width: 100%;
    background: linear-gradient(180deg, #FF0000, #9A0000);
    color: var(--white);
    padding: 18px 24px;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.3;
    border-radius: 10px;
}

/* Thiết kế: 2 thanh đỏ đầu KHÔNG full width - thanh ngắn căn giữa như EVENTOS EM DESTAQUE */
.ambassador-announcement,
.achievements-section-new {
    text-align: center;
}
.ambassador-announcement > .mc-red-bar,
.achievements-section-new > .mc-red-bar {
    width: auto;
    max-width: 54%;
    display: inline-block;
    padding: 14px 40px;
}
.ambassador-announcement .mc-inner,
.achievements-section-new .mc-inner {
    text-align: left;
}
.mc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 40px;
}

/* 1. Ambassador Announcement: image left, text right */
.ambassador-announcement-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: stretch;
}
.ambassador-announcement-image {
    min-height: 0;
}
.announcement-image-mb {
    display: none !important;
}
.ambassador-announcement-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.achievements-trophies-mb{
    display: none !important;
}
.achievements-frame-mb {
    display: none !important;
}
.bio-image-wrap-mb {
    display: none !important;}

.ambassador-announcement-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 1em 0;
    text-align: left;
    font-family: Arial, 'Helvetica Neue', sans-serif;
}
p, span, strong {
    text-align: justify !important;
    hyphens: auto;
}
.ambassador-announcement-text p:last-child {
    margin-bottom: 0;
}

/* 2. Biography */
.bio-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 24px 0;
    line-height: 1;
}
.bio-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    margin: 0 0 1em 0;
    text-align: left;
}
.bio-text img {
    position: relative;
    top: -162px;
}
.bio-text p:last-child {
    margin-bottom: 0;
}
.bio-image-wrap {
    margin-top: 28px;
}
.bio-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 3. Career Achievements: badges ngoài khung đỏ, khung đỏ chỉ chứa 3 giải thưởng */
.achievements-section-new .mc-red-bar {
    margin-bottom: 0;
}
.achievements-section-new .mc-inner {
    padding-top: 24px;
}
/* 3 huy hiệu vàng: bên ngoài khung đỏ */
.achievements-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
/* Khung đỏ: chỉ chứa achievements-trophies */
.achievements-frame {
    border: 4px solid var(--red-primary);
    border-radius: 20px;
    padding: 40px 24px 32px;
    background: #ffffff;
}
.achievement-badge {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4af37 0%, #f4e4a6 40%, #c9a227 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}
.achievement-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.achievements-trophies {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.trophy-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 180px;
    max-width: 280px;
}
.trophy-block img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.trophy-block-small {
    max-width: 250px;
}
.trophy-block-small img {
    max-height: 155px;
}
.trophy-block-large {
    max-width: 280px;
}
.trophy-block-large img {
    max-height: 200px;
}
.trophy-label {
    display: block;
    background: var(--red-primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 9px 10px;
    line-height: 1.25;
    border-radius: 30px;
}

/* 4. Repeating banner */

.mc-banner-logo {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: bold;
    color: var(--white);
}
.mc-banner-name {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@keyframes mc-banner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 5. Featured Events: centered red bar, frame with image + overlay */
.featured-events-red-bar {
    display: inline-block;
    background: linear-gradient(180deg, #FF0000, #9A0000);
    color: var(--white);
    padding: 10px 30px;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0 auto 24px;
    border-radius: 10px;
}
.featured-events-section .mc-inner {
    text-align: center;
}

.featured-event-slider {
    position: relative;
    overflow: hidden;
}
.featured-event-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}
.featured-event-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}
.featured-event-image-wrap {
    position: relative;
}
.featured-event-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /*padding: 24px 28px;*/
    /*background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);*/
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.featured-event-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
}
.featured-event-sub {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    color: rgba(255,255,255,0.95);
}
.featured-event-dots {
    position: absolute;
    bottom: 20px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.featured-event-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}
.featured-event-dots .dot:hover {
    background: rgba(255,255,255,0.9);
}
.featured-event-dots .dot.active {
    background: var(--red-primary);
}

/* 6. Gallery: cân đối như thiết kế - 3 cột bằng nhau, 4 ô nhỏ bằng nhau, cắt ảnh cho đều */
.gallery-section .mc-inner.gallery-inner {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.gallery-grid-mb {
    display: none !important;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    margin-bottom: 24px;
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 0;
    align-items: stretch;
}
.gallery-item {
    overflow: hidden;
    min-height: 0;
    border-radius: 0;
    height: 100%;
}
.gallery-item-featured {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gallery-item-featured img {
    aspect-ratio: auto;
}
.gallery-item:not(.gallery-item-featured) img {
    min-height: 0;
}
.gallery-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.gallery-logo {
    width: 40%;
    margin: 0 auto;
}
.gallery-family {
    font-size: 1.1rem;
    color: var(--red-primary);
    font-style: italic;
    font-family: Georgia, serif;
}
.gallery-james {
    font-size: 1rem;
    font-weight: bold;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

.video-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Hàng 1: 3 video bên phải */
.video-right-panels {
    display: flex;
    flex-direction: column;
    gap: 40px;;
    width: 280px;
    flex-shrink: 0;
}

.video-player-wrap {
    flex: 1;
    min-width: 0;
}

.video-right-card {
    border-radius: 12px;
    overflow: hidden;
}

.video-right-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-player {
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--red-primary);
}

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

.video-thumbnails {
    position: relative;
    margin-top: 24px;
}

.video-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    --video-slider-gap: 16px;
    --video-slider-item-width: calc((100% - 2 * var(--video-slider-gap)) / 3);
}

/* Vị trí track do JS set (translate px) — tránh calc(% ) lệch giữa track vs khung nhìn */
.video-slider-track {
    display: flex;
    gap: var(--video-slider-gap, 16px);
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.video-slider-track .thumbnail {
    flex: 0 0 var(--video-slider-item-width);
    width: var(--video-slider-item-width);
    min-width: 0;
}

.video-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    touch-action: manipulation;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--red-primary, #E60012);
    background: rgba(255,255,255,0.95);
    color: var(--red-primary, #E60012);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

.video-slider-btn:hover {
    background: var(--red-primary, #E60012);
    color: #fff;
}

.video-slider-prev {
    left: 8px;
}

.video-slider-next {
    right: 8px;
}

.video-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.video-slider-dots {
    display: flex;
    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;
}

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

/* Icon play giữa thumbnail (vòng tròn + tam giác) */
.thumbnail::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(42px, 14vw, 58px);
    height: clamp(42px, 14vw, 58px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    z-index: 1;
    pointer-events: none;
}

.thumbnail::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    margin-left: 3px;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #ffffff;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

.thumbnail-overlay-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 10px 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.thumbnail-badge {
    align-self: flex-start;
    background: rgba(230, 0, 18, 0.92);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.thumbnail-video-name {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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;
}

/* ===== AMBASSADOR HERO SECTION (đúng thiết kế ảnh) ===== */

/* Banner đỏ full-width, bo góc nhẹ */
.ambassador-hero-banner {
    width: 100%;
    background: #E60012;
    color: #FFFFFF;
    padding: 18px 24px;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
    border-radius: 0;
    margin: 0;
    box-sizing: border-box;
}

.ambassador-hero-banner-bottom {
    margin: 0;
    margin-top: 0;
}

.ambassador-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 32px;
}

/* Hàng 2 cột: trái ảnh (nền gradient xám nhạt/trắng), phải bài viết */
.ambassador-hero-main-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 32px;
}

.ambassador-hero-image-col {
    min-height: 0;
}

.ambassador-hero-image-bg {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: linear-gradient(180deg, #e8e8e8 0%, #f5f5f5 45%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ambassador-hero-image-bg img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.ambassador-hero-article-col {
    display: flex;
    align-items: flex-start;
}

.ambassador-hero-article-col p {
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    text-align: left;
    font-family: Arial, 'Helvetica Neue', sans-serif;
}

/* Tên lớn cam-đỏ, căn giữa, rất nổi bật */
.ambassador-hero-name {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    color: #E85C00;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1;
}

/* Đoạn bio, chữ đen */
.ambassador-hero-bio {
    margin-bottom: 28px;
}

.ambassador-hero-bio p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

/* Quote: avatar tròn + speech bubble (nền hồng nhạt, viền trắng) */
.ambassador-hero-quote {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ambassador-hero-quote-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: -8px;
    z-index: 1;
}

.ambassador-hero-quote-bubble {
    background: #FFE8EC;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 18px 24px;
    border-radius: 16px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 380px;
    position: relative;
}

.ambassador-hero-quote-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #FFE8EC;
    border-left: 0;
}

.ambassador-hero-quote-bubble::after {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-right-color: #FFFFFF;
    border-left: 0;
    z-index: -1;
}

/* Khung ảnh event: viền trắng mỏng, nền gradient tím (nếu cần) */
.ambassador-hero-event-wrap {
    background: linear-gradient(180deg, #4a3255 0%, #5c3d6e 50%, #4a3255 100%);
    padding: 32px 24px;
    text-align: center;
}

.ambassador-hero-event-image {
    width: 100%;
    max-width: 960px;
    height: auto;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    border-radius: 4px;
    margin: 0 auto;
    display: block;
}

/* ===== JAMES RODRÍGUEZ AMBASSADOR SECTION (thiết kế: trái graphic, phải bài viết) ===== */
.james-ambassador-section {
    width: 100%;
    background: #FFFFFF;
    padding: 48px 24px 56px;
}

.james-ambassador-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

/* Cột trái: khối graphic, nền gradient cam nhạt -> trắng */
.james-ambassador-left {
    background: linear-gradient(180deg, #FFE8E0 0%, #FFF5F2 50%, #FFFFFF 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.james-ambassador-bar {
    background: #FF0000;
    color: #FFFFFF;
    padding: 16px 20px;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
}

.james-ambassador-photo {
    padding: 24px 24px 0;
    flex: 1;
    min-height: 0;
}

.james-ambassador-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.james-ambassador-left .james-ambassador-name {
    padding: 20px 24px 0;
    margin: 0;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: bold;
    color: #FF0000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.james-ambassador-left .james-ambassador-bio {
    padding: 12px 24px 24px;
}

.james-ambassador-bio p {
    font-size: 14px;
    line-height: 1.55;
    color: #1a1a1a;
    margin-bottom: 0.75em;
}

.james-ambassador-bio p:last-child {
    margin-bottom: 0;
}

/* Cột phải: bài viết */
.james-ambassador-article {
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.james-ambassador-article p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 1.25em;
    text-align: left;
}

.james-ambassador-article p:last-child {
    margin-bottom: 0;
}

/* ===== 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, #282523 0%, #0C0B0A 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 desktop: mỗi cột = ảnh cầu thủ trái, chữ ký + text phải */
.footer-images-col {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-col-photo {
    flex-shrink: 0;
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-col-sig {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-col-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--white);
}

.footer-col-text strong {
    font-size: 12px;
    display: block;
}

.footer-col-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.95);
}

.footer-images-col-4 {
    align-items: center;
}

.footer-images-col-4 img {
    max-height: 120px;
}

.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;
    text-align: center !important;
    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: #fff;
    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: #fff;
}

/* ===== 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: #e25611;
    border: 4px solid #ed7336;
    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: flex !important;
        flex-direction: column;
        align-items: center;
    }

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

    /* Footer images: 4 cột hàng ngang, căn giữa (khối chỉ rộng bằng nội dung) */
    .footer.footer-desktop .footer-images {
        flex-wrap: nowrap;
        min-width: 0;
        align-items: center;
        justify-content: center;
        width: fit-content;
        max-width: 100%;
    }

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

    .footer.footer-desktop .footer-images img,
    .footer.footer-desktop .footer-col-photo {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 45%;
    }

    .footer.footer-desktop .footer-menu,
    .footer.footer-desktop .footer-copyright {
        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, #252322 0%, #0E0C0B 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .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;
        width: fit-content;
        max-width: 100%;
    }

    .footer.footer-desktop .footer-col-photo {
        max-height: 80px;
    }

    .footer.footer-desktop .footer-col-sig {
        max-height: 40px;
    }

    .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-menu,
    .footer.footer-desktop .footer-copyright {
        width: 100%;
    }

    .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;
    }

    .mc-inner {
        padding: 24px 16px 32px;
    }
    .ambassador-announcement-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .achievements-badges {
        gap: 24px;
    }
    .achievement-badge {
        width: 110px;
        height: 110px;
    }
    .achievement-number {
        font-size: 1.9rem;
    }
    .achievements-trophies {
        flex-direction: column;
        align-items: center;
    }
    .trophy-block {
        max-width: 100%;
    }
    .featured-event-image-wrap {
        max-height: 280px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .gallery-item-featured {
        grid-row: span 1;
    }
    .gallery-item img {
        min-height: 200px;
    }
    .main-content-watermark {
        width: 100px;
        opacity: 0.12;
    }
    .main-content-vertical-text {
        font-size: 10px;
        right: 2px;
    }

    .video-row {
        flex-direction: column;
    }
    .video-right-panels {
        display: none;
    }
    .ambassador-announcement > .mc-red-bar, .achievements-section-new > .mc-red-bar {
        width: auto;
        max-width: 90%;
        display: inline-block;
        padding: 14px 20px;
        font-size: 12px;
    }
    .announcement-image-pc {
        display: none !important;
    }
    .bio-text img {
        display: none !important;
    }
    .bio-image-wrap .bio-image-wrap-pc {
        display: none;
    }
    .achievements-trophies-mb {
        display: block !important;
    }
    .achievements-trophies-pc {
        display: none;
    }
    .announcement-image-mb {
        display: block !important;
    }
    .achievements-frame-pc {
        display: none;
    }
    .achievements-frame-mb {
        display: block !important;
        margin-top: 50px;
    }
    .gallery-grid-mb {
        display: block !important;
    }
    .gallery-grid-pc {
        display: none;
    }
    .video-right-panels {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .main-content-watermark {
        display: none;
    }
    .featured-events-red-bar {
        padding: 10px 43px;
        font-size: 20px;
    }

    .video-right-card {
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
        max-width: 200px;
        aspect-ratio: 4/3;
    }

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

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

    /* Mobile: show only 2 items in viewport */
    .video-slider-wrap {
        --video-slider-item-width: calc((100% - var(--video-slider-gap)) / 2);
    }

    /* Mobile: hide slider arrows + dots */
    .video-slider-btn,
    .video-slider-dots {
        display: none !important;
    }

    .video-slider-track {
        gap: 12px;
        margin-bottom: 12px;
    }

    .video-slider-wrap {
        --video-slider-gap: 12px;
    }

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

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

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

    .james-ambassador-section {
        padding: 24px 16px 40px;
    }

    .james-ambassador-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .james-ambassador-bar {
        font-size: 0.7rem;
        padding: 12px 16px;
    }

    .james-ambassador-photo {
        padding: 16px 16px 0;
    }

    .james-ambassador-left .james-ambassador-name {
        font-size: clamp(1.5rem, 8vw, 2rem);
        padding: 16px 16px 0;
    }

    .james-ambassador-left .james-ambassador-bio {
        padding: 10px 16px 20px;
    }

    .james-ambassador-bio p {
        font-size: 13px;
    }

    .james-ambassador-article p {
        font-size: 15px;
        line-height: 1.6;
    }

    .ambassador-hero-section {
        padding: 0;
    }

    .ambassador-hero-banner {
        padding: 14px 16px;
        font-size: 0.7rem;
    }

    .ambassador-hero-container {
        padding: 24px 16px 28px;
    }

    .ambassador-hero-main-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .ambassador-hero-image-bg {
        min-height: 260px;
    }

    .ambassador-hero-image-bg img {
        max-height: 280px;
    }

    .ambassador-hero-name {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        margin-bottom: 16px;
    }

    .ambassador-hero-bio p,
    .ambassador-hero-article-col p {
        font-size: 14px;
    }

    .ambassador-hero-quote {
        margin-bottom: 28px;
    }

    .ambassador-hero-quote-avatar {
        width: 56px;
        height: 56px;
        margin-right: -6px;
    }

    .ambassador-hero-quote-bubble {
        font-size: 14px;
        padding: 14px 18px;
        max-width: 100%;
    }

    .ambassador-hero-quote-bubble::before,
    .ambassador-hero-quote-bubble::after {
        border-width: 8px;
        left: -8px;
    }

    .ambassador-hero-quote-bubble::after {
        border-width: 10px;
        left: -10px;
    }

    .ambassador-hero-event-wrap {
        padding: 20px 16px;
    }

    .ambassador-hero-event-image {
        border-width: 2px;
    }

    .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, #252322 0%, #0E0C0B 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;
    }
}
