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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #0a0a0a, #1c1c1c);
  color: #f2f2f2;
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  background: #1a1a1a;
  color: #dfbd69;
  border-bottom: 1px solid #333;
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  padding: 30px 15px;
  background: #121212;
}

.countdown-heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #dfbd69;
}

#timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

#timer div {
  background: #1e1e1e;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.05);
  min-width: 60px;
}

#timer span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #dfbd69;
}

#timer p {
  margin: 0;
  font-size: 0.75rem;
  color: #ccc;
}

/* Profile Section */
#profile {
  padding: 30px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 500px;
  width: 100%;
}

.profile-image img {
  width: 220px;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

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

.profile-text h1 {
  font-size: 2rem;
  margin: 10px 0;
  color: #f9f9f9;
}

.profile-text p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  font-weight: 600;
  padding: 0.9rem 1.4rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.btn-fill {
  background: #dfbd69;
  color: #000;
  border: none;
  box-shadow: 0 3px 6px rgba(212, 175, 55, 0.3);
}

.btn-fill:hover {
  background: #b9962e;
}

.btn-outline {
  border: 2px solid #dfbd69;
  background: none;
  color: #dfbd69;
}

.btn-outline:hover {
  background: #dfbd69;
  color: #000;
}

/* Social Icons */
.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.socials img {
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  border-radius: 50%;
  background: #dfbd69;
  padding: 6px;
}

.socials img:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #1a1a1a;
  font-size: 0.85rem;
  color: #888;
  margin-top: 30px;
  border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .countdown-heading {
    font-size: 1.5rem;
  }

  #timer span {
    font-size: 1.6rem;
  }

  #timer p {
    font-size: 0.7rem;
  }

  #timer div {
    padding: 8px 12px;
    min-width: 55px;
  }

  .profile-text h1 {
    font-size: 1.8rem;
  }

  .profile-text p {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.8rem 1.1rem;
  }

  .socials img {
    width: 34px;
    height: 34px;
  }
}
