:root {
    --primary: #7b2ff7;
    --secondary: #f107a3;
    --gold: #ffb703;
    --silver: #cfd8dc;
    --bronze: #fb8500;

    /* Light Theme Background */
    --light-bg: #fdfdfd;

    /* Glassy Card Theme Vars */
    /* Linear Gradient for noticeable glass sheen */
    --card-bg: linear-gradient(135deg,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.2));
    --card-border: rgba(255, 255, 255, 0.65);
    --text-card-main: #2d3436;
    --text-card-muted: #636e72;

    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  }

  /* Global Layout: No Scroll, Centered */
  .prize-section {
    /* font-family: "Outfit", sans-serif; */
    background: var(--light-bg);
    color: var(--text-card-main);
    /* height: 100vh; */
    overflow: hidden;
    /* No scroll */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  /* Background Effects */
  .bg-effects-new {
    position: fixed;
    inset: 0;
    z-index: 9;
    pointer-events: none;
  }

  .bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
  }

  .blob-1 {
    width: 65vh;
    height: 65vh;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -15%;
    left: 15%;
  }

  .blob-2 {
    width: 65vh;
    height: 65vh;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    bottom: -15%;
    right: 15%;
  }

  .prize-section {
    /* width: 100%;
    max-width: 1400px; */
    padding: 0 20px;
    z-index: 1;
  }

  /* Header */
  .header-area {
    margin-bottom: 4vh;
  }

  .prize-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    margin-bottom: 15px;
    color: var(--primary);
  }

  .prize-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    -webkit-text-fill-color: initial;
  }

  /* Cards Container */
  .cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }

  /* Individual Card (Premium Glass) */
  .prize-card-new {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(30px);
    /* Smooth frost */
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--card-shadow);
    color: var(--text-card-main);
  }

  .prize-card-new:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.4));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  }

  /* 
       * Specific Card Styles (Highlight Borders/Glows) 
       */

  /* Winner Card (Gold) */
  .winner-card {
    width: 340px;
    padding: 55px 30px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(255, 215, 0, 0.6);
    /* Gold */
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
    z-index: 10;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }

  .winner-card:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 35px 70px rgba(255, 215, 0, 0.25);
  }

  /* Silver Card */
  .silver-card {
    border: 1px solid rgba(192, 192, 192, 0.6);
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.1);
  }

  .silver-card:hover {
    border-color: rgba(192, 192, 192, 0.9);
    box-shadow: 0 25px 50px rgba(192, 192, 192, 0.2);
  }

  /* Bronze Card */
  .bronze-card {
    border: 1px solid rgba(205, 127, 50, 0.6);
    box-shadow: 0 20px 40px rgba(205, 127, 50, 0.1);
  }

  .bronze-card:hover {
    border-color: rgba(205, 127, 50, 0.9);
    box-shadow: 0 25px 50px rgba(205, 127, 50, 0.2);
  }

  /* 
       * Double Round Icon Logic 
       */
  .icon-circle-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  /* Larger circle for winner */
  .winner-card .icon-circle-box {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 215, 0, 0.5);
  }

  /* The Place Badge */
  .place-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }

  /* Specific colors for place badges */
  .badge-gold {
    background: linear-gradient(135deg, #ffd700, #fdb931);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .badge-silver {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    color: #fff;
  }

  .badge-bronze {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
  }

  /* SVG Icon Sizing */
  .svg-icon {
    width: 50%;
    height: 50%;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .winner-card .svg-icon {
    width: 55%;
    height: 55%;
  }

  /* Gradients for Icons */
  .grad-gold {
    stroke: url(#gradient-gold);
  }

  .grad-silver {
    stroke: url(#gradient-silver);
  }

  .grad-bronze {
    stroke: url(#gradient-bronze);
  }

  /* Typography */
  .rank-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-card-muted);
  }

  .winner-card .rank-label {
    color: #f39c12;
  }

  .prize-amount {
    padding: 10px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-card-main);
    margin-bottom: 15px;
  }

  .winner-card .prize-amount {
    padding: 20px;
    font-size: 3rem;
    background: linear-gradient(180deg, #f1c40f 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .prize-details {
    font-size: 0.95rem;
    color: var(--text-card-muted);
    line-height: 1.6;
  }

  /* Responsive */
  @media (max-width: 991px) {
    body {
      height: auto;
      overflow-y: auto;
      padding: 80px 0;
    }

    .cards-container {
      flex-direction: column;
    }

    .order-1 {
      order: 1;
    }

    .order-2 {
      order: 2;
    }

    .order-3 {
      order: 3;
    }

    .winner-card {
      width: 100%;
      max-width: 340px;
      padding: 40px 20px;
    }

    .prize-card-new {
      width: 100%;
      max-width: 300px;
    }
  }


  /* time line */