* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Iceberg", sans-serif;
    }

    body {
      background: linear-gradient(120deg,  #00183d, #002358, #003079);
      background-size: 400% 400%;
      background-attachment: fixed; 
      animation: gradientFlow 3s ease infinite;
      color: white;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }

    @keyframes gradientFlow {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    a, header a, header img {
      text-decoration: none;
      text-align: center;
    }

    header {
      padding: 0.2rem;
      text-align: center;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      border-bottom: 2px solid #01389e;
    }

    header img {
        max-width: 50%;
        text-shadow: 0 2px 2px #000;
    }

    h1 {
      text-align: center;
      font-weight: 700;
      line-height: 1.15;
      color: #ffffff;
      max-width: 900px;
      padding: 5px 5px 5px;
      position: relative;
      text-shadow: 0 3px 3px rgb(0, 0, 0);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  h1:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px -15px rgba(59, 130, 246, 0.25);
  }

    main {
      margin-top: -25px;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      overflow: hidden;
    }

    .slider-wrapper{
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 20px 0;
    }

    .slider-wrapper::-webkit-scrollbar { display: none; }

    .slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      width: 100%;
      max-height: 60vh;
      object-fit: cover;
      border-radius: 15px;
      border: 1px solid #0042d1;
    }

    .slide-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }

    .slide-img {
    width: 100%;
    max-height: 55vh;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 119, 255, 0.4);
    border: 1px solid rgba(0, 119, 255, 0.2);
    }

    .product-btn {
    display: inline-block;
    padding: 20px 100px;
    background: linear-gradient(150deg, #001f63, #0042d1, #000, #0042d1, #001f63);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(179, 179, 179);
    font-size: 120%;
    animation: auroradev 0.8s infinite ease-in-out;
    }

    .product-btn:hover {
    background: linear-gradient(150deg, #770000, #ff0000, #ffa0a0, #ff0000, #770000);
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px #ff0000;
    animation-play-state: paused;
    }

    .slot-btn {
      display: inline-block;
      width: 90%;
      padding: 10px 0;
      background: linear-gradient(150deg, #001f63, #0042d1, #000, #0042d1, #001f63);
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      font-size: 0.75rem;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
      animation: fastPop 0.7s infinite ease-in-out;
    }

    .slot-container {
      flex: 1;
      width: 100%;
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 10px;
    }

    .slot-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .slot-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .slot-image {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid rgba(0, 119, 255, 0.4);
      box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3);
      margin-bottom: 10px;
    }

    @keyframes auroradev {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 15px rgba(0, 66, 209, 0.6);
    }
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #005ac0b7;
      color: rgb(255, 230, 0);
      border: 1px solid #0042d1;
      padding: 12px 18px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
      transition: 0.3s;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .main-footer {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 2px solid #003566;
    position: fixed;
    bottom: 0;
      left: 0;
      right: 0;
    }

    .footer-button-group {
    display: flex;
    width: 100%;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    }

    .f-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ffd900;
    border: 1px solid rgba(0, 119, 255, 0.3);
    }

    .slot, .arcade {
    flex: 0 0 calc(25% - 7.5px);
    background: rgba(0, 53, 102, 0.5);
    box-shadow: 0 0 7px #e2e2e2;
    }

    .brand {
    position: relative;
    flex: 0 0 calc(50% - 5px);
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
    color: #ffffff;
    font-size: 1.2rem;
    border: 2px solid #0077ff;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 119, 255, 0.4);
    z-index: 1;
    }

    .brand::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    animation: runningLight 2.5s infinite;
    z-index: 2;
    pointer-events: none;
    }

    .brand {
    animation: buttonPulse 4s infinite alternate;
    }

    @keyframes runningLight {
    0% { left: -120%; }
    40% { left: 150%; }
    100% { left: 150%; }
    }

    @keyframes buttonPulse {
    0% { box-shadow: 0 0 10px rgba(0, 119, 255, 0.3); }
    100% { box-shadow: 0 0 25px rgba(0, 119, 255, 0.7), 0 0 5px #ffc300; }
    }

    .btn-text {
    position: relative;
    z-index: 3;
    text-shadow: 0 0 8px rgba(255, 195, 0, 0.5);
    font-weight: 900;
    }

    .brand:hover {
    transform: scale(1.03);
    border-color: #ffc300;
    color: #fff;
    }

    .brand:hover::after {
    animation-duration: 1s;
    background: rgba(255, 255, 255, 0.5);
    }

    .f-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.4);
    }

    .brand:hover {
    box-shadow: 0 4px 20px rgba(255, 195, 0, 0.3);
    }

    @media (max-width: 400px) {
    .f-btn { font-size: 0.7rem; height: 45px; }
    }

    @media (max-width: 600px) {
      .footer-links { gap: 15px; font-size: 0.75rem; }
      .nav-btn { display: small; }
    }
    @media (min-width: 768px) {
      .product-grid { gap: 25px; }
      .product-btn { font-size: 1rem; padding: 15px 0; }
      .f-btn { font-size: 1rem; }
    }
            .snow-wrap {
      position: fixed;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 9999;
    }
    
    .snowflake {
  position: absolute;
  top: -10vh;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.678);  
  clip-path: polygon(50% 0%, 63% 38%, 100% 50%, 63% 62%, 50% 100%, 37% 62%, 0% 50%, 37% 38%);
  box-shadow: 
    inset -2px -2px 4px rgb(0, 217, 255),
    0 0 12px 2px rgba(0, 225, 255, 0.952);
  filter: blur(0.2px);
  animation: 
    fall var(--dur, 10s) linear var(--delay, 0s) infinite,
    sway var(--sway, 5s) ease-in-out var(--delay, 0s) infinite alternate;
    transform: translate(-50%, -50%) rotate(45deg);
}
    
    /* glowing variations */
    .snowflake.-sm {
      width: 4px;
      height: 4px;
      opacity: .8;
      filter: drop-shadow(0 0 6px rgb(255, 255, 255));
    }
    
    .snowflake.-lg {
      width: 12px;
      height: 12px;
      opacity: .9;
      filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
    }
    
    /* motion */
    @keyframes fall {
      to {
        transform: translate3d(var(--drift, 0px), 110vh, 0) rotate(var(--rot, 180deg));
      }
    }
    @keyframes sway {
      from { margin-left: -10px; }
      to   { margin-left: 10px; }
    }
    
    /* gentle glow animation for more life */
    @keyframes glow {
      0%, 100% { filter: drop-shadow(0 0 6px rgb(255, 255, 255)); }
      50% { filter: drop-shadow(0 0 15px rgb(255, 255, 255)); }
    }
    .snowflake { animation: glow 2s ease-in-out infinite alternate, fall var(--dur,12s) linear var(--delay,0s) infinite, sway var(--sway,6s) ease-in-out var(--delay,0s) infinite alternate; }
    
    /* optional: prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
      .snowflake { animation: none; }
    }