
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

html, body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      background: radial-gradient(circle at 50% 30%, #1e293b 0%, #0f172a 60%, #000 100%);
      background-attachment: fixed;
      background-size: cover;
      overflow-x: hidden;}

.hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
}

h1 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-shadow: 0 0 20px #60a5fa, 0 0 40px #3b82f6;
      margin-bottom: 30px;
      animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 20px #60a5fa, 0 0 40px #3b82f6; }
    50% { text-shadow: 0 0 10px #3b82f6, 0 0 20px #60a5fa; }
}
.countdown {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 0 30px rgba(96,165,250,0.3);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.unit {
    text-align: center;
    min-width: 100px;
}

.num {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    text-shadow: 0 0 15px #3b82f6;
}

.label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #cbd5e1;
    text-transform: uppercase;
}

.finished {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #10b981;
    text-shadow: 0 0 15px #10b981;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 100px 10%;
    min-height: 100vh;
    flex-wrap: wrap;
}

section:nth-child(even) {
    flex-direction: row-reverse;
    background: rgba(255,255,255,0.03);
}

section img {
    width: 40%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(59,130,246,0.4);
    transition: transform 0.3s ease;
}

section img:hover {
    transform: scale(1.05);
}

.text {
    flex: 1;
    min-width: 250px;
}

.text h2 {
    font-size: 2rem;
    color: #93c5fd;
    margin-bottom: 15px;
}

.text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
}


html {
    scroll-behavior: smooth;
}

.scroll-ned {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  font-size: 1rem;
  letter-spacing: 1px;
  animation: fadeIn 3s ease-in-out;
  text-align: center;
}

.scroll-ned p {
  margin-bottom: 8px;
  text-shadow: 0 0 10px #3b82f6;
}

.pil {
  width: 24px;
  height: 24px;
  border-left: 3px solid #60a5fa;
  border-bottom: 3px solid #60a5fa;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-45deg); opacity: 0.8; }
  50% { transform: translateY(10px) rotate(-45deg); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.videosection {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  min-height: 60vh;
}

.lanvideo {
  width: 80%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(59,130,246,0.4);
}