   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: radial-gradient(circle at top, #0f2027, #203a43, #2c5364);
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
    }

    header {
      text-align: center;
      padding: 2rem 1rem;
      background-color: rgba(0, 0, 0, 0.6);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }

    header h1 {
      color: #ffcc00;
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
    }

    main {
      flex: 1;
      padding: 2rem;
      max-width: 900px;
      margin: auto;
    }

    h2 {
      color: #ffcc00;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
    }

    p {
      line-height: 1.7;
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }

    .download-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

.download-links a {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid #666;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.1);
}

.download-links a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.3);
}


    .download-icon {
      width: 60px;
      height: 60px;
    }
    
    

/*============ TOGGLE BUTTON KEYS ===================*/
    /* Toggle Button */
.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 20px auto;
  width: 180px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background-color: #1976D2;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.toggle-btn:hover {
  background-color: #1565C0;
  transform: scale(1.02);
}
.toggle-btn:active {
  transform: scale(0.97);
}

.toggle-icon i {
  font-size: 18px;
}





.countdown-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* center sa screen */
  width: 350px;
  max-height: 80vh;
  background-color: #000;
  color: white;
  border: 1px solid #333;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
}

/* when open */
.countdown-container.open {
  opacity: 1;
  visibility: visible;
}



/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  color: white;
}

.inline {
  cursor: pointer;
  color: #1E90FF;
  font-weight: bold;
}

em {
  font-size: 12px;
  color: #ccc;
}

h2 {
  color: #FFD700;
  margin-bottom: 5px;
  font-size: 16px;
}

p {
  margin-bottom: 10px;
}

/*============ TOGGLE BUTTON KEYS ===================*/


    
    .Ccontainer {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid #ffcc00;
      padding: 1.5rem;
      border-radius: 10px;
      margin-bottom: 2rem;
    }
    
    

    .inline {
      display: inline-block;
      margin-top: 10px;
      margin-left: 10px;
      font-weight: 600;
      cursor: pointer;
    }

    #countdown, #countdown2, #countdown3 {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      color: #ffcc00;
    }

    iframe {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    a {
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      background: #3399cc00;
      border-radius: 6px;
      display: inline-block;
      margin-top: 1rem;
      transition: 0.3s;
    }

    a:hover {
      background: #0056b3;
    }

    .contact-links {
      margin-top: 1rem;
    }

    .contact-links a {
      display: block;
      margin-bottom: 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      padding: 10px 15px;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .contact-links a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    footer {
      background-color: rgba(0, 0, 0, 0.6);
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #ccc;
    }

    @media (max-width: 600px) {
      .download-links {
        flex-direction: column;
        align-items: center;
      }
    }