body {
margin: 0;
padding: 0;

justify-content: center;

  background-color: rgba(0, 0, 0, 0.8);
}
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*---- Ads Placement -------*/

.ads-container {
  width: 100%;
  max-width: 100%;
  margin: 2px auto;
  margin-top: 0px;
  padding-top: 0px;
  text-align: center;
  position: relative;
}

.ads {
 border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


body a{
  text-decoration: none;
}

/* Label below the ad */
.ads-label {
  margin-top: 8px;
  text-align: center;
  margin-bottom: 5px;
}

.ads-label span {
  display: inline-block;

  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}

/*--- End ----*/
.container {
  max-width: 500px !important;
  width: 100%;
  /*background: #fff;*/
  padding: 15px;
  /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
  border-radius: 10px;
  margin: 0px auto;
 
 
}
#complete-verification{
 
    display: inline-block;
    padding: 10px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;

}
   body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
          
           
            min-height: 100%;
            color: white;
            overflow-x: hidden;
        }

        .absolute {
            position: absolute;
        }

        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        /*.bg-black\/80 {
            background-color: rgba(0, 0, 0, 0.8);
        }*/

        .home-container {
            min-height: 100vh;
            position: relative;
            padding: 5px;
            padding-top: 0px;
            max-width: 500px;
            margin: 0 auto;
        }

        .hero {
            text-align: center;
            padding: 0;
            position: relative;
            padding-top:3px;
            z-index: 10;
        }

        .title {
            font-size: 2.2rem;
            font-weight: bold;
            margin: 0 0 15px 0;
            background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
            }
            to {
                text-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
            }
        }

        .subtitle {
            font-size: 1.1rem;
            margin: 0 0 25px 0;
            color: #B8B8B8;
            font-weight: 300;
        }

        .status {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .status span {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .safe {
            border-left: 3px solid #4ECDC4 !important;
            animation: pulse-safe 2s infinite;
            cursor: pointer;
        }

        .gift {
            border-left: 3px solid #FFD93D !important;
            animation: pulse-gift 2s infinite;
            cursor: pointer;
        }

        @keyframes pulse-safe {
            0%, 100% { box-shadow: 0 0 10px rgba(78, 205, 196, 0.3); }
            50% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.6); }
        }

        @keyframes pulse-gift {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 217, 61, 0.3); }
            50% { box-shadow: 0 0 20px rgba(255, 217, 61, 0.6); }
        }

        .server-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 10px 10px;
        }

        .servers {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            justify-items: center;
        }

        .server {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 4px;
            text-align: center;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
                
        }
.server:first-child {
 animation: fullButtonPulse 1.5s 
ease-in-out infinite;
            cursor: pointer;
}
      
@keyframes fullButtonPulse {
  0% {
    transform: scale(1);
    background-color: #f797eb;
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
  }

  50% {
    transform: scale(1.05);
    background-color: #FFE62C;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 12px rgba(255, 182, 193, 0.3);
  }

  100% {
    transform: scale(1);
    background-color: #a5d6ff;
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
  }
}

      

        .server:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
