/* ==========================================================================
   SkyLine Global Page (global.php)
   ========================================================================== */

.global-page {
    --gp-gold: #c8873a;
    --gp-gold-light: #f0d3b8;
    --gp-gold-pale: #ffdbae;
    --gp-bg: #05080d;
    --gp-text: #f0d3b8;
    --gp-muted: rgba(240, 211, 184, 0.55);
    --gp-container: min(1200px, calc(100% - 32px));

    font-family: 'DM Sans', sans-serif;
    background: var(--gp-bg);
    color: var(--gp-text);
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
}

/* Keep site header spacing; dark theme only inside page */
body:has(.global-page) {
    background: var(--gp-bg, #05080d);
}

.global-page img {
    max-width: 100%;
    display: block;
}

.global-page a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar (scoped feel) */
.global-page::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.global-page::-webkit-scrollbar-thumb {
    background: var(--gp-gold);
    border-radius: 3px;
}

/* ===== PARTICLES ===== */
.global-page .particles-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.global-page .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gp-gold);
    opacity: 0;
    animation: gp-float-up var(--dur, 8s) var(--delay, 0s) infinite ease-in;
}

@keyframes gp-float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.07; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ===== HERO ===== */
.global-page .hero-section {
    position: relative;
    min-height: clamp(320px, 52vh, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(32px, 5vw, 56px) 20px clamp(40px, 6vw, 72px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 8, 13, 0.35) 0%, rgba(5, 8, 13, 0.82) 100%),
        url('../images/skyline.jpg') center center / cover no-repeat;
    z-index: 1;
}

.global-page .hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 100%);
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(200, 135, 58, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.global-page .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 135, 58, 0.14);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: gp-rpulse 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.global-page .hr1 { width: min(300px, 70vw); height: min(300px, 70vw); }
.global-page .hr2 { width: min(520px, 90vw); height: min(520px, 90vw); animation-delay: 0.9s; opacity: 0.55; }
.global-page .hr3 { width: min(740px, 110vw); height: min(740px, 110vw); animation-delay: 1.8s; opacity: 0.28; }

@keyframes gp-rpulse {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.45; }
}

.global-page .hero-eyebrow {
    font-size: clamp(11px, 2vw, 13px);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #dbb38e;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.global-page .hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 28px);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.global-page .hero-site-logo {
    height: clamp(56px, 10vw, 88px);
    object-fit: contain;
    margin-top: 0;
}

.global-page .hero-skyline-logo-img {
    height: clamp(48px, 8vw, 72px);
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.global-page .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 8vw, 108px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #ffd6a9 0%, #ffecdf 50%, #c8873a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.global-page .hero-line {
    width: min(110px, 30vw);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gp-gold), transparent);
    margin: 12px auto 14px;
    position: relative;
    z-index: 2;
}

.global-page .hero-sub {
    font-size: clamp(14px, 2.5vw, 22px);
    color: #dbb38e;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.global-page .hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(13px, 2vw, 22px);
    font-weight: 600;
    color: #dbb38e;
    position: relative;
    z-index: 2;
    padding: 0 12px;
}

/* ===== TAB BAR ===== */
.global-page .tab-bar {
    position: sticky;
    top: var(--site-header-height, 132px);
    z-index: 900;
    background: rgba(5, 8, 13, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 211, 184, 0.14);
}

.global-page .tab-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.global-page .tab-inner::-webkit-scrollbar {
    display: none;
}

.global-page .stab {
    position: relative;
    padding: 15px 18px;
    font-size: clamp(11px, 1.8vw, 13.5px);
    font-weight: 500;
    color: rgba(240, 211, 184, 0.5);
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s;
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
}

.global-page .stab:hover,
.global-page .stab.active {
    color: #f1ddca;
}

.global-page .stab.active {
    border-bottom-color: #f1ddca;
}

/* ===== COMMON ===== */
.global-page .slc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
    position: relative;
    z-index: 2;
}

.global-page .slc--wide {
    max-width: 1300px;
    padding-left: clamp(12px, 2vw, 20px);
    padding-right: clamp(12px, 2vw, 20px);
}

.global-page .sh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(28px, 5vw, 56px);
    padding-top: clamp(24px, 4vw, 40px);
    flex-wrap: wrap;
    text-align: center;
}

