      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, sans-serif;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        min-height: 100vh;
        padding: 2rem;
        position: relative;
        overflow: hidden;
      }

      .background {
        position: absolute;
        inset: 0;
        overflow: hidden;
        margin: 250px;
        box-sizing: border-box;
      }

      .content{
        color:#fff;
        font-size:20px;
        margin: 50px auto 40px;
        max-width:600px;
        line-height:1.6;
      }

      /* Background video - covers viewport and sits behind content */
      #bg-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
        filter: brightness(0.55) contrast(0.95);
      }
      .gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        animation: float 20s infinite ease-in-out;
      }

      .orb-1 {
        width: 500px;
        height: 500px;
        background: linear-gradient(135deg, #2563eb, #06b6d4);
        top: -250px;
        left: -250px;
      }

      .orb-2 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #06b6d4, #0891b2);
        bottom: -200px;
        right: -200px;
        animation-delay: 5s;
      }

      .orb-3 {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        top: 50%;
        right: 10%;
        animation-delay: 10s;
      }

      @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);
        }
      }

      .container {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
        animation: fadeIn 0.8s ease-out;
      }


      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      .brand-name {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.02em;
      }

      h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
      }

      p {
        font-size: 1.25rem;
        color: #cbd5e1;
        margin-bottom: 3rem;
        line-height: 1.8;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .countdown {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
      }

      .time-box {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1.5rem 2rem;
        min-width: 120px;
        transition: all 0.3s ease;
      }

      .time-box:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
      }

      .time-value {
        font-size: 3rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 0.5rem;
      }

      .time-label {
        font-size: 0.875rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 500;
      }

      .email-section {
        display: flex;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto 3rem;
      }

      input {
        flex: 1;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        color: #ffffff;
        outline: none;
        transition: all 0.3s ease;
        font-family: inherit;
      }

      input::placeholder {
        color: #94a3b8;
      }

      input:focus {
        border-color: #2563eb;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
      }

      button {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 12px;
        background: linear-gradient(135deg, #2563eb, #06b6d4);
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-family: inherit;
      }

      button:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
      }

      button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }

      .success-message {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-radius: 12px;
        color: #10b981;
        font-weight: 500;
        animation: slideIn 0.5s ease-out;
        margin-bottom: 3rem;
      }

      .success-message.show {
        display: flex;
      }

      @keyframes slideIn {
        from {
          opacity: 0;
          transform: scale(0.95);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

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

      .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .social-link {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #94a3b8;
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .social-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transform: translateY(-4px);
      }

      @media (max-width: 768px) {
        h1 {
          font-size: 2.5rem;
        }

        p {
          font-size: 1.125rem;
        }

        .countdown {
          gap: 1rem;
        }

        .time-box {
          padding: 1rem 1.5rem;
          min-width: 100px;
        }

        .time-value {
          font-size: 2.5rem;
        }

        .email-section {
          flex-direction: column;
        }

        .brand-name {
          font-size: 1.5rem;
        }
      }

      @media (max-width: 480px) {
        h1 {
          font-size: 2rem;
        }

        .time-box {
          padding: 0.75rem 1rem;
          min-width: 80px;
        }

        .time-value {
          font-size: 2rem;
        }

        .time-label {
          font-size: 0.75rem;
        }
      }