/*
    .server:active {
      transform: translateY(-5px) scale(1.02);
    }
        .server.red {
      background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }

    .server.purple {
     background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }

    .server.blue {
     background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }

    .server.green {
     background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }*/
      .server.purple {
     background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }

    .server.blue {
     background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }

    .server.green {
     background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    }

        .play-hub-server-link {
            text-decoration: none;
            color: inherit;
            display: block;
            width: 100%;
            height: 100%;
        }

        .icon {
            margin-bottom: 15px;
            position: relative;
        }

        .icon img {
            width: 50px;
            height: 50px;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
            transition: all 0.3s ease;
        }

        .server:hover .icon img {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
        }

        .server h2 {
            font-size: 1.3rem;
            margin: 0 0 0px 0;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .server h2{
          color:#fff;
        }
        /* ---- New css ------*/

        .servers .server .icon-symball{
          display: flex;
          justify-content: center;
          align-items: center;
          margin: 0;
          gap: 8px;
        }


        /*------ End ------*/
        .online {
            color: #4ECDC4;
            font-size: 10px;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .online::before {
            content: '●';
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        /* Ad placeholder styles */
        .ad-placeholder {
            background: rgba(255, 255, 255, 0.05);
            border: 1px dashed rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            color: #666;
            margin: 20px 0;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .title {
                font-size: 2.5rem;
            }
            .container{
              padding-left: 8px;
              padding-right: 8px;
            }
            .subtitle {
                font-size: 1.2rem;
            }

            .status {
                gap: 15px;
            }

            .status span {
                padding: 10px 20px;
                font-size: 0.8rem;
            }

            /*.servers {
                grid-template-columns: 1fr;
                gap: 20px;
            }
              */
              /*
            .server {
                padding: 30px 20px;
            }*/

            .server h2 {
                font-size: 1.6rem;
            }

            .icon img {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .home-container {
                padding: 2px;
                padding-top: 0px;
            }

            .hero {
                padding: 5px;
            }

            .title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .server-container {
                padding: 20px 10px;
            }
        }

        /* Desktop centering */
       /* @media (min-width: 1024px) {
            .absolute-center,
            .main-container {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
            }
        }*/

        /* Background animation */
      

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
/*-------- Server -1------*/

   :root{
    --card-radius: 18px;
    --card-max: 720px;
    --accent: #e30611;         /* red button */
    --pill-bg: #f1f2f4;
    --pill-fg: #0b0b0b;
    --muted: #0b0b0b;
    --line: #e5e7eb;
    --stat-bg: #f6f7f8;        /* light grey stat tiles */
    --input-bd: #d1d5db;
    --txt: #111827;
    --bg: #0b0b0b;
  }

  /* Faux tiley game backdrop (no external images) */
 
  .bg-grid{
    position:fixed; inset:0; z-index:-1;
    filter:saturate(1.1);
  }

  /* Card */
  .card{
   
    background:#fff; border-radius:var(--card-radius);
    box-shadow: 0 28px 60px rgba(0,0,0,.35);
    padding:10px;
    position:relative;
  }

  /* Top bar: left logo, right status pill */
  .topbar{
    display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;
  }
  .brand{
    display:flex; align-items:center; gap:10px;
  }
  .brand svg{width:64px; height:auto; display:block;}
  .status-pill{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--pill-bg); color:var(--pill-fg);
    padding:8px 14px; border-radius:999px; font-size:14px; font-weight:600;
  }
  .status-pill .dot{width:10px; height:10px; border-radius:50%; background:#17c964; box-shadow:0 0 0 3px rgba(23,201,100,.18) inset;}

  /* Heading + subtitle */
  .title{ font-size: clamp(26px, 3.2vw, 40px); line-height:1.15; text-align:center; margin:6px 0 6px;}
  .subtitle{ text-align:center; color:var(--muted); margin:0 0 10px; font-size:16px;}

  /* Form */
  .input-wrap{
    position:relative; margin:0 auto; width:min(92%, 560px);
  }
  .input{
    width:100%; padding:14px 14px 14px 46px; font-size:16px;
    border:1px solid var(--input-bd); border-radius:10px; outline:none; transition: box-shadow .15s, border-color .15s;
    background:#fff;
  }
  .input:focus{border-color:#9ca3af; box-shadow:0 0 0 4px rgba(0,0,0,.04);}
  .input-icon{
    position:absolute; left:14px; top:50%; transform:translateY(-50%); opacity:.7;
  }
  .start{
    display:flex; align-items:center; justify-content:center; gap:10px;
    margin:14px auto 18px; width:min(92%, 560px);
    border:0; border-radius:10px; padding:14px 16px; background:var(--accent);
    color:#fff; font-weight:800; letter-spacing:.3px; font-size:16px; cursor:pointer;
    box-shadow: 0 8px 0 rgba(0,0,0,.12), 0 8px 24px rgba(227,6,17,.35);
    transition: transform .06s ease, box-shadow .06s ease, filter .06s ease;
  }
  .back-color{
    color:#000;
  }
  .start:active{ transform: translateY(1px); box-shadow: 0 6px 0 rgba(0,0,0,.12), 0 6px 20px rgba(227,6,17,.30); }
  .start svg{ width:18px; height:18px; }

  /* Divider */
  .rule{ height:1px; width:100%; background:var(--line); margin:12px 0 18px;}

  /* Stats row */
  .stats{
    display:grid; grid-template-columns: repeat(3, 1fr); gap:16px;
    width:min(92%, 560px); margin:0 auto;
  }
  .stat{
    background:var(--stat-bg); border-radius:12px; padding:18px 10px; text-align:center;
    border:1px solid #eef0f2;
  }
  .stat strong{ display:block; font-size:20px; margin-bottom:4px;color: #333; }
  .stat span{ color:var(--muted); font-size:13px; }

  @media (max-width:520px){
    .card{ padding:22px 16px 18px; }
    .stats{ grid-template-columns:1fr; }
  }
    .popup-head{
      text-align: center;
      margin-bottom: 15px;
      margin-top:15px
    }
  .popup-head h1,h2{
    margin-bottom: 0px;

  }

  .servers .server .play-hub-server-link img{
    width:23px;
    height: 23px;
  }
  .server h2{
    color:#fff;
  }
.server {
  cursor: pointer;
}
.home-container p{
  color:#fff;
}

/*------ Loading screen-----*/


/* ============================
   LOADING SCREEN STYLES
   ============================ */

/* Container */
#loading-section {
  display: none; /* hidden by default */
  text-align: center;
  padding: 10px 10px;
  background: #fff;
  border-radius: 18px;
  
  position: relative;
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
}

/* Loader Icon (center hexagon) */
.loader-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.loader-icon img {
  width: 70px;
  height: 70px;
 
  animation: spin 2s linear infinite;
}

/* Rotating animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Progress bar container */
.progress-bar {
  width: 100%;
  height: 6px;
  background: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* Red animated progress bar */
.progress-fill {
  width: 0;
  height: 100%;
  background: #e30611;
  border-radius: 10px;
  transition: width 3s ease;
}

/* Responsive (smaller screens) */
@media (max-width: 480px) {
  #loading-section {
    padding: 10px 10px;
  }
  .loader-icon img {
    width: 55px;
    height: 55px;
  }
}

/* Step 3 (Amount selection) */
.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.amount-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background: #fafafa;
  transition: 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.amount-card:hover {
  transform: translateY(-4px);
  border-color: #e30611;
}
.amount-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}
.amount-card strong {
  display: block;
  font-size: 20px;
  color: #111;
}
.amount-card span {
  color: #555;
  font-size: 13px;
}
#amount-section .subtitle {
  color: #444;
  font-size: 15px;
  margin-bottom: 20px;
}
.amount-card img{
  width:30px;
}
footer.site-footer {
    margin-top: 20px;
}


/*--------- Completed Processs ---------------*/

 #complete-section {
      background: white;
      border-radius: 20px;
      padding: 10px 10px;
       text-align: center;
      animation: slideUp 0.6s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

     #complete-section .loader-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 30px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
      }
    }

     #complete-section .loader-icon svg {
      width: 40px;
      height: 40px;
      stroke: white;
    }

    #complete-section .popup-title {
      font-size: 32px;
      font-weight: 700;
      color: #2d3748;
      margin: 0 0 15px 0;
      letter-spacing: -0.5px;
    }

    #complete-section .subtitle {
      font-size: 16px;
      color: #718096;
      margin: 0 0 35px 0;
      line-height: 1.6;
    }

    #complete-section .subtitle span {
      color: #667eea;
      font-weight: 600;
    }

    #complete-section .summary-box {
      background: #f7fafc;
      border-radius: 12px;
      padding: 10px;
      margin-bottom: 30px;
      text-align: left;
      border: 2px solid #e2e8f0;
    }

    #complete-section .summary-box h3 {
      font-size: 18px;
      color: #2d3748;
      margin: 0 0 15px 0;
      font-weight: 600;
    }

    #complete-section .summary-box ul {
      margin: 0;
      padding-left: 20px;
      list-style: none;
    }

    #complete-section .summary-box li {
      color: #4a5568;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 10px;
      position: relative;
      padding-left: 10px;
    }

    #complete-section .summary-box li:before {
      content: "✓";
      position: absolute;
      left: -15px;
      color: #667eea;
      font-weight: bold;
    }

    #complete-section .summary-box li:last-child {
      margin-bottom: 0;
    }

    #complete-section .start {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 15px 40px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    #complete-section .start:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }

    #complete-section .start:active {
      transform: translateY(0);
    }

    @media (max-width: 600px) {
      #complete-section {
        padding: 10px 15px;
      }

      .popup-title {
        font-size: 26px;
      }

      .subtitle {
        font-size: 14px;
      }

      .summary-box {
        padding: 20px;
      }
    }