.global-page .sh img {
    width: clamp(28px, 5vw, 40px);
    height: clamp(28px, 5vw, 40px);
    object-fit: contain;
    flex-shrink: 0;
}

.global-page .sh-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 3.5vw, 34px);
    font-weight: 600;
    color: var(--gp-text);
    white-space: normal;
    line-height: 1.2;
}

.global-page .sh-sub {
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 600;
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 44px);
    padding: 0 8px;
    background: linear-gradient(90deg, #ffd6a9 0%, #ffecdf 41.5%, #ffdbae 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.global-page .gd {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 135, 58, 0.35), transparent);
}

.global-page .rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.global-page .rv.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BRAND STORY ===== */
.global-page .brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
    padding: clamp(48px, 8vw, 80px) 0;
}

.global-page .brand-img-wrap {
    position: relative;
}

.global-page .brand-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(200, 135, 58, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    animation: gp-bglow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gp-bglow {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}

.global-page .brand-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 16px;
}

.global-page .brand-icon-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.global-page .brand-pick-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
}

.global-page .brand-hl {
    font-size: clamp(17px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--gp-gold-pale);
    line-height: 1.4;
}

.global-page .brand-txt {
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--gp-text);
    line-height: 1.85;
    opacity: 0.88;
}

/* ===== EVALUATION ===== */
.global-page .eval-sec {
    padding: clamp(48px, 8vw, 80px) 0;
    background: linear-gradient(180deg, #05080d 0%, #070a0f 50%, #05080d 100%);
}

.global-page .eval-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.global-page .ec {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 12px 18px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: url('https://resources1.interface003.com/web20/img/skyline/card1.png') center / 100% 100% no-repeat;
}

.global-page .ec::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    transition: background 0.35s ease;
}

.global-page .ec:hover::after {
    background: rgba(200, 135, 58, 0.07);
}

.global-page .ec:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 28px rgba(200, 135, 58, 0.22);
}

.global-page .ec-num {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    color: rgba(240, 211, 184, 0.8);
    padding: 5px 13px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 12px 0;
    z-index: 2;
    font-family: 'Cinzel', serif;
}

.global-page .ec-img {
    width: clamp(64px, 12vw, 90px);
    height: clamp(64px, 12vw, 90px);
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin: 6px auto 12px;
}

.global-page .ec-txt {
    font-size: clamp(11px, 1.6vw, 13px);
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    padding: 0 6px;
}

/* ===== RANKINGS ===== */
.global-page .rank-sec {
    padding: clamp(48px, 8vw, 80px) 0;
    background-position: center bottom !important;
    background-size: cover !important;
}

.global-page .rank-flex {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 5vw, 60px);
    flex-wrap: wrap;
}

.global-page .rank-item {
    text-align: center;
    width: min(340px, 100%);
}

.global-page .rank-title {
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 600;
    color: var(--gp-text);
    margin-bottom: 18px;
}

