/* ========================== */
/* GLOBAL                     */
/* ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: #010f18;
  color: #ffffff;
}

/* ========================== */
/* ANIMATIONS                 */
/* ========================== */
@keyframes bgDrift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

@keyframes sway {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(10px); }
}

@keyframes leafFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: .9; }
  50%  { transform: translateY(18px) rotate(180deg); opacity: .3; }
  100% { transform: translateY(0) rotate(360deg); opacity: .7; }
}

@keyframes floatVertical {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  10% { opacity: 0.8; }
  50% { opacity: 1; }
  90% { opacity: 0.4; }
  100% {
    transform: translateY(-50vh);
    opacity: 0;
  }
}

/* ========================== */
/* DECOR (Vine / Leaf / Particle) */
/* ========================== */
.vine {
  position: absolute;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(140, 245, 255, 0.85),
    rgba(170, 235, 255, 0.5)
  );
  animation: sway 4s ease-in-out infinite;
}

.leaf {
  position: absolute;
  width: 28px;
  height: 18px;
  border-radius: 0 100% 0 100%;
  background: rgba(160, 255, 255, 0.8);
  filter: blur(0.2px);
  animation: leafFloat 8s ease-in-out infinite;
  opacity: .85;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(160,255,255,0.95),
    rgba(186, 236, 253, 0.25)
  );
  box-shadow: 0 0 10px rgba(160,255,255,0.7);
}

/* ========================== */
/* WELCOME PAGE WRAPPER       */
/* ========================== */

#welcomePage {
  position: relative;
  min-height: 100vh;
  padding: 30px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  /* 🌊 Aqua → Sky Blue → Lagoon (สดใสจริง) */
  background:
    linear-gradient(180deg,
      rgba(178, 245, 255, 0.95) 0%,
      rgba(122, 233, 255, 0.95) 35%,
      rgba(74, 210, 255, 0.95) 70%,
      rgba(28, 178, 235, 0.95) 100%
    );
}

#welcomePage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.45) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.38) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,0.34) 0%, transparent 60%);
  pointer-events: none;
  animation: bgDrift 20s infinite alternate;
  z-index: 0;
}

#welcomePage,
#welcomePage * {
  color: #214a61;
}

/* ============================== */
/* LAYOUT                         */
/* ============================== */
.welcome-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  padding: 16px;
}

/* ============================== */
/* LEFT TEXT BOX                  */
/* ============================== */

.welcome-container {
  flex: 1;
  max-width: clamp(360px, 60vw, 520px);
  min-width: 280px;

  background: rgba(255, 255, 255, 0.384);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 12px 32px rgba(15, 180, 220, 0.25);

  padding: clamp(20px, 4vw, 32px);
  border-radius: 24px;
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.welcome-container h1 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 4px;
}

/* ============================== */
/* SCROLLABLE MESSAGE BOX         */
/* ============================== */

.message-box {
  color: #500808;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(74, 210, 255, 0.55);
  border-radius: 18px;
  padding: 16px;
  line-height: 1.6;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  max-height: clamp(140px, 38vh, 260px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(130,235,255,0.6) transparent;
}

.message-box::-webkit-scrollbar {
  width: 6px;
}
.message-box::-webkit-scrollbar-thumb {
  background: rgba(130,235,255,0.7);
  border-radius: 6px;
}
.message-box::-webkit-scrollbar-track {
  background: transparent;
}

/* ============================== */
/* CHECKBOX + BUTTON              */
/* ============================== */

.agree-box {
  margin: 15px 0 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  color: #eaffff;
  font-size: 0.95em;
  user-select: none;
}

.agree-box input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.agree-box label {
  cursor: pointer;
}

.enter-btn {
  width: 100%;
  border: none;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;

  background: linear-gradient(135deg, #1ff0db, #08b6c8);
  box-shadow:
    0 10px 26px rgba(15, 220, 210, 0.45),
    0 0 22px rgba(120, 245, 255, 0.35);

  transition: all 0.25s ease;
}

.enter-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #42fff0, #14d0dd);
  box-shadow:
    0 14px 34px rgba(10, 220, 210, 0.6),
    0 0 30px rgba(200,255,255,0.55);
}

.enter-btn.disabled,
.enter-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ============================== */
/* RIGHT IMAGE                    */
/* ============================== */

.welcome-side-image {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 380px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-side-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0px 14px 30px rgba(0, 0, 0, 0.4));
  transition: transform .3s ease, filter .3s ease;
}

