/* style.css */

:root {
  --color-bg: #010100;
  --color-accent: #fdb750;
  --color-warning: #fd7f20;
  --color-danger: #fc2e20;
  --font-body: 'Roboto', sans-serif;
}

/* Layout, popup, form, and player styling */

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

html, body {
  height: 100%;
  font-family: var(--font-body);
  color: #eee;
  background: var(--color-bg);
  overflow-x: hidden;
}

.background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg_1.gif') center/cover no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  background: rgba(1,1,0,0.65);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 16px;
  max-width: 640px;
  margin: auto;
  margin-top: 5rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(253, 183, 80, 0.9);
  transition: all 0.3s ease-in-out;
}

.logo {
  max-width: 90px;
  margin: 1rem auto;
  display: block;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  letter-spacing: 1px;
}

.container > p {
  margin-bottom: 1.75rem;
  font-size: 1.15rem;
  line-height: 1.5;
}

.open-form-btn {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.9rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.3s;
  margin-bottom: 1.5rem;
}

.open-form-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

<!-- @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(253,183,80,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(253,183,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(253,183,80,0); }
} -->

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup.hidden {
  display: none;
}

.popup-body {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  color: #fff;
  position: relative;
}

select option {
  background-color: #1a1a1a;
  color: #eee;
  font-family: var(--font-body);
  padding: 0.5rem;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-field {
  flex: 1 1 50%;
}

#selectCountryCode {
  flex: 0 0 30%;
  max-width: 30%;
}

#inputWhatsapp {
  flex: 1 1 70%;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--color-accent);
  background: rgba(255,255,255,0.05);
  color: #eee;
  font-size: 1rem;
}

.form-submit-btn {
  padding: 0.75rem;
  background: var(--color-accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  max-width: 30%;
  min-width: 30%;
  margin: auto;
}

.form-submit-btn:hover {
  background: var(--color-warning);
}
/* Close popup button style */
.close-popup-btn {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-weight: bold;
  background-color: var(--color-warning);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.close-popup-btn:hover {
  background-color: var(--color-danger);
}

.custom-player {
  background: #111;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--color-accent);
  margin: auto;
  max-width: 70%;
  max-height: 15rem;
}

h2 {
  padding: 1rem;
}

.player-controls {
  display: flex;
  gap: 1rem;
}

.player-btn {
  background: var(--color-accent);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  transition: background 0.3s ease;
}

.player-btn:hover {
  background: var(--color-warning);
}

.now-playing-box {
  background: rgba(255,255,255,0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  text-align: center;
}

.now-playing-label {
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.track-details {
  font-size: 0.95rem;
  color: #eee;
}

#mail {
  display: flex;
  flex: 1;
}

.site-footer {
  z-index: 1;
  position: relative;
  background: rgba(0,0,0,0.8);
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 800px;
  margin: auto;
  color: #fff;
  text-align: center;
}

.footer-content hr {
  border: none;
  height: 1px;
  background-color: rgba(255,255,255,0.1);
  margin: 1rem auto;
  width: 35%;
}

.footer-content p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-content a {
  color: var(--color-accent);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--color-warning);
}

.footer-bottom {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .player-wrapper {
    width: 95%;
  }

  .custom-player {
    max-width: 100%;
    max-height: none;
    padding: 1rem;
    gap: 0.75rem;
  }

  .player-controls {
    flex-direction: column;
    align-items: center;
  }

  .player-btn {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .now-playing-box {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .track-details {
    font-size: 0.85rem;
  }
}
/* ✅ Styled select options to match theme */
select option {
  background-color: #1a1a1a;
  color: #eee;
  font-family: var(--font-body);
  padding: 0.5rem;
}

/* ✅ Overlay for message after submission */
.message-overlay {
  position: absolute;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  padding: 2rem;
  border-radius: 12px;
}

.message-overlay .emoji {
  font-size: 4rem;
  <!-- animation: pulse 2s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.3s; -->
  margin-bottom: 1rem;
}

<!-- @keyframes pop-bounce {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
 -->
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(253,183,80,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(253,183,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(253,183,80,0); }
}