/*--------- End --------------------------*/
/*----- End -------*/

/*----- Server 2----*/


/* === SERVER 2 THEME === */
.server-2 {
  /* Background Stars */
  .bg-dark-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0f 50%, #000 100%);
    z-index: -2;
  }
/* Popup Design */
#loading-section,#complete-section,#complete-section .summary-box{
  background-color: #0a0a0f;
}
#complete-section .summary-box{
  border:none;
}
#complete-section .start {
background: linear-gradient(135deg, #ca8a04 0%, #e3a317 100%);
}

#amount-section .amount-card {
  background: linear-gradient(135deg, #facc15  0%, #fbbf24 100%);
}
.progress-fill {
  background: linear-gradient(135deg, #facc15  0%, #fbbf24 100%);
}
#amount-section .amount-card *,#complete-section *{
color:#fff;

}
#complete-section .summary-box *{
  color: #fff;
}
#complete-section .summary-box li::before {
    content: "✓";
    position: absolute;
    left: -15px;
    color: #facc15;
    font-weight: bold;
}
#complete-section .loader-icon svg {
    width: 40px;
    height: 40px;
    stroke: #facc15;
}
#complete-section .loader-icon {
   
    background: linear-gradient(135deg, #e9663e 0%, #d7c925 100%);
   
    animation: pulse 2s ease-in-out infinite;
}
/*----End -----*/
  .bg-dark-stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
      radial-gradient(2px 2px at 20% 30%, white, transparent),
      radial-gradient(2px 2px at 60% 70%, white, transparent),
      radial-gradient(1px 1px at 50% 50%, white, transparent),
      radial-gradient(1px 1px at 80% 10%, white, transparent),
      radial-gradient(2px 2px at 90% 60%, white, transparent),
      radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.6;
  }

  @keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
  }

  /* Gradient Orbs */
  .orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
  }

  .orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #facc15 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
  }

  .orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
  }

  /* Main Container */
  .server2-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    gap: 20px;
    padding: 20px 20px;
    position: relative;
  }

  /* Logo Section */
  .logo-wrap {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .logo-text {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 30px rgba(250, 204, 21, 0.3);
    margin-bottom: 12px;
  }

  .logo-accent {
    background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .tagline {
    color: #a1a1aa;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* Features */
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e4e4e7;
    transition: all 0.3s ease;
    cursor: default;
  }

  .feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.15);
  }

  .feature span {
    font-size: 20px;
  }

  /* Access Card */
  .access-card {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8) 0%, rgba(18, 18, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 10px 15px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 204, 21, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
  }

  .access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #facc15, transparent);
    opacity: 0.5;
  }

  .input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 20px;
  }

  .input::placeholder {
    color: #71717a;
  }

  .input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
  }

  .start-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
    position: relative;
    overflow: hidden;
  }

  .start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .start-btn:hover::before {
    left: 100%;
  }

  .start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
  }

  .start-btn:active {
    transform: translateY(0);
  }

  .start-btn svg {
    width: 22px;
    height: 22px;
  }

  .note {
    text-align: center;
    color: #71717a;
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.5;
  }

  /* Stats */
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    min-width: 140px;
  }

  .stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(250, 204, 21, 0.2);
    transform: translateY(-4px);
  }

  .stat strong {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat span {
    font-size: 13px;
    color: #a1a1aa;
    font-weight: 500;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .server2-main {
      gap: 32px;
      padding: 20px 20px;
    }

    .access-card {
      padding: 10px 10px;
    }

    .features {
      gap: 12px;
    }

    .feature {
      padding: 12px 20px;
      font-size: 14px;
    }

    .stats {
      gap: 20px;
    }

    .stat {
      padding: 16px 24px;
      min-width: 120px;
    }
  }
}