.welcome-side-image img:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0px 18px 40px rgba(0,255,220,0.35));
}

/* ============================== */
/* RESPONSIVE                     */
/* ============================== */

@media (max-width: 900px) {
  #welcomePage {
    padding: 24px 10px;
    align-items: flex-start;
  }

  .welcome-layout {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .welcome-container {
    max-width: 95%;
    padding: 18px 16px 26px;
  }

  .message-box {
    max-height: 200px;
    font-size: 0.83rem;
  }

  .agree-box {
    font-size: 0.85rem;
  }

  .enter-btn {
    padding: 11px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .welcome-layout {
    gap: 16px;
  }

  .welcome-container h1 {
    font-size: 1.3rem;
  }

  .welcome-side-image {
    width: clamp(180px, 55vw, 260px);
  }
}

/* ========================= */
/* MAIN WEBSITE HERO         */
/* ========================= */

#mainWebsite {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #94f3f8 0%,   /* sky almost white */
    #69d9e7 30%,  /* baby aqua */
    #61E9FF 65%,  /* fresh cyan */
    #39d7f0 100%  /* aqua-blue */
  );
}

/* TOP NAV SOCIAL */
.top-nav {
  padding: 30px 50px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 200, 190, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.social-btn:hover {
  background: rgba(0, 200, 190, 0.22);
  border-color: #00e1d0;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 200, 190, 0.55);
}

.social-btn svg {
  width: 24px;
  height: 24px;
  fill: #00e1d0;
}

.icon-circle {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.25s ease;
  pointer-events: none;
}

.social-btn:hover .icon-circle {
  transform: scale(1.08);
}

.tooltip {
  position: absolute;
  bottom: -35px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.social-btn:hover .tooltip {
  opacity: 1;
}

/* HERO SIDE IMAGES */
.hero-sides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}

.hero-side-img {
  height: 100vh;
  width: auto;
  object-fit: contain;
  display: block;
}

#mainWebsite .top-nav,
#mainWebsite .content {
  position: relative;
  z-index: 5;
}

@media (max-width: 900px) {
  .hero-side-img {
    height: 80vh;
    opacity: 0.95;
  }
}

@media (max-width: 600px) {
  .hero-side-img {
    height: 70vh;
    opacity: 0.9;
  }
}

/* HERO CONTENT */
.content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: clamp(80px, 12vw, 220px);
  padding-bottom: clamp(40px, 6vw, 140px);
  color: white;
}

.content p {
  font-size: 1.4em;
  color: #b0f4ff;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* HERO TITLE */
#siteTitle {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(48px, 8vw, 150px);
  color: #FFD54F;
  letter-spacing: 3px;
  -webkit-text-stroke: 3px #5B3519;
  text-shadow:
    0 6px 12px rgba(0,0,0,0.45),
    0 0 35px rgba(255, 215, 100, 0.35);
  margin-bottom: clamp(12px, 2vw, 26px);
}

/* CTA WRAPPER */
.hero-cta {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(16px);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  max-width: 90%;
  box-shadow:
    0 8px 22px rgba(0,0,0,.35),
    0 0 14px rgba(130,235,255,.28);
}

.btn-buy {
  padding: 9px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg,#28e6ca,#14a297);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  box-shadow:
    0 6px 14px rgba(214, 250, 255, 0.5),
    0 0 16px rgba(120,245,225,0.45);
  transition: .25s ease;
}

