/* ?????? RESET & VARIABLES ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --jungle-deep:  #060e07;
      --jungle-dark:  #0c1f0e;
      --jungle-mid:   #122014;
      --bone:         #e8d5a3;
      --bone-dim:     rgba(232,213,163,0.6);
      --gold:         #f0b429;
      --gold-light:   #ffe080;
      --fire-bright:  #ff7c2a;
      --earth:        #5c3317;
      --earth-dark:   #3a1f0b;
      --earth-deep:   #1a0a02;
      --font-display: 'Titan One', cursive;
      --font-body:    'Nunito', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--jungle-deep);
      color: var(--bone);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--jungle-deep); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ?????? SCROLL PROGRESS ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 3px; background: var(--gold); width: 0%;
      z-index: 10001; box-shadow: 0 0 10px rgba(240,180,41,0.8);
      transition: width 0.08s linear;
    }

    /* ?????? HEADER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 40px;
      background: rgba(6,14,7,0.88); backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(240,180,41,0.12);
      transition: padding 0.3s, background 0.3s;
    }
    #header.scrolled { padding: 10px 40px; background: rgba(6,14,7,0.97); }

    .header-logo { text-decoration: none; display: flex; align-items: center; }
    .header-logo .logo-img { height: 52px; width: auto; display: block; }

    nav { display: flex; align-items: center; gap: 22px; }
    nav a {
      font-family: var(--font-body); font-weight: 800; font-size: 0.82rem;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--bone-dim); text-decoration: none;
      transition: color 0.2s; position: relative;
    }
    nav a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.2s;
    }
    nav a:hover { color: var(--gold); }
    nav a:hover::after { transform: scaleX(1); }
    nav a.active { color: var(--gold); }
    nav a.active::after { transform: scaleX(1); }

    .btn-book {
      font-family: var(--font-body); font-weight: 800; font-size: 0.9rem;
      letter-spacing: 0.06em; background: var(--gold); color: var(--earth-deep);
      border: none; padding: 11px 26px; border-radius: 6px; cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 20px rgba(240,180,41,0.35);
    }
    .btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,180,41,0.55); filter: brightness(1.08); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 2px; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(6,14,7,0.98); z-index: 1100;
      flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    }
    @keyframes menu-open {
      from { opacity: 0; transform: translateX(50px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .mobile-menu.open { display: flex; animation: menu-open 0.35s cubic-bezier(0.22,1,0.36,1) both; }
    .mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--bone); text-decoration: none; transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: var(--bone); font-size: 2rem; cursor: pointer; font-family: var(--font-display); }

    /* ?????? SHARED ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    .section-label { display: inline-block; font-size: 0.7rem; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--bone); line-height: 1.05; }
    .accent { color: var(--gold); text-shadow: 0 0 20px rgba(240,180,41,0.4); }
    .section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--fire-bright)); border-radius: 2px; margin-top: 18px; }

    .btn-primary {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 1.05rem; letter-spacing: 0.04em; background: var(--gold);
      color: var(--earth-deep); padding: 17px 38px; border-radius: 6px;
      text-decoration: none; transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 24px rgba(240,180,41,0.4);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(240,180,41,0.6); filter: brightness(1.08); }

    /* ?????? HERO ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #hero {
      position: relative; min-height: 52vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 140px 20px 80px;
      background:
        radial-gradient(ellipse 80% 55% at 50% 0%, #1a2a3d 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 50% 0%, #3d1a04 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 20%, rgba(30,60,120,0.15) 0%, transparent 55%),
        linear-gradient(180deg, #0d1a24 0%, #091a0d 40%, #060e07 100%);
    }

    .hero-bg-grid {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background-image: linear-gradient(rgba(100,160,240,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(100,160,240,0.03) 1px, transparent 1px);
      background-size: 70px 70px;
    }

    /* ?????? RAIN DROPS ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .rain { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
    .drop {
      position: absolute;
      top: -10%;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(160,200,255,0.35), transparent);
      border-radius: 2px;
      animation: rainFall linear infinite;
    }

    .drop:nth-child(1)  { left: 5%;   height: 60px; animation-duration: 1.8s; animation-delay: 0s;    opacity: 0.5; }
    .drop:nth-child(2)  { left: 10%;  height: 45px; animation-duration: 2.2s; animation-delay: 0.4s;  opacity: 0.3; }
    .drop:nth-child(3)  { left: 17%;  height: 70px; animation-duration: 1.6s; animation-delay: 1.1s;  opacity: 0.45; }
    .drop:nth-child(4)  { left: 23%;  height: 50px; animation-duration: 2.4s; animation-delay: 0.7s;  opacity: 0.25; }
    .drop:nth-child(5)  { left: 31%;  height: 65px; animation-duration: 1.9s; animation-delay: 1.5s;  opacity: 0.4; }
    .drop:nth-child(6)  { left: 38%;  height: 40px; animation-duration: 2.1s; animation-delay: 0.2s;  opacity: 0.3; }
    .drop:nth-child(7)  { left: 45%;  height: 72px; animation-duration: 1.7s; animation-delay: 0.9s;  opacity: 0.5; }
    .drop:nth-child(8)  { left: 52%;  height: 48px; animation-duration: 2.3s; animation-delay: 1.8s;  opacity: 0.28; }
    .drop:nth-child(9)  { left: 59%;  height: 58px; animation-duration: 2.0s; animation-delay: 0.5s;  opacity: 0.38; }
    .drop:nth-child(10) { left: 65%;  height: 44px; animation-duration: 1.85s; animation-delay: 1.3s; opacity: 0.32; }
    .drop:nth-child(11) { left: 72%;  height: 66px; animation-duration: 2.15s; animation-delay: 0.8s; opacity: 0.42; }
    .drop:nth-child(12) { left: 79%;  height: 52px; animation-duration: 1.95s; animation-delay: 1.6s; opacity: 0.35; }
    .drop:nth-child(13) { left: 86%;  height: 63px; animation-duration: 2.05s; animation-delay: 0.3s; opacity: 0.48; }
    .drop:nth-child(14) { left: 92%;  height: 42px; animation-duration: 2.35s; animation-delay: 1.0s; opacity: 0.27; }
    .drop:nth-child(15) { left: 97%;  height: 55px; animation-duration: 1.75s; animation-delay: 1.4s; opacity: 0.4; }

    @keyframes rainFall {
      0%   { transform: translateY(-10%) skewX(-8deg); opacity: 0; }
      10%  { opacity: 1; }
      85%  { opacity: 0.7; }
      100% { transform: translateY(115vh) skewX(-8deg); opacity: 0; }
    }

    .hero-content { position: relative; z-index: 2; max-width: 820px; }

    .hero-eyebrow {
      font-size: 0.72rem; font-weight: 900; letter-spacing: 5px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
      opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
    }

    .hero-brand {
      font-family: var(--font-display); line-height: 0.95; margin-bottom: 20px;
      opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
    }
    .brand-main { display: block; font-size: clamp(2.4rem, 8vw, 5.5rem); color: var(--bone); letter-spacing: -0.02em; }
    .brand-sub  {
      display: block; font-size: clamp(1.6rem, 5vw, 3.2rem); color: var(--gold);
      text-shadow: 0 0 40px rgba(240,180,41,0.5); letter-spacing: 0.04em;
    }

    .hero-sub {
      font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--bone-dim);
      line-height: 1.75; max-width: 560px; margin: 0 auto;
      opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
    }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(20px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ?????? INTRO BANNER ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #intro-banner {
      padding: 60px 40px;
      background: var(--jungle-dark);
    }
    .intro-banner-inner {
      max-width: 900px; margin: 0 auto;
      background: linear-gradient(135deg, rgba(240,180,41,0.08) 0%, rgba(58,31,11,0.25) 100%);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 16px;
      padding: 40px 48px;
      display: flex; align-items: center; gap: 28px;
    }
    .intro-banner-icon {
      font-size: 3rem; flex-shrink: 0;
      background: rgba(240,180,41,0.1);
      border: 1px solid rgba(240,180,41,0.25);
      border-radius: 14px; padding: 16px 18px; line-height: 1;
    }
    .intro-banner-text {
      font-size: clamp(1rem, 2.2vw, 1.15rem);
      color: var(--bone-dim); line-height: 1.8;
    }
    .intro-banner-text strong { color: var(--bone); }

    /* ?????? POLICY CARDS ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #policy-cards {
      padding: 80px 40px;
      background: var(--jungle-deep);
    }
    .policy-cards-header { max-width: 900px; margin: 0 auto 48px; }

    .cards-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }

    .policy-card {
      background: rgba(18,32,20,0.6);
      border: 1px solid rgba(232,213,163,0.1);
      border-radius: 16px;
      padding: 36px 32px;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .policy-card:hover {
      transform: translateY(-4px);
      border-color: rgba(240,180,41,0.25);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .policy-card.warning {
      border-color: rgba(255,124,42,0.3);
      background: rgba(58,20,5,0.35);
      box-shadow: 0 0 30px rgba(255,124,42,0.1), inset 0 0 30px rgba(255,124,42,0.04);
    }
    .policy-card.warning:hover {
      border-color: rgba(255,124,42,0.6);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 40px rgba(255,124,42,0.18);
    }

    .card-icon {
      font-size: 2.2rem; line-height: 1;
      background: rgba(240,180,41,0.08);
      border: 1px solid rgba(240,180,41,0.18);
      border-radius: 12px; padding: 12px 14px;
      display: inline-block; margin-bottom: 20px;
    }
    .policy-card.warning .card-icon {
      background: rgba(255,124,42,0.1);
      border-color: rgba(255,124,42,0.3);
    }

    .card-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.3rem;
      color: var(--bone); margin-bottom: 14px; line-height: 1.1;
    }
    .policy-card.warning .card-title { color: var(--fire-bright); }

    .card-body {
      font-size: 0.93rem; color: var(--bone-dim); line-height: 1.8;
    }

    .card-list {
      margin: 12px 0; padding-left: 0; list-style: none;
    }
    .card-list li {
      padding: 7px 0 7px 22px; position: relative;
      font-size: 0.9rem; color: var(--bone-dim); border-bottom: 1px solid rgba(232,213,163,0.06);
    }
    .card-list li:last-child { border-bottom: none; }
    .card-list li::before {
      content: '???'; position: absolute; left: 0;
      color: var(--fire-bright); font-weight: 900; font-size: 1rem;
    }
    .card-note {
      font-size: 0.85rem; color: rgba(232,213,163,0.45);
      margin-top: 14px; font-style: italic;
    }

    /* ?????? STAYS OPEN ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #stays-open {
      padding: 80px 40px;
      background: var(--jungle-dark);
    }
    .stays-open-inner { max-width: 1000px; margin: 0 auto; }
    .stays-open-header { text-align: center; margin-bottom: 48px; }

    .open-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }

    .open-item {
      background: rgba(6,14,7,0.5);
      border: 1px solid rgba(240,180,41,0.14);
      border-radius: 14px;
      padding: 28px 20px; text-align: center;
      transition: transform 0.2s, border-color 0.2s, background 0.2s;
    }
    .open-item:hover {
      transform: translateY(-4px);
      border-color: rgba(240,180,41,0.32);
      background: rgba(240,180,41,0.05);
    }

    .open-item-icon {
      font-size: 2.4rem; line-height: 1;
      display: block; margin-bottom: 14px;
    }

    .open-item-label {
      font-weight: 800; font-size: 0.85rem;
      letter-spacing: 0.5px; color: var(--bone);
      line-height: 1.4;
    }

    .open-badge {
      display: inline-block; margin-top: 12px;
      font-size: 0.68rem; font-weight: 900; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
      background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
      padding: 4px 10px; border-radius: 20px;
    }

    /* ?????? PASS & REFUND ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #pass-refund {
      padding: 80px 40px;
      background: var(--jungle-deep);
    }
    .pass-refund-inner { max-width: 1000px; margin: 0 auto; }
    .pass-refund-header { text-align: center; margin-bottom: 48px; }

    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

    .feature-card {
      border-radius: 16px; padding: 40px 36px;
      border: 1px solid rgba(232,213,163,0.1);
      background: rgba(18,32,20,0.5);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.45); }
    .feature-card.gold-accent {
      border-color: rgba(240,180,41,0.28);
      background: linear-gradient(140deg, rgba(58,31,11,0.3) 0%, rgba(18,32,20,0.5) 100%);
      box-shadow: 0 0 40px rgba(240,180,41,0.06);
    }

    .feature-card-icon {
      font-size: 2rem; line-height: 1;
      background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.2);
      border-radius: 12px; padding: 12px 14px;
      display: inline-block; margin-bottom: 22px;
    }
    .feature-card-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.4rem;
      color: var(--bone); margin-bottom: 16px; line-height: 1.1;
    }
    .feature-card.gold-accent .feature-card-title { color: var(--gold); }
    .feature-card-body {
      font-size: 0.93rem; color: var(--bone-dim); line-height: 1.85;
    }

    /* ?????? CTA STRIP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #cta-strip {
      padding: 80px 40px;
      background: var(--jungle-dark);
      text-align: center;
      position: relative;
    }
    #cta-strip::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(58,31,11,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 2rem); color: var(--bone); margin-bottom: 14px; }
    .cta-inner p { color: var(--bone-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

    /* ?????? FOOTER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    footer { background: var(--earth-deep); border-top: 1px solid rgba(240,180,41,0.12); padding: 60px 40px; }

    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: auto 1fr auto;
      align-items: center; gap: 40px;
    }

    .footer-logo { text-decoration: none; display: flex; align-items: center; }
    .footer-logo .logo-img { height: 48px; width: auto; display: block; }

    .footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 0.82rem; font-weight: 700; color: rgba(232,213,163,0.4); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    .footer-socials { display: flex; gap: 12px; align-items: center; }
    .social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(232,213,163,0.05); border: 1px solid rgba(232,213,163,0.1); transition: background 0.2s, border-color 0.2s; }
    .social-link:hover { background: rgba(240,180,41,0.12); border-color: rgba(240,180,41,0.3); }
    .social-link svg { width: 16px; height: 16px; fill: var(--bone-dim); }

    .footer-copy {
      max-width: 1100px; margin: 32px auto 0;
      font-size: 0.75rem; color: rgba(232,213,163,0.2);
      text-align: center; padding-top: 28px;
      border-top: 1px solid rgba(232,213,163,0.06);
    }
    .footer-copy a { color: rgba(232,213,163,0.2); text-decoration: none; }

    /* ?????? FLOAT CTA ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .float-cta {
      position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 500; pointer-events: none;
      opacity: 0; transition: opacity 0.4s;
    }
    .float-cta.visible { opacity: 1; pointer-events: auto; }
    .float-cta a {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 0.9rem; background: var(--gold); color: var(--earth-deep);
      padding: 14px 28px; border-radius: 50px; text-decoration: none;
      box-shadow: 0 8px 32px rgba(240,180,41,0.5);
      white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s;
    }
    .float-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,180,41,0.65); }

    /* ?????? RESPONSIVE ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    @media (max-width: 900px) {
      .cards-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .open-grid { grid-template-columns: repeat(2, 1fr); }
      .two-col { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      #header { padding: 14px 20px; }
      nav { display: none; }
      .btn-book { display: none; }
      .hamburger { display: flex; }
      #intro-banner, #policy-cards, #stays-open, #pass-refund, #cta-strip { padding-left: 20px; padding-right: 20px; }
      .intro-banner-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
      .footer-socials { justify-content: center; }
      .open-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .open-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ?????? LIVE WEATHER ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #live-weather {
      padding: 80px 40px;
      background: var(--jungle-mid);
    }
    .weather-inner { max-width: 1000px; margin: 0 auto; }
    .weather-header { margin-bottom: 48px; }
    .weather-header p { margin-top: 10px; color: var(--bone-dim); font-size: 0.85rem; letter-spacing: 1px; }

    .weather-loading, .weather-error {
      text-align: center; padding: 40px;
      color: var(--bone-dim); font-size: 0.95rem;
    }
    .weather-error { color: var(--fire-bright); }

    /* Current weather card */
    .weather-current-card {
      background: linear-gradient(135deg, rgba(18,32,20,0.7) 0%, rgba(13,26,36,0.8) 100%);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 20px;
      padding: 40px 44px;
      display: flex; align-items: center; gap: 40px;
      margin-bottom: 32px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    }
    .weather-icon-big {
      font-size: 5rem; line-height: 1; flex-shrink: 0;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    }
    .weather-current-main { flex: 1; }
    .weather-temp-row {
      display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
      margin-bottom: 6px;
    }
    .weather-temp {
      font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5rem);
      color: var(--bone); line-height: 1;
    }
    .weather-feels {
      font-size: 0.9rem; color: var(--bone-dim);
    }
    .weather-condition {
      font-family: var(--font-display); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: var(--gold); margin-bottom: 20px; letter-spacing: 0.03em;
    }
    .weather-stats {
      display: flex; gap: 28px; flex-wrap: wrap;
    }
    .weather-stat {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.88rem; color: var(--bone-dim);
    }
    .weather-stat-icon { font-size: 1.1rem; }
    .weather-stat-label { font-weight: 700; color: var(--bone); }
    .weather-location-tag {
      flex-shrink: 0; text-align: right;
    }
    .weather-location-tag .loc-name {
      font-weight: 800; font-size: 0.8rem; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--bone-dim);
    }
    .weather-location-tag .loc-updated {
      font-size: 0.72rem; color: rgba(232,213,163,0.3);
      margin-top: 6px;
    }
    .weather-alert {
      margin-top: 14px; padding: 10px 16px;
      background: rgba(255,124,42,0.1); border: 1px solid rgba(255,124,42,0.3);
      border-radius: 8px; font-size: 0.85rem; color: var(--fire-bright);
      display: inline-flex; align-items: center; gap: 8px;
    }

    /* Forecast row */
    .forecast-grid {
      display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
    }
    .forecast-day {
      background: rgba(12,31,14,0.55);
      border: 1px solid rgba(232,213,163,0.08);
      border-radius: 14px; padding: 20px 12px;
      text-align: center;
      transition: transform 0.2s, border-color 0.2s, background 0.2s;
      cursor: default;
    }
    .forecast-day:hover {
      transform: translateY(-4px);
      border-color: rgba(240,180,41,0.22);
      background: rgba(240,180,41,0.04);
    }
    .forecast-day.today {
      border-color: rgba(240,180,41,0.3);
      background: linear-gradient(160deg, rgba(58,31,11,0.3) 0%, rgba(18,32,20,0.6) 100%);
    }
    .fc-day-name {
      font-size: 0.68rem; font-weight: 900; letter-spacing: 2px;
      text-transform: uppercase; color: var(--bone-dim);
      margin-bottom: 10px;
    }
    .forecast-day.today .fc-day-name { color: var(--gold); }
    .fc-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 10px; }
    .fc-temps {
      display: flex; justify-content: center; gap: 6px; align-items: baseline;
      margin-bottom: 8px;
    }
    .fc-high {
      font-weight: 800; font-size: 1rem; color: var(--bone);
    }
    .fc-low {
      font-size: 0.82rem; color: var(--bone-dim);
    }
    .fc-rain {
      font-size: 0.72rem; color: rgba(160,200,255,0.65);
      font-weight: 700;
    }

    @media (max-width: 900px) {
      .weather-current-card { flex-direction: column; text-align: center; gap: 24px; }
      .weather-stats { justify-content: center; }
      .weather-location-tag { text-align: center; }
      .forecast-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 600px) {
      #live-weather { padding-left: 20px; padding-right: 20px; }
      .forecast-grid { grid-template-columns: repeat(3, 1fr); }
      .weather-current-card { padding: 28px 20px; }
    }
    @media (max-width: 420px) {
      .forecast-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ?????? SCROLL TO TOP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #scroll-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 600;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(240,180,41,0.45);
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s, filter 0.2s;
      pointer-events: none;
    }
    #scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #scroll-top:hover { box-shadow: 0 8px 32px rgba(240,180,41,0.65); filter: brightness(1.1); }
    #scroll-top svg { width: 18px; height: 18px; fill: none; stroke: #1a0a02; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    @media (max-width: 768px) {
      #scroll-top { bottom: 76px; right: 16px; z-index: 950; }
    }