/* ===== Base Styles ===== */
:root {
  --primary: #6e45e2;
  --secondary: #88d3ce;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --text-opacity: 0.9;
  currentColor: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, var(--dark), #16213e);
  color: var(--light);
  height: 100vh;
  overflow: hidden;
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ===== SVG Elements ===== */
.svg-logo {
  width: 220px;
  height: auto;
  margin-bottom: 1.5rem;
  color: var(--light); /* Default color */
}

/* Individual Links */
.social-link {
  color: #ffffff; /* Inherits #ffffff from parent */
  display: inline-block;
  transition: color 0.3s ease;
}

/* Hover State - Using your --secondary teal */
.social-link:hover {
  color: #88d3ce; /* Or your exact hex equivalent of --secondary */
}

/* SVG Icons */
.social-links .a svg.social-icon {
  width: 48px;
  height: 48px;
  fill: #ffffff; /* Inherits from .social-link */
  vertical-align: middle;
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  min-width: 100px;
  backdrop-filter: blur(5px);
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: var(--text-opacity);
  margin-top: 0.5rem;
}

/* ===== Typography ===== */
.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: var(--text-opacity);
  max-width: 700px;
  line-height: 1.5;
}

/* ===== Social Links ===== */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== Particles Background ===== */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ===== SEO Hidden Content ===== */
.seo-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .svg-logo {
    width: 180px;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-item {
    min-width: 80px;
    padding: 1rem;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
}

/* ===== Animation Keyframes ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Utility Classes ===== */
.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
