:root {
  --bg-color: #020202;
  --text-primary: #ffffff;
  --text-secondary: #0088A8;
  --accent-green: #00f7ff;
  --accent-teal: #0088A8;
  --card-bg: rgba(0, 136, 168, 0.1);
  --card-border: rgba(0, 136, 168, 0.3);
  --font-main: 'Russo One', 'Russo One', -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Background Diamonds Pattern */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* Grid Background */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 136, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 136, 168, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
}

/* Mouse Follower */
.mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 136, 168, 0.15) 0%, rgba(0, 136, 168, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  will-change: transform;
}

/* Corner Glows */
.corner-glow {
  position: fixed;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0, 136, 168, 0.4) 0%, rgba(0, 136, 168, 0) 90%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(200px);
}

.top-left-glow {
  top: -600px;
  left: -600px;
}

.bottom-right-glow {
  bottom: -600px;
  right: -600px;
}

.diamond {
  position: absolute;
  background: linear-gradient(135deg, rgba(0, 136, 168, 0.2) 0%, rgba(0, 136, 168, 0) 100%);
  border: 1px solid rgba(0, 136, 168, 0.1);
  transform: rotate(45deg);
}

/* Left cluster */
.d1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: -50px;
}

.d2 {
  width: 150px;
  height: 150px;
  top: 25%;
  left: 50px;
}

.d3 {
  width: 80px;
  height: 80px;
  top: 45%;
  left: -20px;
}

.d4 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80px;
}

/* Right cluster */
.d5 {
  width: 200px;
  height: 200px;
  top: 5%;
  right: -80px;
}

.d6 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 40px;
}

.d7 {
  width: 180px;
  height: 180px;
  top: 55%;
  right: -20px;
}

/* Main Container */
.container {
  max-width: 1200px;
  width: 90%;
  text-align: center;
  z-index: 1;
  margin-top: -140px;
  /* Subindo o conteúdo ainda mais */
}

.logo {
  width: 100px;
  margin-bottom: 30px;
  /* Reduzido de 40px */
  filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
}

.sub-title {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--accent-teal);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.main-title span {
  color: var(--accent-teal);
}

/* Countdown Section */
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card {
  width: 160px;
  height: 180px;
  background: var(--card-bg);
  border: 3px solid rgb(4, 148, 180);
  /* Aumentado o traçado e a visibilidade */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  font-weight: 800;
  position: relative;
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-teal);
  box-shadow: 0 10px 30px rgba(0, 136, 168, 0.2);
}

.label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.separator {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-teal);
  margin-bottom: 40px;
}

/* Footer Section */
footer {
  position: fixed;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.footer-divider-container {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-line {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
  margin-bottom: 25px;
}

.footer-center {
  position: absolute;
  left: 50%;
  bottom: 18px;
  /* Moveu os ícones ainda mais perto da linha */
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.interaction-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  clip-path: polygon(0% 0%, 82% 0%, 100% 18%, 100% 100%, 18% 100%, 0% 82%);
}

.social-icon:hover {
  background: var(--card-bg);
  border-color: var(--accent-teal);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 136, 168, 0.2);
}

.footer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer-text span {
  color: var(--accent-teal);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .countdown-container {
    gap: 20px;
  }

  .card {
    width: 100px;
    height: 120px;
    font-size: 40px;
  }

  .separator {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }

  .footer-divider-container {
    display: none;
  }

  .footer-center {
    position: static;
    transform: none;
    order: -1;
    /* Place social icons first on mobile */
  }

  .footer-text {
    text-align: center;
  }
}

/* Notification Toast */
.notification-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: rgba(0, 136, 168, 0.2);
  backdrop-filter: blur(15px);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  border: 1px solid rgba(0, 136, 168, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, fadeOut 0.4s ease 2.6s forwards;
  font-weight: 600;
  font-size: 14px;
}

.notification-toast i {
  color: #00f7ff;
  font-size: 18px;
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(20px); opacity: 0; }
}