@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('https://cdn.unstability.ai/users/f6624cb8-cdb4-4e46-adb4-6567149af7e4/images/0f015c31-0ce2-42ca-85ac-d5a4fb7ef043/3.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

/* 🔥 Glass Effect */
.glass-container {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 15px rgba(128, 0, 128, 0.5);
    font-size: 12px;
}

#view-results-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

#buyout-fixed-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  background: #9900ff;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
#buyout-modal {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 9998;
  max-width: 300px;
}

.disclaimer {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* 🟣 Buttons with Purple Glow */
button {
    background: linear-gradient(45deg, #8a2be2, #ff00ff);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 12px rgba(255, 0, 255, 0.7);
}

/* 🖊 Input Fields */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 🌍 Map Styling */
#map-container {
  width: 95vw;
  max-width: 1600px;
  height: 85vh;
  margin: 30px auto;
  padding: 20px;
  background: rgba(10, 10, 20, 0.7);
  border-radius: 16px;
  box-shadow: 0px 0px 20px rgba(255, 0, 255, 0.3);
  backdrop-filter: blur(8px);
  color: white;
  text-align: center;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0px 0px 12px rgba(128, 0, 128, 0.6);
}