.btn-buy:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 10px 22px rgba(0,0,0,.7),
    0 0 22px rgba(150,255,235,.7);
  background: linear-gradient(135deg,#48f5da,#1ec6aa);
}

.ca-wrapper {
  background: rgba(4,25,32,.9);
  padding: 4px 5px;
  border-radius: 999px;
  border: 1px solid rgba(120,235,245,0.3);
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  overflow: hidden;
}

.ca-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem;
  color: #c8fffb;
  flex-shrink: 0;
}

.ca-value {
  font-family: 'Poppins', monospace;
  font-size: 0.5rem;
  color: #e8feff;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

/* BOTTOM CREATURES */
.bottom-creatures {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 2vw;
  pointer-events: none;
  z-index: 50;
}

.bottom-creatures img {
  width: clamp(180px, 28vw, 720px);
  height: auto;
  pointer-events: auto;
  transition: transform .35s ease;
}

.creature-left:hover,
.creature-right:hover {
  transform: translateY(0px) scale(1.04);
}

.creature-center {
  transform: translateX(-50%);
}

/* จุกเลื่อน (Scroll Pill) */
.scroll-pill {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  pointer-events: none;
}

.scroll-pill-dot {
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  animation: scrollDot 1.4s infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
  .content {
    padding-top: 70px;
  }

  .content p {
    font-size: 1.15em;
  }

  .hero-cta {
    flex-direction: column;
    padding: 10px 14px;
    gap: 8px;
  }

  .btn-buy {
    width: 100%;
    text-align: center;
  }

  .ca-wrapper {
    width: 100%;
    justify-content: center;
  }

  .bottom-creatures img {
    width: clamp(140px, 32vw, 400px);
  }
}

@media (max-width: 750px) {
  .hero-cta {
    flex-direction: column;
    width: 92%;
    gap: 8px;
  }

  .btn-buy,
  .ca-wrapper {
    width: 100%;
    justify-content: center;
  }
}

/* ================= */
/* ABOUT SECTION     */
/* ================= */

#aboutSection {
  width: 100%;
  min-height: 100vh;
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    #39d7f0 0%,   
    #61E9FF 35%,
    #35D6F2 75%,
    #20BDE8 100%
  );
}

#aboutSection::before {
  content: none;
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 90px;
}

.about-text {
  flex: 1;
  max-width: 640px;
  padding-left: 220px;
  margin-top: 120px;
}

.about-text h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  color: #FFD54F;
  -webkit-text-stroke: 3px #5B3519;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-shadow:
    0 4px 10px rgba(0,0,0,.45),
    0 0 25px rgba(255,215,100,.35);
}

.about-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: #184049;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 200px;
}

.about-image img {
  width: clamp(240px, 30vw, 620px);
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}

.about-image img:hover {
  transform: translateY(-6px) scale(1.02);
}

@media (max-width: 900px) {
  #aboutSection {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  #aboutSection .about-text {
    padding-left: 0;
    margin-top: 0;
    max-width: 100%;
    text-align: left;
  }

  #aboutSection .about-text h2 {
    font-size: 2rem !important;
    -webkit-text-stroke-width: 2px;
    letter-spacing: 1px;
  }

  #aboutSection .about-text p {
    font-size: 0.95rem !important;
    line-height: 1.65;
  }

  .about-image {
    order: 2;
    align-self: center;
    margin-top: 24px;
    margin-left: 0;
  }
}

/* ================= */
/* COMMUNITY SECTION */
/* ================= */

#communitySection {
  width: 100%;
  min-height: 100vh;
  padding: 100px 60px 120px;
  background: linear-gradient(
    180deg,
    #20BDE8 0%,    
    #35D6F2 35%,
    #20BDE8 70%,
    #0EA6D6 100%
  );
}

#communitySection::before {
  content: none;
}

.community-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 5;
}

.community-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
  color: #FFD54F;
  -webkit-text-stroke: 2px #5B3519;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow:
    0 4px 10px rgba(0,0,0,.6),
    0 0 30px rgba(255,215,100,.3);
}