/*--- End--------*/

@media (min-width: 1024px) {
  .main-container {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8) 0%, rgba(18, 18, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 204, 21, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
   /* min-height: 100vh;*/
  }
}
/*---- Server -3------*/
.server-3 .feature span {
    font-size: 20px;
    height: 24px;
}
.server-3 .features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 7px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    /* flex-direction: row-reverse; */
    flex-direction: row;
}
.server-3  #server-start-button,.server-3  #complete-section  .start{
    background-image: linear-gradient(to right,#2563eb,#9333ea);
}
.server-3  .input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}
/* Red animated progress bar */
.server-3 .progress-fill {
  width: 0;
  height: 100%;
  background: #2563eb;
  border-radius: 10px;
  transition: width 3s ease;
}
.server-3 #amount-section .amount-card {
    background: linear-gradient(135deg, #2563eb  0%, #9333ea 100%);
}
#complete-section .loader-icon svg {
    width: 40px;
    height: 40px;
     stroke: #2563eb; 
}
.server-3 #complete-section .loader-icon {
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    animation: pulse 2s ease-in-out infinite;
}
.main-container{
  padding-top: 0px;
}
button.green-border-button {
    color: #00BE4F;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    border: 1px solid #00BE4F;
    padding: 23px;
    border-radius: 20px;
    margin: 0px 0 20px 0;
    background: #ffffff00;
}
h1 small{
  font-size: 20px;
}
p small{
  font-size: 10px;
}

