:root{
      --primary:#8B1E1E;
      --secondary:#F4A300;
      --gold:#ffcc4d;
      --light:#fff9ef;
      --dark:#2a1600;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:
        radial-gradient(circle at top, rgba(255,204,77,0.25), transparent 35%),
        linear-gradient(135deg,#fff7e9,#fffdf7);
      min-height:100vh;
      overflow-x:hidden;
      color:var(--dark);
      position:relative;
    }

    .bg-pattern{
      position:absolute;
      width:100%;
      height:100%;
      top:0;
      left:0;
      background-image:
        radial-gradient(rgba(244,163,0,0.08) 1px, transparent 1px);
      background-size:30px 30px;
      opacity:0.4;
      z-index:0;
    }

    .floating-light{
      position:absolute;
      border-radius:50%;
      background:rgba(255,204,77,0.25);
      filter:blur(70px);
      z-index:0;
      animation:float 8s ease-in-out infinite alternate;
    }

    .light1{
      width:300px;
      height:300px;
      top:10%;
      left:5%;
    }

    .light2{
      width:400px;
      height:400px;
      bottom:0;
      right:0;
      animation-delay:2s;
    }

    @keyframes float{
      from{
        transform:translateY(0px) translateX(0px);
      }
      to{
        transform:translateY(-30px) translateX(20px);
      }
    }

    .main-wrapper{
      position:relative;
      z-index:2;
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:50px 20px 30px 20px;
    }

    .coming-card{
      background:rgba(255,255,255,0.72);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,0.5);
      border-radius:30px;
      padding:60px 40px;
      max-width:1200px;
      width:100%;
      box-shadow:0 20px 80px rgba(0,0,0,0.08);
      overflow:hidden;
      position:relative;
    }

    .coming-card::before{
      content:'';
      position:absolute;
      width:200px;
      height:200px;
      background:rgba(244,163,0,0.08);
      border-radius:50%;
      top:-80px;
      right:-80px;
    }

    .coming-card::after{
      content:'';
      position:absolute;
      width:160px;
      height:160px;
      background:rgba(139,30,30,0.05);
      border-radius:50%;
      bottom:-60px;
      left:-60px;
    }

    .logo-img{
      width:100px;
      max-width:100%;
      margin-bottom:15px;
      animation:glow 4s infinite alternate;
    }

    @keyframes glow{
      from{
        transform:scale(1);
        filter:drop-shadow(0 0 10px rgba(255,193,7,0.2));
      }
      to{
        transform:scale(1.02);
        filter:drop-shadow(0 0 30px rgba(255,193,7,0.45));
      }
    }

    .tagline{
      font-family:'Tiro Devanagari Hindi', serif;
      font-size:1.1rem;
      color:var(--primary);
      letter-spacing:1px;
      margin-bottom:15px;
      text-align:center;
    }

    .title{
      font-size:3rem;
      font-weight:700;
      color:var(--primary);
      line-height:1.2;
    }

    .title span{
      color:var(--secondary);
    }

    .subtitle{
      font-size:1.05rem;
      color:#5c4b3a;
      line-height:1.9;
      margin-top:20px;
    }

    .feature-box{
      background:rgba(255,255,255,0.8);
      border:1px solid rgba(244,163,0,0.15);
      border-radius:20px;
      padding:22px 20px;
      transition:0.3s;
      height:100%;
    }

    .feature-box:hover{
      transform:translateY(-5px);
      box-shadow:0 12px 30px rgba(0,0,0,0.08);
    }

    .feature-box i{
      width:60px;
      height:60px;
      background:linear-gradient(135deg,var(--secondary),#ffd86a);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      font-size:22px;
      margin-bottom:18px;
    }

    .feature-box h5{
      font-weight:600;
      color:var(--primary);
      margin-bottom:10px;
    }

    .feature-box p{
      font-size:14px;
      color:#6b5a49;
      line-height:1.7;
      margin:0;
    }

    .countdown{
      margin-top:40px;
    }

    .count-box{
      background:linear-gradient(135deg,var(--primary),#5f0f0f);
      color:#fff;
      border-radius:18px;
      padding:20px;
      text-align:center;
      box-shadow:0 10px 25px rgba(139,30,30,0.2);
    }

    .count-box h2{
      font-size:2rem;
      font-weight:700;
      margin-bottom:5px;
    }

    .count-box span{
      font-size:14px;
      letter-spacing:1px;
      text-transform:uppercase;
    }

    .notify-form{
      margin-top:40px;
    }

    .form-control{
      height:58px;
      border-radius:50px;
      border:1px solid rgba(0,0,0,0.08);
      padding-left:20px;
      font-size:15px;
    }

    .form-control:focus{
      box-shadow:none;
      border-color:var(--secondary);
    }

    .btn-notify{
      height:58px;
      border:none;
      border-radius:50px;
      background:linear-gradient(135deg,var(--secondary),#ffcb54);
      color:#fff;
      font-weight:600;
      padding:0 35px;
      transition:0.3s;
    }

    .btn-notify:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 20px rgba(244,163,0,0.3);
    }

    .social-links{
      margin-top:40px;
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .social-links a{
      width:50px;
      height:50px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:#fff;
      color:var(--primary);
      font-size:18px;
      text-decoration:none;
      transition:0.3s;
      box-shadow:0 8px 20px rgba(0,0,0,0.06);
    }

    .social-links a:hover{
      background:var(--secondary);
      color:#fff;
      transform:translateY(-4px);
    }

    .footer-text{
        margin: 0px 0 30px 0;
        font-size: 14px;
        color: #7b6a58;
        text-align: center;
    }

    .future-features{
      margin-top:40px;
      background:rgba(255,255,255,0.65);
      border-radius:25px;
      padding:30px;
      border:1px solid rgba(255,204,77,0.2);
    }

    .future-features h4{
      color:var(--primary);
      font-weight:700;
      margin-bottom:25px;
    }

    .future-list{
      list-style:none;
      padding:0;
      margin:0;
    }

    .future-list li{
      padding:12px 0;
      border-bottom:1px dashed rgba(0,0,0,0.08);
      display:flex;
      align-items:center;
      gap:12px;
      color:#5e4f40;
    }

    .future-list li:last-child{
      border:none;
    }

    .future-list i{
      color:var(--secondary);
      font-size:18px;
    }

    @media(max-width:991px){

      .title{
        font-size:2.5rem;
      }

      .coming-card{
        padding:40px 25px;
      }

      .logo-img{
        width:100px;
      }
    }

    @media(max-width:576px){

      .title{
        font-size:2rem;
      }

      .subtitle{
        font-size:0.95rem;
      }

      .count-box{
        margin-bottom:15px;
      }
    }