/* ===================================
   TEAM SAMSARA - MAIN PAGE
   =================================== */

/* Main Content Container */
.main-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  background: linear-gradient(135deg, #0a1f1f 0%, #081414 50%, #0d1a1a 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.main-content.visible {
  opacity: 1;
  pointer-events: all;
}

/* Main container */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/* ========== LOGO ========== */
.logo-container {
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  animation: mainLogoPulse 4s ease-in-out infinite;
}

.logo-container svg {
  max-width: 500px;
  width: 90vw;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(149, 236, 93, 0.5));
  transition: all 0.3s ease;
}

.logo-container:hover svg {
  filter: drop-shadow(0 0 50px rgba(149, 236, 93, 0.8)) brightness(1.2);
}

/* ========== SUBTITLE ========== */
.main-subtitle {
  font-size: var(--fs-45);
  font-family: var(--font-bahnschrift);
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: 3%;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

/* ========== COUNTDOWN ========== */
.countdown {
  display: flex;
  gap: 61px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-item {
  text-align: center;
  padding: 0;
  min-width: auto;
}

.countdown-value {
  font-size: var(--fs-70);
  font-family: var(--font-anton);
  font-weight: bold;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(149, 236, 93, 0.5);
}

.countdown-label {
  display: none;
}

/* ========== BUTTON ========== */
.notify-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8fcc50 100%);
  color: var(--color-button-text);
  font-family: var(--font-anton);
  border: none;
  padding: 0;
  width: 400px;
  height: 60px;
  font-size: var(--fs-35);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(149, 236, 93, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(149, 236, 93, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .main-subtitle {
    font-size: var(--fs-25);
    margin-bottom: 30px;
  }
  
  .countdown {
    gap: 15px;
  }
  
  .countdown-item {
    padding: 0;
    min-width: 60px;
  }
  
  .countdown-value {
    font-size: var(--fs-30);
  }
}