.global-page .rank-card {
    width: 100%;
    aspect-ratio: 340 / 420;
    max-height: 420px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(240, 211, 184, 0.14);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.global-page .rank-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.global-page .rank-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.global-page .rank-card:hover .rank-bg {
    transform: scale(1.05);
}

.global-page .rank-ovl {
    position: absolute;
    inset: 0;
    background: linear-gradient(357.77deg, #000 13.86%, rgba(0, 0, 0, 0) 97.27%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 18px 22px;
}

.global-page .rbadge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
}

.global-page .bproc { background: linear-gradient(90deg, #3b280c 0%, #0d0702 100%); }
.global-page .bend { background: #232121; }

.global-page .rcountry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.global-page .rcflag {
    height: 28px;
    object-fit: contain;
}

.global-page .rcname {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    color: var(--gp-text);
}

.global-page .rfooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.global-page .rsl-img {
    height: 20px;
    object-fit: contain;
}

.global-page .rbtn {
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.global-page .rbtn:hover {
    border-color: #ffc99b;
    color: #ffc99b;
}

/* ===== HONOR MOMENT ===== */
.global-page .honor-sec {
    padding: clamp(48px, 8vw, 80px) 0;
}

.global-page .honor-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.global-page .htab {
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(240, 211, 184, 0.18);
    color: rgba(240, 211, 184, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.global-page .htab:hover,
.global-page .htab.active {
    color: #f1ddca;
    border-color: #f1ddca;
    background: rgba(200, 135, 58, 0.1);
}

.global-page .gal-outer {
    position: relative;
}

.global-page .gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    background: #3d3d3d;
    border-radius: 50%;
    object-fit: contain;
}

.global-page .gal-arrow:hover {
    opacity: 1;
}

.global-page .gal-arr-left {
    left: 4px;
    transform: translateY(-50%) rotate(180deg);
}

.global-page .gal-arr-right {
    right: 4px;
}

.global-page .gal-scroll {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.global-page .gal-scroll::-webkit-scrollbar {
    display: none;
}

.global-page .gal-w {
    width: min(308px, 78vw);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.global-page .gal-tall {
    height: clamp(220px, 55vw, 478px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(240, 211, 184, 0.1);
}

.global-page .gal-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-page .gal-col-w {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.global-page .gal-sm {
    height: clamp(106px, 26vw, 235px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(240, 211, 184, 0.1);
}

.global-page .gal-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MEDIA REPORTS ===== */
.global-page .media-sec {
    padding: clamp(48px, 8vw, 80px) 0;
}

.global-page .media-hero {
    display: grid;
    grid-template-columns: minmax(0, 320px) 1fr;
    gap: 28px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.global-page .mh-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 160px;
    border-radius: 10px;
    overflow: hidden;
}

.global-page .mh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-page .mh-title {
    font-size: clamp(16px, 2.2vw, 19px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 9px;
    line-height: 1.4;
}

.global-page .mh-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.global-page .mh-date {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}

.global-page .mgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.global-page .mcard {
    display: flex;
    gap: 13px;
    padding: 13px;
    border-radius: 10px;
    background: rgba(255, 219, 174, 0.04);
    border: 1px solid rgba(240, 211, 184, 0.11);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 0;
}

.global-page .mcard:hover {
    border-color: rgba(200, 135, 58, 0.4);
    background: rgba(200, 135, 58, 0.06);
}

.global-page .mcard-img {
    width: 124px;
    height: 74px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.global-page .mcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-page .mcard-body {
    min-width: 0;
    flex: 1;
}

.global-page .mcard-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.global-page .mcard-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.36);
}

/* ===== SKYLINE GUIDE ===== */
.global-page .guide-sec {
    padding: clamp(48px, 8vw, 80px) 0;
}

.global-page .guide-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vw, 60px);
    flex-wrap: wrap;
}

.global-page .guide-book {
    position: relative;
    width: min(448px, 90vw);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.global-page .gb-ring-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.global-page .gb-cover {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-page .gb-cover-img {
    width: min(308px, 68vw);
    object-fit: contain;
}

.global-page .gb-overlay {
    position: absolute;
    z-index: 2;
    top: 36%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 0 12px;
}

.global-page .gb-ov-logo {
    width: clamp(32px, 8vw, 42px);
    object-fit: contain;
    margin-left: 16px;
}

.global-page .gb-ov-sky {
    width: min(176px, 40vw);
    object-fit: contain;
    margin-top: 5px;
}

.global-page .gb-country {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.global-page .gb-c-flag {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.global-page .gb-c-name {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    color: #9f6633;
}

.global-page .gb-decor {
    width: 33px;
    object-fit: contain;
}

.global-page .guide-info {
    max-width: 520px;
    width: 100%;
}

.global-page .gi-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(19px, 3vw, 32px);
    font-weight: 700;
    color: var(--gp-text);
    margin-bottom: 14px;
}

.global-page .gi-desc {
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--gp-text);
    line-height: 1.85;
    margin-bottom: 24px;
}

.global-page .gi-dlrow {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(240, 211, 184, 0.16);
    padding-top: 14px;
    flex-wrap: wrap;
}

.global-page .gi-dl-icon {
    width: 18px;
    object-fit: contain;
}

.global-page .gi-dl-link {
    font-size: 14px;
    color: var(--gp-text);
    text-decoration: underline;
    cursor: pointer;
}

.global-page .gi-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 7px;
}

/* ===== PARTNERS ===== */
.global-page .partner-sec {
    padding: clamp(48px, 8vw, 80px) 0;
}

.global-page .pt-sub {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--gp-text);
    text-align: center;
    margin-bottom: 22px;
}

.global-page .bgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: clamp(32px, 5vw, 56px);
}

.global-page .bcard {
    padding: 20px 16px;
    border-radius: 14px;
    background: rgba(255, 219, 174, 0.04);
    border: 1px solid rgba(240, 211, 184, 0.12);
    cursor: pointer;
    transition: all 0.35s ease;
    text-align: center;
    display: block;
}

.global-page .bcard:hover {
    border-color: rgba(200, 135, 58, 0.5);
    background: rgba(200, 135, 58, 0.07);
    transform: translateY(-4px);
    box-shadow: 0 0 22px rgba(200, 135, 58, 0.17);
}

.global-page .blogo {
    height: clamp(80px, 14vw, 104px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.global-page .blogo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.global-page .bname {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    color: #fff;
}

.global-page .media-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.global-page .ml-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(240, 211, 184, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 1 auto;
}

.global-page .ml-item:hover {
    border-color: rgba(200, 135, 58, 0.4);
    transform: scale(1.03);
}

.global-page .ml-item img {
    display: block;
    width: clamp(120px, 22vw, 182px);
    height: auto;
}

/* ===== FOLLOW US ===== */
.global-page .follow-sec {
    padding: clamp(48px, 8vw, 80px) 0 clamp(64px, 10vw, 96px);
}

.global-page .follow-box {
    padding: clamp(24px, 4vw, 40px);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('https://resources1.interface003.com/web20/img/skyline/bg_border.png') center / 100% 100% no-repeat;
}

.global-page .follow-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(200, 135, 58, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.global-page .follow-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 8vw, 80px);
    margin-bottom: clamp(24px, 4vw, 40px);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.global-page .follow-site-logo {
    height: clamp(64px, 12vw, 100px);
    object-fit: contain;
}

.global-page .follow-sky-logo {
    height: clamp(44px, 8vw, 60px);
    object-fit: contain;
}

.global-page .follow-email {
    font-size: clamp(13px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--gp-gold-pale);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    word-break: break-word;
    padding: 0 8px;
}

.global-page .follow-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.global-page .fsl {
    font-size: clamp(13px, 2vw, 20px);
    font-weight: 600;
    color: var(--gp-gold-pale);
}

.global-page .fsoc-img {
    width: clamp(30px, 5vw, 36px);
    height: clamp(30px, 5vw, 36px);
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.global-page .fsoc-img:hover {
    transform: scale(1.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .global-page .eval-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-page .bgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-page .gal-arr-left { left: 0; }
    .global-page .gal-arr-right { right: 0; }
}

@media (max-width: 768px) {
    .global-page .tab-bar {
        top: var(--site-header-height, 62px);
    }

    .global-page .hero-section {
        min-height: clamp(260px, 45vh, 400px);
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .global-page .hr2,
    .global-page .hr3 {
        display: none;
    }

    .global-page .brand-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 0;
    }

    .global-page .brand-icon-row {
        flex-direction: row;
    }

    .global-page .media-hero {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .global-page .mgrid {
        grid-template-columns: 1fr;
    }

    .global-page .mcard {
        flex-direction: column;
    }

    .global-page .mcard-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .global-page .guide-layout {
        flex-direction: column;
    }

    .global-page .guide-info {
        text-align: center;
    }

    .global-page .gi-dlrow {
        justify-content: center;
    }

    .global-page .rank-flex {
        gap: 28px;
    }

    .global-page .gal-arrow {
        display: none;
    }

    .global-page .gal-scroll {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 600px) {
    .global-page .eval-grid {
        grid-template-columns: 1fr;
    }

    .global-page .ec {
        min-height: 180px;
    }

    .global-page .stab {
        padding: 12px 14px;
    }

    .global-page .bgrid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .global-page .rank-flex {
        flex-direction: column;
        align-items: center;
    }

    .global-page .follow-social {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .global-page .sh img {
        display: none;
    }

    .global-page .sh {
        gap: 0;
    }

    .global-page .gal-w {
        width: min(280px, 85vw);
    }

    .global-page .gb-overlay {
        top: 34%;
    }
}
