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

html,
body {
  height: 100%;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #ffffff;
  overflow-x: hidden;
}

body {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

#background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

#content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.loading {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none !important;
}

#main-content {
  max-width: 600px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.location-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.5rem;
}

.location-header h1 {
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.location-header p {
  font-size: 1.5rem;
  color: #f0e68c;
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.drink-section {
  text-align: center;
  margin-bottom: 2rem;
}

.drink-image-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.drink-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-section h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.drink-section p {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.recipe-section {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.recipe-section h3 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffd700;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ingredients,
.instructions {
  margin-bottom: 2rem;
}

.recipe-section h4 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #f0e68c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

#ingredients-list,
#instructions-list {
  list-style-position: inside;
  line-height: 1.8;
  font-size: 1rem;
}

#ingredients-list li,
#instructions-list li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.error {
  text-align: center;
  background: rgba(139, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
}

.error p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #content {
    padding: 1rem;
  }

  #main-content {
    padding: 2rem 1.5rem;
  }

  .location-header h1 {
    font-size: 2rem;
  }

  .location-header p {
    font-size: 1.2rem;
  }

  .drink-section h2 {
    font-size: 1.5rem;
  }

  .drink-image-container {
    width: 150px;
    height: 150px;
  }

  .recipe-section h3 {
    font-size: 1.5rem;
  }
}
