body {
    background: #0d0b2f;
    color: white;
    font-family: 'Segoe UI', sans-serif;
  }

  h2 {
    font-weight: 800;
    text-shadow: 2px 2px 10px #00ffd5;
  }

  /*** Price Style ***/
  .prize-card {
    background: linear-gradient(145deg, #1b1f3b, #11152d);
    border-radius: 20px;
    padding: 30px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    cursor: pointer;
    border: 2px solid #767676;
  }

  .prize-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, #22264a, #171c36);
    border-color: #7e5fff;
  }

  .prize-rank {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 0 #ff7af5, 4px 4px 0 #4fc3f7;
  }

  .prize-amount {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #00ffc8;
    animation: glowText 2s infinite alternate ease-in-out;
    text-shadow: 0 0 5px #00ffd5, 0 0 10px #00ffd5, 0 0 15px #ff6ec4;
  }

  @keyframes glowText {
    0% {
      color: #00ffc8;
      text-shadow: 0 0 10px #00ffc8, 0 0 20px #ff6ec4;
    }
    50% {
      color: #ff6ec4;
      text-shadow: 0 0 10px #ff6ec4, 0 0 20px #00ffc8;
    }
    100% {
      color: #00ffc8;
      text-shadow: 0 0 10px #00ffc8, 0 0 20px #ff6ec4;
    }
  }

  .prize-img {
    width: 80px;
    height: auto;
  }

  /* Price Stryle End */

  /* Domain Apply Style  */
  header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
  }

  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px;
  }

  .card {
    background-color: #111122;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 40px rgba(255, 0, 204, 0.4);
  }

  .card h2 {
    margin-top: 0;
    color: #ffccff;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
  }

  .tag {
    background-color: #1a1a40;
    color: #ccc;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
  }

  .companies {
    margin: 15px 0;
  }

  .price {
    font-size: 1rem;
    margin: 10px 0;
  }

  .price del {
    color: #ff7777;
  }

  .apply-btn {
    background: linear-gradient(135deg, #ff00cc, #ffcc00);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
    transition: background 0.4s, transform 0.3s;
  }

  .apply-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffcc00, #ff00cc);
  }

  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
  }
  /* Domain Apply Style END */

  /* Timeline Style  */
  .timeline-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .timeline-card {
    background: #1a1a3f;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    overflow: hidden;
  }

  .timeline-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 35px rgba(0,0,0,0.5);
  }

  .timeline-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .timeline-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc, #ffcc00, #ff00cc);
    background-size: 300% 300%;
    animation: animated-border 6s linear infinite;
    border-radius: 17px;
    filter: blur(6px);
  }

  @keyframes animated-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  @media (max-width: 576px) {
    .timeline-card {
      padding: 20px 15px;
    }
  }
  /* Timeline Style  END */

  /* About Style  */
  .about-section {
    padding: 4rem 1rem;
  }

  .about-card {
    background: white;
    color: black;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
    transform: rotate(30deg);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
  }

  .about-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.2);
  }

  .about-card:hover::before {
    opacity: 1;
  }

  .left-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
  }

  .left-img {
    width: 100px;
    display: block;
    margin: 1.5rem auto 0;
  }

  .highlight {
    font-weight: bold;
    font-size: 1.8rem;
  }

  .about-list {
    list-style-type: none;
    padding-left: 0;
  }

  .about-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #8e2de2;
    border-radius: 50%;
    box-shadow: 0 0 8px #8e2de2;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 5px #8e2de2; }
    50% { box-shadow: 0 0 20px #8e2de2; }
    100% { box-shadow: 0 0 5px #8e2de2; }
  }
  /* About Style END */