    :root {
      --font-cartoon: 'Fredoka', cursive, sans-serif;
      --font-body: 'Outfit', sans-serif;

      --c-yellow: #FFD166;
      --c-yellow-dark: #E5B239;
      --c-orange: #FF9F1C;
      --c-coral: #FF6B6B;
      --c-pink: #FF5D8F;
      --c-cyan: #00B4D8;
      --c-blue: #118AB2;
      --c-dark-blue: #073B4C;
      --c-mint: #06D6A0;
      --c-purple: #8338EC;
      
      --border-cartoon: 3px solid #1E293B;
      --shadow-3d: 0 6px 0 #1E293B;
      --shadow-3d-lg: 0 10px 0 #1E293B;
      --shadow-3d-sm: 0 4px 0 #1E293B;
      --radius-cartoon: 24px;
      --radius-pill: 50px;
    }

    * {
      font-family: var(--font-body);
    }

    h1, h2, h3, h4, h5, h6, .cartoon-font, .btn-cartoon, .nav-cartoon {
      font-family: var(--font-cartoon);
      letter-spacing: 0.3px;
    }

    html, body {
      max-width: 100vw;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(135deg, #F0F9FF 0%, #FFFBEB 50%, #FDF2F8 100%);
      color: #1E293B;
      min-height: 100vh;
      position: relative;
    }

    
    .btn-3d {
      font-family: var(--font-cartoon);
      font-weight: 700;
      border: var(--border-cartoon);
      border-radius: var(--radius-pill);
      padding: 10px 24px;
      box-shadow: var(--shadow-3d);
      transition: all 0.15s ease-in-out;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      cursor: pointer;
    }

    .btn-3d:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 0 #1E293B;
    }

    .btn-3d:active {
      transform: translateY(4px);
      box-shadow: 0 2px 0 #1E293B;
    }

    .btn-3d-yellow { background-color: var(--c-yellow); color: #1E293B; }
    .btn-3d-coral { background-color: var(--c-coral); color: #FFFFFF; }
    .btn-3d-cyan { background-color: var(--c-cyan); color: #FFFFFF; }
    .btn-3d-mint { background-color: var(--c-mint); color: #1E293B; }
    .btn-3d-purple { background-color: var(--c-purple); color: #FFFFFF; }
    .btn-3d-white { background-color: #FFFFFF; color: #1E293B; }

    
    .header-floating {
      position: fixed;
      top: 15px;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .nav-island {
      max-width: 1180px;
      width: 100%;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border: var(--border-cartoon);
      border-radius: 40px;
      box-shadow: var(--shadow-3d);
      padding: 8px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    .nav-island:hover {
      box-shadow: 0 8px 0 #1E293B, 0 12px 25px rgba(0, 0, 0, 0.1);
    }

    .nav-logo-wrap img {
      max-height: 48px;
      filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.1));
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-logo-wrap:hover img {
      transform: scale(1.1) rotate(-3deg);
    }

    .nav-menu-list {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 6px;
      align-items: center;
    }

    .nav-item-link {
      font-family: var(--font-cartoon);
      font-size: 15px;
      font-weight: 600;
      color: #1E293B;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .nav-item-link:hover, .nav-item-link.active {
      background: var(--c-yellow);
      border: 2px solid #1E293B;
      transform: translateY(-2px);
      box-shadow: 0 3px 0 #1E293B;
      color: #1E293B;
    }

    .btn-nav-login {
      background: linear-gradient(135deg, #FF6B6B 0%, #FF5D8F 100%);
      color: #FFF !important;
      border: 2px solid #1E293B;
      box-shadow: 0 4px 0 #1E293B;
      padding: 8px 18px !important;
      border-radius: var(--radius-pill);
      font-weight: 700;
      text-decoration: none;
    }

    .btn-nav-login:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 6px 0 #1E293B;
      color: #FFF !important;
    }

    
    .mobile-burger {
      display: none;
      background: var(--c-yellow);
      border: var(--border-cartoon);
      border-radius: 12px;
      padding: 6px 10px;
      font-size: 22px;
      cursor: pointer;
      box-shadow: var(--shadow-3d-sm);
    }

    @media (max-width: 991px) {
      .header-floating {
        top: 10px;
        padding: 0 12px;
      }
      .nav-island {
        padding: 6px 14px;
        border-radius: 20px;
      }
      .mobile-burger { display: block; }
      .nav-menu-list {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        box-sizing: border-box;
        background: #FFF;
        border: var(--border-cartoon);
        border-radius: 20px;
        box-shadow: var(--shadow-3d-lg);
        flex-direction: column;
        padding: 16px;
        display: none;
        gap: 10px;
        z-index: 1002;
      }
      .nav-menu-list.show { display: flex; }
    }

    
    #hero {
      position: relative;
      padding-top: 140px;
      padding-bottom: 90px;
      background: radial-gradient(circle at 50% 20%, #FFE8B6 0%, #BAE6FD 60%, #E0F2FE 100%);
      border-bottom: var(--border-cartoon);
      overflow: hidden;
    }

    
    .bg-balloon {
      position: absolute;
      pointer-events: none;
      opacity: 0.85;
      animation: floatSlow 6s ease-in-out infinite alternate;
      z-index: 1;
    }

    @keyframes floatSlow {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-25px) rotate(8deg); }
    }

    .balloon-1 { top: 12%; left: 4%; font-size: 4rem; }
    .balloon-2 { top: 25%; right: 6%; font-size: 3.5rem; animation-delay: -2s; }
    .balloon-3 { bottom: 15%; left: 8%; font-size: 3rem; animation-delay: -4s; }
    .balloon-4 { top: 60%; right: 4%; font-size: 3.8rem; animation-delay: -1.5s; }

    .hero-container {
      position: relative;
      z-index: 2;
    }

    .hero-badge-pill {
      background: #FFFFFF;
      border: var(--border-cartoon);
      box-shadow: var(--shadow-3d);
      border-radius: var(--radius-pill);
      padding: 8px 24px;
      font-size: 16px;
      font-weight: 700;
      color: #1E293B;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .hero-title-fun {
      font-size: 3.4rem;
      font-weight: 900;
      color: #073B4C;
      line-height: 1.15;
      text-shadow: 3px 3px 0 #FFD166, 6px 6px 0 rgba(0,0,0,0.06);
    }

    @media (max-width: 768px) {
      .hero-title-fun { font-size: 2.2rem; }
    }

    .hero-logo-main {
      max-height: 200px;
      filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.15));
      animation: bounceLogo 3s ease-in-out infinite;
    }

    @keyframes bounceLogo {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-12px) scale(1.03); }
    }

    
    .countdown-fun-wrap {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin: 30px auto;
      flex-wrap: wrap;
    }

    .countdown-card-3d {
      border: var(--border-cartoon);
      border-radius: 20px;
      padding: 16px 18px;
      min-width: 105px;
      box-shadow: var(--shadow-3d);
      text-align: center;
      transition: transform 0.2s ease;
    }

    .countdown-card-3d:hover {
      transform: translateY(-6px) rotate(-2deg);
    }

    .countdown-card-3d.c-days { background-color: var(--c-coral); color: #FFF; transform: rotate(-3deg); }
    .countdown-card-3d.c-hours { background-color: var(--c-yellow); color: #1E293B; transform: rotate(2deg); }
    .countdown-card-3d.c-mins { background-color: var(--c-mint); color: #1E293B; transform: rotate(-2deg); }
    .countdown-card-3d.c-secs { background-color: var(--c-purple); color: #FFF; transform: rotate(3deg); }

    .countdown-num {
      font-family: var(--font-cartoon);
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1;
    }

    .countdown-lbl {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    
    .cartoon-section-title {
      text-align: center;
      margin-bottom: 45px;
      position: relative;
    }

    .title-pill-tag {
      background: var(--c-yellow);
      border: var(--border-cartoon);
      box-shadow: var(--shadow-3d-sm);
      border-radius: var(--radius-pill);
      padding: 6px 20px;
      font-size: 14px;
      font-weight: 800;
      color: #1E293B;
      display: inline-block;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .cartoon-title-text {
      font-size: 2.5rem;
      font-weight: 800;
      color: #073B4C;
      text-shadow: 2px 2px 0 var(--c-yellow);
    }

    
    .anniversary-grand-ribbon-container {
      position: relative;
      display: inline-block;
      margin: 8px auto 20px auto;
      max-width: 100%;
      z-index: 10;
    }

    
    .festive-bunting {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 14px;
      position: relative;
    }
    .festive-bunting::before {
      content: '';
      position: absolute;
      top: 0;
      left: 15%;
      right: 15%;
      height: 2px;
      border-top: 2px dashed #94A3B8;
      z-index: 0;
    }
    .bunting-flag {
      width: 22px;
      height: 28px;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      border: 2px solid #1E293B;
      position: relative;
      z-index: 1;
      animation: flagSway 2.5s ease-in-out infinite alternate;
      transform-origin: top center;
    }
    .bunting-flag:nth-child(1) { background: #FF6B6B; animation-delay: 0s; }
    .bunting-flag:nth-child(2) { background: #FFD166; animation-delay: -0.4s; }
    .bunting-flag:nth-child(3) { background: #06D6A0; animation-delay: -0.8s; }
    .bunting-flag:nth-child(4) { background: #118AB2; animation-delay: -1.2s; }
    .bunting-flag:nth-child(5) { background: #8338EC; animation-delay: -1.6s; }
    .bunting-flag:nth-child(6) { background: #FF9F1C; animation-delay: -2s; }
    .bunting-flag:nth-child(7) { background: #FF5D8F; animation-delay: -0.6s; }

    @keyframes flagSway {
      0% { transform: rotate(-8deg); }
      100% { transform: rotate(8deg); }
    }

    
    .anniversary-center-seal {
      position: absolute;
      top: -24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 6;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .seal-circle {
      background: radial-gradient(circle, #FFFBEB 0%, #FFD166 40%, #FF9F1C 80%, #E85D04 100%);
      border: 3.5px solid #1E293B;
      border-radius: 50%;
      width: 62px;
      height: 62px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 0 #1E293B, 0 8px 16px rgba(232, 93, 4, 0.35);
      animation: sealFloat 3s ease-in-out infinite alternate;
    }

    .seal-year {
      font-family: var(--font-cartoon);
      font-weight: 900;
      font-size: 19px;
      line-height: 1;
      color: #073B4C;
      text-shadow: 1px 1px 0 #FFF;
    }

    .seal-label {
      font-family: var(--font-cartoon);
      font-weight: 800;
      font-size: 9px;
      letter-spacing: 0.5px;
      color: #78350F;
      text-transform: uppercase;
    }

    @keyframes sealFloat {
      0% { transform: translateY(0) scale(1); }
      100% { transform: translateY(-4px) scale(1.06); }
    }

    
    .grand-ribbon {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 18px 45px 0 45px;
      padding: 14px 40px;
      background: linear-gradient(135deg, #FFE899 0%, #FFD166 25%, #FFB703 60%, #FB8500 100%);
      border: 3.5px solid #1E293B;
      border-radius: 16px;
      box-shadow: 0 8px 0 #1E293B, 0 16px 30px rgba(251, 133, 0, 0.3);
      z-index: 3;
      overflow: visible;
    }

    
    .grand-ribbon::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 40%;
      height: 200%;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: rotate(30deg);
      pointer-events: none;
      animation: ribbonGleam 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes ribbonGleam {
      0%, 60% { left: -60%; opacity: 0; }
      61% { opacity: 1; }
      100% { left: 160%; opacity: 0; }
    }

    
    .ribbon-wing-left,
    .ribbon-wing-right {
      position: absolute;
      top: 10px;
      width: 52px;
      height: 100%;
      background: #D97706;
      border: 3.5px solid #1E293B;
      z-index: -2;
    }

    .ribbon-wing-left {
      left: -40px;
      border-right: none;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 16px 50%);
      transform: skewY(-8deg);
      box-shadow: -4px 6px 0 rgba(0,0,0,0.15);
    }

    .ribbon-wing-right {
      right: -40px;
      border-left: none;
      clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%);
      transform: skewY(8deg);
      box-shadow: 4px 6px 0 rgba(0,0,0,0.15);
    }

    
    .ribbon-fold-left,
    .ribbon-fold-right {
      position: absolute;
      top: 100%;
      width: 0;
      height: 0;
      border-style: solid;
      z-index: -1;
    }

    .ribbon-fold-left {
      left: 0;
      border-width: 0 14px 12px 0;
      border-color: transparent #78350F transparent transparent;
    }

    .ribbon-fold-right {
      right: 0;
      border-width: 0 0 12px 14px;
      border-color: transparent transparent transparent #78350F;
    }

    
    .grand-ribbon-text {
      font-family: var(--font-cartoon);
      font-weight: 900;
      font-size: 1.18rem;
      letter-spacing: 0.8px;
      color: #073B4C;
      text-transform: uppercase;
      text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      position: relative;
      z-index: 2;
    }

    .ribbon-sparkle-star {
      font-size: 24px;
      display: inline-block;
      filter: drop-shadow(0 2px 0 rgba(0,0,0,0.2));
      animation: starTwinkle 1.5s ease-in-out infinite alternate;
    }
    .ribbon-sparkle-star.right {
      animation-delay: -0.75s;
    }

    @keyframes starTwinkle {
      0% { transform: scale(0.85) rotate(-15deg); }
      100% { transform: scale(1.25) rotate(15deg); }
    }

    
    @media (max-width: 768px) {
      .grand-ribbon {
        margin: 18px 24px 0 24px;
        padding: 10px 18px;
      }
      .ribbon-wing-left,
      .ribbon-wing-right {
        width: 34px;
      }
      .ribbon-wing-left { left: -24px; }
      .ribbon-wing-right { right: -24px; }
      .grand-ribbon-text {
        font-size: 0.88rem;
        gap: 6px;
        white-space: normal;
        text-align: center;
      }
      .seal-circle {
        width: 50px;
        height: 50px;
        top: -20px;
      }
      .seal-year {
        font-size: 16px;
      }
      .seal-label {
        font-size: 8px;
      }
    }

    
    .card-cartoon {
      background: #FFFFFF;
      border: var(--border-cartoon);
      border-radius: var(--radius-cartoon);
      box-shadow: var(--shadow-3d);
      overflow: hidden;
      transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .card-cartoon:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-3d-lg);
    }

    
    .rundown-card-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 16px 20px;
      background: #FFFFFF;
      border: var(--border-cartoon);
      border-radius: 20px;
      box-shadow: var(--shadow-3d-sm);
      margin-bottom: 15px;
      transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .rundown-card-item:hover {
      transform: translateX(8px) translateY(-2px);
      box-shadow: var(--shadow-3d);
    }

    .rundown-icon-bubble {
      width: 58px;
      height: 58px;
      min-width: 58px;
      border: var(--border-cartoon);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      box-shadow: var(--shadow-3d-sm);
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .rundown-card-item:hover .rundown-icon-bubble {
      transform: scale(1.08) rotate(-4deg);
    }

    .rundown-time-badge {
      font-family: var(--font-cartoon);
      background: linear-gradient(135deg, #073B4C 0%, #1E293B 100%);
      color: #FFD166;
      font-weight: 800;
      font-size: 1.05rem;
      padding: 6px 14px;
      border-radius: 12px;
      border: 2px solid #1E293B;
      box-shadow: 0 3px 0 #1E293B;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      position: relative;
      transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      letter-spacing: 0.3px;
      animation: timeBadgePulse 3.5s infinite ease-in-out;
    }

    .rundown-card-item:hover .rundown-time-badge {
      transform: scale(1.04) translateY(-1px);
      box-shadow: 0 5px 0 #1E293B, 0 4px 12px rgba(7, 59, 76, 0.25);
      background: linear-gradient(135deg, #118AB2 0%, #073B4C 100%);
      color: #FFF;
    }

    .time-tick-icon {
      color: #FFD166;
      font-size: 1.1rem;
      display: inline-block;
      animation: clockTick 2.4s infinite ease-in-out;
      filter: drop-shadow(0 1px 0 rgba(0,0,0,0.3));
    }

    .rundown-card-item:hover .time-tick-icon {
      color: #FFD166;
      animation: clockTickFast 0.8s infinite linear;
    }

    .time-zone {
      font-size: 0.72rem;
      opacity: 0.9;
      font-weight: 700;
      letter-spacing: 0.5px;
      background: rgba(255, 255, 255, 0.18);
      padding: 1px 6px;
      border-radius: 6px;
    }

    .rundown-category-pill {
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
    }

    @keyframes timeBadgePulse {
      0%, 100% {
        box-shadow: 0 3px 0 #1E293B;
      }
      50% {
        box-shadow: 0 3px 0 #1E293B, 0 0 14px rgba(255, 209, 102, 0.55);
      }
    }

    @keyframes clockTick {
      0%, 100% { transform: rotate(0deg); }
      20% { transform: rotate(14deg); }
      40% { transform: rotate(-10deg); }
      60% { transform: rotate(8deg); }
      80% { transform: rotate(-4deg); }
    }

    @keyframes clockTickFast {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes bounceSoft {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-8px) scale(1.05); }
    }

    @media (max-width: 576px) {
      .rundown-card-item {
        padding: 12px 14px;
        gap: 12px;
        align-items: flex-start;
        border-radius: 16px;
      }

      .rundown-icon-bubble {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
        border-radius: 12px;
        margin-top: 2px;
      }

      .rundown-time-badge {
        font-size: 0.88rem;
        padding: 4px 10px;
        gap: 5px;
      }

      .time-tick-icon {
        font-size: 0.95rem;
      }

      .rundown-item-title {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-top: 4px;
      }
    }

    
    .pgt-contestant-card {
      background: #FFF;
      border: var(--border-cartoon);
      border-radius: 24px;
      box-shadow: var(--shadow-3d);
      overflow: hidden;
      transition: all 0.25s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .pgt-contestant-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--shadow-3d-lg);
    }

    .pgt-card-header {
      padding: 12px 18px;
      border-bottom: var(--border-cartoon);
      font-weight: 800;
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .btn-vote-pgt {
      font-family: var(--font-cartoon);
      background: var(--c-yellow);
      color: #1E293B;
      border: var(--border-cartoon);
      border-radius: var(--radius-pill);
      padding: 10px 16px;
      font-weight: 800;
      font-size: 16px;
      box-shadow: var(--shadow-3d-sm);
      width: 100%;
      transition: all 0.15s ease;
      cursor: pointer;
    }

    .btn-vote-pgt:hover {
      background: #FFB703;
      transform: translateY(-2px);
      box-shadow: var(--shadow-3d);
    }

    .btn-vote-pgt:active {
      transform: translateY(3px);
      box-shadow: 0 1px 0 #1E293B;
    }

    
    .doorprize-ticket-row {
      background: #FFF;
      border: var(--border-cartoon);
      border-radius: 18px;
      padding: 14px 18px;
      margin-bottom: 12px;
      box-shadow: var(--shadow-3d-sm);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      transition: all 0.2s ease;
    }

    .doorprize-ticket-row:hover {
      transform: scale(1.01);
      box-shadow: var(--shadow-3d);
    }

    .doorprize-ticket-row.grand-prize {
      background: linear-gradient(135deg, #FFF9DB 0%, #FFF3BF 100%);
      border: 3px solid #E59900;
      box-shadow: 0 5px 0 #E59900;
    }

    
    #footer-cartoon {
      background: #073B4C;
      color: #FFF;
      border-top: var(--border-cartoon);
      padding: 60px 0 30px 0;
      position: relative;
    }

    .footer-badge-box {
      background: #118AB2;
      border: var(--border-cartoon);
      box-shadow: var(--shadow-3d);
      border-radius: 20px;
      padding: 24px;
      color: #FFF;
    }

    .social-btn-cartoon {
      width: 46px;
      height: 46px;
      border: var(--border-cartoon);
      border-radius: 50%;
      background: var(--c-yellow);
      color: #1E293B;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: var(--shadow-3d-sm);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .social-btn-cartoon:hover {
      transform: translateY(-4px) rotate(8deg);
      background: var(--c-coral);
      color: #FFF;
    }

    
    .cloud-divider {
      width: 100%;
      height: auto;
      display: block;
      margin-top: -1px;
    }

    
    .medal-card-podium {
      border: var(--border-cartoon);
      border-radius: 20px;
      padding: 15px;
      text-align: center;
      cursor: pointer;
      box-shadow: var(--shadow-3d-sm);
      transition: all 0.2s ease;
      background: #FFF;
    }

    
    .search-bus-input-wrap {
      box-shadow: var(--shadow-3d);
      border-radius: var(--radius-pill);
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .search-bus-input-wrap:focus-within {
      box-shadow: 0 8px 0 #1E293B, 0 10px 20px rgba(0,0,0,0.1);
      transform: translateY(-2px);
    }

/* ===================================================
   DOORPRIZE WINNERS SEARCH & CARDS ADDITIONS
=================================================== */

.search-cartoon-box {
  background: #FFFFFF;
  border: var(--border-cartoon);
  border-radius: var(--radius-cartoon);
  box-shadow: var(--shadow-3d);
  padding: 24px 28px;
  margin-bottom: 30px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.search-input-wrapper i.search-ico {
  position: absolute;
  left: 18px;
  font-size: 22px;
  color: var(--c-dark-blue);
}

.search-input-wrapper input {
  width: 100%;
  padding: 14px 45px 14px 52px;
  background: #F8FAFC;
  border: var(--border-cartoon);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-dark-blue);
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.search-input-wrapper input:focus {
  background: #FFF;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.25);
}

.clear-search-btn {
  position: absolute;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #94A3B8;
  cursor: pointer;
  display: none;
  line-height: 1;
}

.clear-search-btn.active {
  display: block;
}

.winner-card-cartoon {
  background: #FFFFFF;
  border: var(--border-cartoon);
  border-radius: 20px;
  box-shadow: var(--shadow-3d);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}

.winner-card-cartoon:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3d-lg);
}

.prize-badge-pill {
  font-family: var(--font-cartoon);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 2px solid #1E293B;
  box-shadow: 0 2.5px 0 #1E293B;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.prize-name-heading {
  font-family: var(--font-cartoon);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-dark-blue);
  line-height: 1.3;
  margin-bottom: 16px;
}

.winner-profile-box {
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-emoji-bubble {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 2px solid #1E293B;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 3px 0 #1E293B;
}

.winner-info-text {
  flex-grow: 1;
  min-width: 0;
}

.winner-name-txt {
  font-family: var(--font-cartoon);
  font-size: 1.1rem;
  font-weight: 800;
  color: #1E293B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-nik-txt {
  font-family: var(--font-cartoon);
  background: #E2E8F0;
  color: #0F172A;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.78rem;
  display: inline-block;
}

.empty-search-cartoon {
  background: #FFFFFF;
  border: var(--border-cartoon);
  border-radius: var(--radius-cartoon);
  box-shadow: var(--shadow-3d);
  text-align: center;
  padding: 45px 20px;
}

.empty-search-cartoon.hidden {
  display: none;
}

/* ==========================================================================
   GRAND PRIZE SPECIAL SHOWCASE SECTION
   ========================================================================== */
.grand-prize-section {
  position: relative;
  background: linear-gradient(180deg, #FEF3C7 0%, #FFFBEB 50%, #FDF2F8 100%);
  padding: 50px 0 35px 0;
  border-bottom: none;
}

.grand-prize-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.badge-grand-special {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFF !important;
  font-family: var(--font-cartoon);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 3px solid #1E293B;
  box-shadow: 0 4px 0 #1E293B;
  margin-bottom: 12px;
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 0 #1E293B, 0 0 15px rgba(245, 158, 11, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 6px 0 #1E293B, 0 0 25px rgba(245, 158, 11, 0.7); }
}

.grand-title-text {
  font-family: var(--font-cartoon);
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 800;
  color: #78350F;
  text-shadow: 2px 2px 0 #FDE68A, 4px 4px 0 rgba(0,0,0,0.1);
  margin-bottom: 6px;
}

.grand-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* 3D Showcase Card for Grand Prize */
.grand-card {
  position: relative;
  background: #FFFFFF;
  border: 3.5px solid #1E293B;
  border-radius: 24px;
  box-shadow: 0 8px 0 #1E293B;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.grand-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 0 #1E293B;
}

.grand-card-banner {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: #FFF;
  padding: 14px 16px;
  text-align: center;
  border-bottom: 3.5px solid #1E293B;
  position: relative;
}

.grand-card-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FEF08A;
  color: #1E293B;
  font-family: var(--font-cartoon);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 2px solid #1E293B;
  box-shadow: 0 2px 0 #1E293B;
}

.grand-card-trophy {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.2));
}

.grand-prize-name {
  font-family: var(--font-cartoon);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #FFFFFF;
  text-shadow: 1px 1px 0 #1E293B;
}

.grand-card-body {
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFDF5;
  flex-grow: 1;
}

.grand-avatar-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
  border: 3px solid #1E293B;
  box-shadow: 0 3px 0 #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 12px;
}

.grand-winner-name {
  font-family: var(--font-cartoon);
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.3;
}

.grand-winner-npk {
  display: inline-block;
  background: #E2E8F0;
  color: #1E293B;
  font-family: monospace;
  font-weight: 800;
  font-size: 13px;
  padding: 2px 10px;
  border-radius: 20px;
  border: 1.5px solid #1E293B;
  margin-bottom: 14px;
}

.grand-card-footer {
  width: 100%;
  border-top: 2px dashed #CBD5E1;
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
}

.grand-plant-tag {
  background: #F3E8FF;
  color: #6B21A8;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1.5px solid #1E293B;
}

.grand-dept-tag {
  color: #475569;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .grand-prize-section {
    padding: 35px 0 25px 0;
  }
  .grand-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 8px;
  }
}

/* ========================================================
   ENHANCED WINNER MOBILE CARDS (MODERN & PREMIUM, NO AI SLOP)
   ======================================================== */
.mobile-cards-view {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.winner-mobile-card {
  background: #FFFFFF;
  border: 2px solid #0F172A;
  border-radius: 18px;
  box-shadow: 0 5px 0 #0F172A;
  padding: 14px 16px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.winner-mobile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #0F172A;
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.winner-card-index {
  font-family: var(--font-cartoon, sans-serif);
  font-weight: 800;
  font-size: 13px;
  color: #64748B;
  background: #F1F5F9;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #CBD5E1;
}

.badge-prize-pill {
  font-size: 11px;
  font-weight: 700;
  color: #0369A1;
  background: #E0F2FE;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #BAE6FD;
  letter-spacing: 0.3px;
}

.mobile-card-prize-banner {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-left: 4px solid #F59E0B;
}

.prize-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FDE68A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.prize-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.prize-subheading {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
  margin-bottom: 2px;
}

.prize-name-highlight {
  font-family: var(--font-cartoon, sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}

.mobile-card-winner-box {
  background: #FAFAFA;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-avatar-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.winner-details-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.winner-fullname {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-dept-text {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================================
   ENHANCED WINNER MOBILE CARDS (MODERN & CLEAN)
   ======================================================== */
.mobile-cards-view {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.winner-mobile-card {
  background: #FFFFFF;
  border: 2px solid #0F172A;
  border-radius: 18px;
  box-shadow: 0 5px 0 #0F172A;
  padding: 14px 16px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.winner-mobile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #0F172A;
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.winner-card-index {
  font-family: var(--font-cartoon, sans-serif);
  font-weight: 800;
  font-size: 13px;
  color: #64748B;
  background: #F1F5F9;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #CBD5E1;
}

.badge-prize-pill {
  font-size: 11px;
  font-weight: 700;
  color: #0369A1;
  background: #E0F2FE;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid #BAE6FD;
  letter-spacing: 0.3px;
}

.mobile-card-prize-banner {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-left: 4px solid #F59E0B;
}

.prize-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FDE68A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.prize-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.prize-subheading {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
  margin-bottom: 2px;
}

.prize-name-highlight {
  font-family: var(--font-cartoon, sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}

.mobile-card-winner-box {
  background: #FAFAFA;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-avatar-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.winner-details-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.winner-fullname {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-dept-text {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Grand Avatar Pill Styling */
.grand-avatar-pill {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cartoon, sans-serif);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Table Enhancements */
.winner-row-index {
  font-family: var(--font-cartoon, sans-serif);
  font-weight: 800;
  font-size: 13px;
  color: #64748B;
  background: #F8FAFC;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  display: inline-block;
}

.winner-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.prize-table-tag {
  background: #FFFDF7;
  border: 1.5px solid #FDE68A;
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
}

/* Table Enhancements */
.winner-row-index {
  font-family: var(--font-cartoon, sans-serif);
  font-weight: 800;
  font-size: 13px;
  color: #64748B;
  background: #F8FAFC;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  display: inline-block;
}

.winner-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.prize-table-tag {
  background: #FFFDF7;
  border: 1.5px solid #FDE68A;
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
}

/* ========================================================
   UNIFIED CLEAN WINNER CARD (NO GIFT ICON, NO CIRCLE AVATAR)
   ======================================================== */
.mobile-card-winner-section {
  padding: 4px 0 10px 0;
}

.winner-fullname {
  font-family: var(--font-cartoon, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 2px;
}

.winner-dept-text {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
}

.mobile-card-prize-row {
  background: #F8FAFC;
  border-top: 1px dashed #CBD5E1;
  padding-top: 10px;
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.prize-label-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  background: #E2E8F0;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.prize-title-text {
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.grand-winner-dept {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 12px;
}

/* Grand Card Clean 2-Line Banner */
.grand-card-banner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 14px 14px !important;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%) !important;
  border-bottom: 3.5px solid #1E293B !important;
  position: relative !important;
}

.grand-badge-wrap {
  margin-bottom: 8px !important;
}

.grand-card-badge {
  display: inline-flex !important;
  align-items: center !important;
  position: static !important;
  background: #FEF08A !important;
  color: #1E293B !important;
  font-family: var(--font-cartoon, sans-serif) !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  border: 2px solid #1E293B !important;
  box-shadow: 0 2px 0 #1E293B !important;
  letter-spacing: 0.5px !important;
}

.grand-prize-name {
  font-family: var(--font-cartoon, sans-serif) !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  color: #FFFFFF !important;
  text-shadow: 1px 1px 0 #1E293B !important;
  text-align: center !important;
  word-break: break-word !important;
}

/* ========================================================
   SLEEK SEARCH & FILTER TOOLBAR (DISTINCT FROM WINNER CARDS)
   ======================================================== */
.search-toolbar-wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 8px 10px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1.5px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-input-pill-box {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 14px;
  padding: 4px 12px;
  transition: all 0.2s ease;
}

.search-input-pill-box:focus-within {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.search-icon-lead {
  font-size: 16px;
  color: #64748B;
  margin-right: 8px;
  flex-shrink: 0;
}

.search-input-clean {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14.5px;
  font-weight: 600;
  color: #0F172A;
  padding: 6px 0;
}

.search-input-clean::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.search-clear-btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 6px;
  color: #94A3B8;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.search-clear-btn:hover {
  color: #475569;
}

.search-toolbar-subrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 4px;
}

.filter-pill-item {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 4px 10px;
}

.filter-select-clean {
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  outline: none;
  cursor: pointer;
}

.filter-label-tiny {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748B;
  margin-right: 4px;
}

.result-count-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748B;
}

.result-count-label strong {
  color: #0F172A;
  font-weight: 800;
}

/* Remove dashed / dotted section dividers */
.grand-prize-section {
}
section {
}

/* ========================================================
   FORCE LIGHT THEME (IGNORE OS / BROWSER DARK MODE)
   ======================================================== */
:root {
  color-scheme: light !important;
}

html, body {
  color-scheme: light !important;
  background-color: #FFFDF5 !important;
  color: #1E293B !important;
}

/* Force light inputs & selects regardless of dark mode settings */
input, select, textarea, button {
  color-scheme: light !important;
}

.table-cartoon, .table-cartoon td, .table-cartoon th {
  background-color: transparent !important;
  color: #1E293B !important;
}

.table-cartoon-wrapper {
  background: #FFFFFF !important;
}

.card-cartoon {
  background: #FFFFFF !important;
  color: #1E293B !important;
}

.winner-mobile-card {
  background: #FFFFFF !important;
  color: #0F172A !important;
}

/* Prevent Chrome/Samsung Internet Force Dark Mode auto-inversion */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light !important;
  }
  html, body {
    color-scheme: light !important;
    background-color: #FFFDF5 !important;
    color: #1E293B !important;
  }
}
