.page {
  padding: 0 0 80px;
}

.hero {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 59, 92, 0.05) 100%);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 30px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '⚡';
  position: absolute;
  right: -5%;
  top: -20%;
  font-size: 20rem;
  opacity: 0.05;
  filter: blur(10px);
  pointer-events: none;
}

[dir='rtl'] .hero::after {
  right: auto;
  left: -5%;
}

.heroContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  font-family: 'Orbitron', 'Cairo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}

/* Timer */
.timerWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.timerLabel {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.timeBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 80px;
}

.timeValue {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.8);
}

.timeText {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-top: 6px;
  font-weight: 600;
}

.colon {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-orange);
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from { opacity: 1; text-shadow: 0 0 10px rgba(255, 122, 0, 0.8); }
  to { opacity: 0.3; text-shadow: none; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 20px; }
  .timer { gap: 8px; }
  .timeBlock { min-width: 60px; padding: 10px; }
  .timeValue { font-size: 1.5rem; }
  .colon { font-size: 1.5rem; }
}
