
    body {
      font-family: "Poppins", sans-serif;
      color: #f5c46a;
      height: 100vh;
      margin: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: url(/img/cover-1.jpg) no-repeat center center/cover;
      position: relative;
    }

    body::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
      backdrop-filter: blur(1px);
      z-index: 1;
    }

    .content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.5s ease-in-out;
      padding: 0 20px;
      text-shadow: 0 0 10px rgba(0,0,0,0.8);
    }

    .logo {
      width: 140px;
      height: auto;
      margin-bottom: 25px;
      filter: drop-shadow(0 0 10px rgba(245,196,106,0.8));
      animation: pulse 3s infinite;
    }

    h1 {
      font-family: "Great Vibes", cursive;
      font-size: 3.2rem;
      color: #f9d67a;
      margin-bottom: 10px;
      letter-spacing: 2px;
      animation: shimmer 5s infinite linear;
    }

    h2 {
      color: #ffeabf;
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 25px;
    }

    .countdown {
      font-size: 1.2rem;
      letter-spacing: 2px;
      color: #f5c46a;
      background: rgba(0,0,0,0.3);
      display: inline-block;
      padding: 10px 20px;
      border: 1px solid rgba(245,196,106,0.4);
      border-radius: 30px;
      backdrop-filter: blur(2px);
      animation: fadeIn 2s ease-in;
    }

    .contact-box {
      margin-top: 30px;
      display: inline-block;
      background: rgba(255, 215, 128, 0.1);
      border: 1px solid rgba(245, 196, 106, 0.4);
      padding: 12px 25px;
      border-radius: 50px;
      box-shadow: 0 0 15px rgba(245,196,106,0.3);
      font-size: 1.1rem;
      color: #ffeabf;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .contact-box:hover {
      background: rgba(245, 196, 106, 0.2);
      box-shadow: 0 0 25px rgba(245,196,106,0.5);
      transform: scale(1.05);
    }

    .contact-box i {
      margin-right: 8px;
      color: #ffd77b;
    }

    .social-icons a {
      color: #f5c46a;
      font-size: 1.6rem;
      margin: 0 12px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #fff;
      transform: scale(1.2);
    }

    footer {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      font-size: 0.9rem;
      color: #f0c96a;
      z-index: 2;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes shimmer {
      0% {text-shadow: 0 0 10px #f5c46a;}
      50% {text-shadow: 0 0 25px #ffd27b;}
      100% {text-shadow: 0 0 10px #f5c46a;}
    }

    @keyframes pulse {
      0%, 100% {transform: scale(1);}
      50% {transform: scale(1.05);}
    }

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
 