/*--- Step Extra css----*/

/* === QUIZ FLOW WRAPPER === */
/* === QUIZ WRAPPER === */
/* === QUIZ WRAPPER === */
.quiz-flow {
  max-width: 500px;
  margin: 10px auto;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  color: #111;
}

/* Headings */
.quiz-flow h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* === PROGRESS BAR === */
.quiz-flow .progress-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto 40px;
}

.quiz-flow .progress-line {
  position: relative;
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.quiz-flow .progress-fill {
  position: absolute;
  height: 4px;
  background: #2563eb;
  width: 0;
  transition: width 0.5s ease;
}

/* Steps (circles) */
.quiz-flow .progress-steps {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.quiz-flow .step {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.quiz-flow .step.active {
  background: #2563eb;
  border-color: #2563eb;
}

.quiz-flow .step span {
  line-height: 1;
}

/* === OPTION BUTTONS === */
.quiz-flow .options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.quiz-flow .options button {
  background: #fff;
  border: 1px solid #d1d5db;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.quiz-flow .options button:hover {
  border-color: #2563eb;
  color: #2563eb;
  box-shadow: 0 2px 6px rgba(37,99,235,0.15);
}

/* === SKIP LINK === */
.quiz-flow p {
  margin-top: 10px;
}

.quiz-flow a {
  color: #6b7280;
  font-size: 0.9rem;
  text-decoration: none;
}

.quiz-flow a:hover {
  color: #2563eb;
  text-decoration: underline;
}
.quiz-flow #step1 .step {
    top:-10px;
    position: absolute;
    /* right: 24px; */
    right: 30%;
}
.quiz-flow #step1 .step.active {
    background: #2563eb;
    border-color: #2563eb;
    position: absolute;
    /* right: 24px; */
    left: 30%;
}
/* Responsive */
@media (max-width: 480px) {
  .quiz-flow {
    margin: 4px 15px;
  }
  .quiz-flow h2 {
    font-size: 1.25rem;
  }
}

.quiz-flow #step2 .step:first-child {
  left: 30%;
  position: absolute;
  top:-10px;
}

/* Second step — shifted left 30% from end */
.quiz-flow #step2 .step:last-child {
    right: 30%;
   position: absolute;
    top:-10px;
}
.server-2 .quiz-flow h2, .server-3 .quiz-flow h2 {
    
    color: #fff;
}
.spin-button {
    animation: fullButtonPulse 1.5s 
ease-in-out infinite;
    cursor: pointer;
}
.its-server-1 #amount-section .popup-title{
  color: #000;
}
h1.popup-title {
    font-size: 25px;
    text-align: center;
}
.features{
  margin-bottom: 18px;
  display: none !important;
}
.stats{
  padding-top: 15px;
}
.its-server-1 h1.popup-title{
  color: #000;
}
/*------- End ---------*/