/* Colores principales */
:root {
  --primary: #fe0100;
  --secondary: #ffffff;
  --bg-dark: rgba(0, 0, 0, 0.6);
  --text-light: #ffffff;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: var(--font-main);
  color: var(--text-light);
  position: relative;
  background: url('../images/Background.jpg') no-repeat center center/cover;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.logo {
  width: 200px;
  max-width: 80%;
  margin-bottom: 1rem;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

#countdown {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

#countdown div {
  background-color: var(--primary);
  padding: 1rem;
  border-radius: 15px;
  min-width: 80px;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#countdown span {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
  #countdown div {
    min-width: 60px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.5rem;
  }
  #countdown div {
    padding: 0.5rem;
    font-size: 1.5rem;
  }
}

/* Redes sociales  */
.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  position: relative;
  color: var(--secondary);
  background: #ffffff10;
  padding: 0.6rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  backdrop-filter: blur(6px);
}

.social-btn:hover {
  color: #fe0100;
  background-color: var(--secondary);
  transform: scale(1.1);
}

/* Tooltips */
.social-btn .tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: #fe0100;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.social-btn:hover .tooltip {
  opacity: 1;
}

/* Adicional agregado */
.reds {
  margin-top: 2rem;
}