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

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #4a4a4a;
  position: relative;
  overflow-x: hidden;
}

/* Language Selector */
.language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 100;
}

.lang-btn {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  color: #4a4a4a;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
}

.content {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  animation: fadeIn 1s ease-in-out;
}

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

.title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #6c5ce7;
  font-weight: 600;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #a29bfe;
}

/* Countdown Styles */
.countdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown-box {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  color: white;
  border-radius: 15px;
  padding: 15px;
  min-width: 120px;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
  transition: transform 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-5px);
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.message {
  font-size: 1.4rem;
  margin-top: 20px;
  color: #fd79a8;
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 20px;
  width: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-text {
  color: #4a4a4a;
  font-size: 1rem;
  margin-bottom: 20px;
}

.love-message {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(253, 121, 168, 0.2);
}

.love-quote {
  font-size: 1.4rem;
  color: #fd79a8;
  margin-bottom: 15px;
  font-weight: 600;
}

.love-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c5ce7;
  margin-bottom: 15px;
}

.hidden-message {
  font-size: 0.9rem;
  color: #a29bfe;
  font-style: italic;
  padding: 10px;
  border-top: 1px solid rgba(108, 92, 231, 0.2);
  max-width: 80%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.hidden-message:hover {
  color: #fd79a8;
  transform: scale(1.05);
}

/* Efekty specjalne */
.heart {
  position: fixed;
  font-size: 1.5rem;
  pointer-events: none;
  animation: float 2s ease-in-out forwards;
  z-index: 1000;
}

@keyframes float {
  0% {
    transform: scale(0) translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5) translateY(-100px) rotate(20deg);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .countdown-container {
    gap: 10px;
  }

  .countdown-box {
    min-width: 90px;
    padding: 10px;
  }

  .countdown-value {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

  .message {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 25px 15px;
  }

  .countdown-container {
    gap: 8px;
  }

  .countdown-box {
    min-width: 70px;
    padding: 8px;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .language-selector {
    top: 10px;
    right: 10px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .love-quote {
    font-size: 1.1rem;
  }

  .love-text {
    font-size: 0.9rem;
  }

  .hidden-message {
    font-size: 0.8rem;
  }
}