.community-subtitle {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #c5fbff;
  font-size: 1rem;
  opacity: 0.92;
  margin-bottom: 40px;
}

.tweet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* การ์ดทวีต – glass ใส */
.tweet-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 12px 12px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(120, 240, 255, 0.26);
  text-decoration: none;
  color: #e8feff;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  backdrop-filter: blur(18px);
}

.tweet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(255, 255, 255, 0.36),
      transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.tweet-card:hover {
  transform: translateY(-6px);
  border-color: #FFEB7A;
  box-shadow:
    0 26px 40px rgba(0,0,0,0.6),
    0 0 26px rgba(255,215,90,0.6);
}

.tweet-card:hover::before {
  opacity: 1;
}

.tweet-media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #02080c;
}

.tweet-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tweet-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #10353e;
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .tweet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #communitySection {
    padding: 80px 20px 100px;
  }

  .tweet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .tweet-card {
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .tweet-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== VIDEO LOOP SECTION ================== */

#videoSection {
  width: 100%;
  min-height: 60vh;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0EA6D6 0%,    
    #0EA6D6 45%,
    #088CB8 80%,
    #067AA4 100%
  );
}

#videoSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.26) 0%, transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.video-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}

.video-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  text-align: center;
  color: #FFD54F;
  -webkit-text-stroke: 2px #5B3519;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow:
    0 4px 10px rgba(0,0,0,.6),
    0 0 24px rgba(255,215,100,.32);
}

.video-subtitle {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #b7f5ff;
  font-size: 0.98rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.video-marquee {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  margin-top: 12px;
}

.video-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: videoScroll 50s linear infinite;
}

.video-marquee:hover .video-track {
  animation-play-state: paused;
}

@keyframes videoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.video-card {
  flex: 0 0 auto;
  width: 210px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;

  background: radial-gradient(circle at top left,
              rgba(80, 190, 220, 0.35),
              rgba(5, 15, 18, 0.98));
  border: 1px solid rgba(150, 245, 255, 0.45);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.6),
    0 0 18px rgba(120, 240, 255, 0.25);

  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.video-card video,
.video-card img,
.video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(190, 255, 255, 0.9);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.85),
    0 0 26px rgba(160, 255, 255, 0.55);
}

.video-bottom-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.video-bottom-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

.video-bottom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#videoSection img {
  display: block;
  margin: 50px auto 0;
  width: clamp(180px, 26vw, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  transition: transform .25s ease;
}

#videoSection img:hover {
  transform: translateY(-4px) scale(1.03);
}

/* responsive video */
@media (max-width: 900px) {
  #videoSection {
    padding: 60px 0 80px;
  }

  .video-inner {
    padding: 0 16px;
  }

  .video-card {
    width: 180px;
  }

  .video-track {
    animation-duration: 40s;
  }
}

@media (max-width: 600px) {
  .video-card {
    width: 150px;
  }

  .video-track {
    animation-duration: 30s;
  }
}

@media(max-width: 700px) {
  .video-bottom-image img {
    width: clamp(160px, 42vw, 300px);
  }
}

/* ================== FOOTER ================== */

.site-footer {
  width: 100%;
  padding: 18px 16px 24px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #e6fffc;
  background: #067AA4;  
  border-top: 1px solid rgba(255,255,255,.12);
}

/* =============== GLOBAL FLOAT LEAVES =============== */

.leaf-global {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

/* random positions */
.leaf.l1 { top: 18%; left: 12%; animation-delay: 0s; }
.leaf.l2 { top: 30%; left: 78%; animation-delay: 1.2s; }
.leaf.l3 { top: 52%; left: 34%; animation-delay: 2s; }
.leaf.l4 { top: 68%; left: 60%; animation-delay: 2.9s; }
.leaf.l5 { top: 80%; left: 20%; animation-delay: 4s; }
