body {
      margin: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: radial-gradient(circle at 20% 20%, #0a0a0f, #060609 70%);
      overflow: hidden;
      font-family: "Poppins", sans-serif;
      color: #fff;
      text-align: center;
    }

    /* === Background Glow === */
    .bg {
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(600px at 30% 30%, rgba(0,255,255,0.08), transparent 70%),
                  radial-gradient(600px at 70% 70%, rgba(255,0,255,0.08), transparent 70%);
      animation: moveGlow 6s ease-in-out infinite alternate;
      z-index: 0;
    }

    @keyframes moveGlow {
      from { filter: blur(0px); transform: scale(1); }
      to { filter: blur(8px); transform: scale(1.05); }
    }

    /* === Logo Container === */
    .logo-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    /* === Logo === */
    .logo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00ffe1, #a600ff);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 40px #00ffe1a0, 0 0 80px #a600ffa0;
      animation: spin 3s linear infinite;
      position: relative;
    }

    .logo::after {
      content: "";
      position: absolute;
      font-family: "Orbitron", sans-serif;
      font-size: 42px;
      font-weight: 700;
      background: linear-gradient(90deg, #00fff6, #b500ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: pulseText 1.8s ease-in-out infinite alternate;
    }

    @keyframes spin {
      0% { transform: rotate(0deg) scale(1); }
      100% { transform: rotate(360deg) scale(1); }
    }

    @keyframes pulseText {
      from { opacity: 0.6; transform: scale(1); }
      to { opacity: 1; transform: scale(1.1); }
    }

    /* === Text === */
    .text {
      margin-top: 30px;
      z-index: 2;
    }

    .text h1 {
      font-family: "Orbitron", sans-serif;
      font-size: 28px;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #00fff6, #b500ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fadeIn 2s ease-in-out forwards;
    }

    .text p {
      font-size: 14px;
      color: #aaa;
      opacity: 0;
      animation: fadeIn 3s ease-in-out forwards;
      animation-delay: 1s;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* === Progress Bar === */
    .progress {
      width: 120px;
      height: 4px;
      background: #111;
      border-radius: 2px;
      overflow: hidden;
      margin: 30px auto 0;
      position: relative;
    }

    .progress::before {
      content: "";
      position: absolute;
      left: -40%;
      width: 40%;
      height: 100%;
      background: linear-gradient(90deg, #00ffe1, #a600ff);
      animation: load 2.5s linear infinite;
    }

    @keyframes load {
      from { left: -40%; }
      to { left: 100%; }
    }

    @media (max-width: 600px) {
      .logo { width: 100px; height: 100px; }
      .logo::after { font-size: 30px; }
      .text h1 { font-size: 22px; }
      .progress { width: 100px; }
    }
    

    .enter-btn {
      background: linear-gradient(90deg, #00fff6, #b500ff);
      border: none;
      margin-top: 50px;
      border-radius: 30px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      padding: 12px 36px;
      cursor: pointer;
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      animation: fadeIn 3s ease-in-out forwards;
    }

    .enter-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
      transition: left 0.4s ease;
    }

    .enter-btn:hover::before {
      left: 100%;
    }

    .enter-btn:hover {
      box-shadow: 0 0 25px #00fff6a0, 0 0 50px #a600ffa0;
      transform: scale(1.05);
    }

    @media (max-width: 600px) {
      .logo { width: 100px; height: 100px; }
      .logo::after { font-size: 30px; }
      .text h1 { font-size: 22px; }
      .enter-btn { font-size: 14px; padding: 10px 30px; }
    }
    .wallet-info {
      margin-top: 20px;
      background: rgba(255, 255, 255, 0.05);
      padding: 10px 20px;
      border-radius: 12px;
      display: inline-block;
      font-size: 0.9rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .splash-footer {
      position: absolute;
      top: 80%;
      bottom: 20px;
      width: 100%;
      text-align: center;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.8rem;
    }

    .hidden {
      display: none;
    }
    /* To hide */
    .hide-div {
      display: none;
    }

    /* To show */
    .show-div {
      display: block; /* Or inline, inline-block, flex, etc., depending on desired display behavior */
    }