:root {
  --neon-cyan: #00ffff;
  --neon-purple: #b800ff;
  --neon-pink: #ff00ff;
  --neon-orange: #ff6600;
  --dark: #050505;
  --darker: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--darker);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img {
  pointer-events: none;
}

#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.15;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, 
    rgba(0, 255, 255, 0.03) 0%,
    rgba(184, 0, 255, 0.03) 25%,
    rgba(255, 0, 255, 0.03) 50%,
    rgba(255, 102, 0, 0.03) 75%,
    rgba(0, 255, 255, 0.03) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glitch 5s infinite;
}

@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-2px, 2px); }
  94% { transform: translate(2px, -2px); }
  96% { transform: translate(-2px, -2px); }
  98% { transform: translate(2px, 2px); }
}

.main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 40px;
}

.content-wrapper {
  width: 100%;
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 30px;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  }
}

.main-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    background-position: 0% 50%;
  }
  50% {
    filter: drop-shadow(0 0 40px var(--neon-purple));
    background-position: 100% 50%;
  }
}

.subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.destination-box {
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: slideIn 0.8s ease 0.3s backwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.destination-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: slideService 3s ease-in-out infinite;
}

@keyframes slideService {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.destination-label {
  color: var(--neon-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.destination-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 1;
  word-break: break-all;
}

.timer-section {
  margin: 40px 0;
  animation: scaleIn 0.8s ease 0.5s backwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.countdown-circle {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  position: relative;
}

.countdown-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circle-bg {
  stroke: rgba(0, 255, 255, 0.1);
  fill: none;
  stroke-width: 8;
}

.circle-progress {
  stroke: url(#gradient);
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 502.4;
  stroke-dashoffset: 502.4;
  transition: stroke-dashoffset 0.1s linear;
}

.countdown-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: numberPulse 1s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.countdown-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 600;
}

.status-text {
  color: var(--neon-cyan);
  font-size: 1rem;
  margin: 20px 0;
  font-weight: 600;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.buttons-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.buttons-group.show {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  padding: 16px 35px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: white;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: black;
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--neon-cyan);
}

.floating-particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translate(var(--x), var(--y));
    opacity: 0;
  }
}

@media (max-width: 768px) {
  nav { padding: 15px 0; }
  .nav-container { padding: 0 20px; }
  .logo { font-size: 1.6rem; }
  .main-container { padding: 100px 20px 40px; }
  .badge { padding: 8px 20px; font-size: 0.85rem; margin-bottom: 20px; }
  .main-title { font-size: 2.8rem; margin-bottom: 15px; }
  .subtitle { font-size: 1.2rem; margin-bottom: 30px; }
  .destination-box { padding: 20px; margin-bottom: 30px; }
  .destination-label { font-size: 0.85rem; }
  .destination-text { font-size: 1.1rem; }
  .countdown-circle { width: 140px; height: 140px; }
  .countdown-number { font-size: 3rem; }
  .countdown-label { font-size: 1rem; }
  .status-text { font-size: 0.95rem; }
  .btn { padding: 14px 30px; font-size: 1rem; flex: 1; min-width: 140px; }
}

@media (max-width: 576px) {
  .main-container { padding: 90px 15px 30px; }
  .logo { font-size: 1.4rem; }
  .badge { padding: 7px 18px; font-size: 0.8rem; letter-spacing: 1px; }
  .main-title { font-size: 2.2rem; letter-spacing: -1px; }
  .subtitle { font-size: 1.1rem; line-height: 1.5; }
  .destination-box { padding: 18px; margin-bottom: 25px; border-radius: 15px; }
  .destination-text { font-size: 1rem; }
  .countdown-circle { width: 120px; height: 120px; }
  .countdown-number { font-size: 2.5rem; }
  .countdown-label { font-size: 0.95rem; }
  .buttons-group { flex-direction: column; gap: 12px; }
  .btn { width: 100%; padding: 14px 25px; font-size: 0.95rem; min-width: auto; }
}