:root {
    --bg-dark: #0e0d0b;
    --bg-light: #1a1a18;
    --primary: #d1a54c;
    --accent: #ff6b6b;
    --text: #f2f4f8;
    --text-muted: #9da8ba;
    --border: rgba(255, 255, 255, 0.08);
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(
      circle at top,
      #1f1d1a 0%,
      #0e0d0b 70%
    );
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero {
    min-height: 100vh;
    padding: 2rem clamp(1.5rem, 5vw, 5rem) 4rem;
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
      145deg,
      rgba(24, 22, 18, 0.9),
      rgba(12, 11, 9, 0.95)
    );
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem clamp(1.5rem, 5vw, 5rem);
    background: rgba(20, 18, 15, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.scrolled .navbar {
    background: rgba(20, 18, 15, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.link {
    color: var(--text-muted);
    font-weight: 500;
}

.hero-content {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.button.primary {
    background: linear-gradient(135deg, var(--primary), #a87f2e);
    color: #050505;
    box-shadow: 0 0 25px rgba(209, 165, 76, 0.35);
}

.button.ghost {
    border-color: var(--border);
    color: var(--text);
    background: transparent;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(209, 165, 76, 0.35);
}

.button:hover:not(.disabled):not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.25); /* amber tonlu glow */
}

.button.disabled,
.button:disabled {
    opacity: 0.55;
    cursor: not-allowed; /* ������ devre dışı imleç */
    pointer-events: none;
    box-shadow: none !important;
    transform: none !important;
    filter: grayscale(0.4);
}

.button.primary.disabled,
.button.primary:disabled {
    background: linear-gradient(135deg, #7a6c38, #5a4c26);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.button.ghost.disabled,
.button.ghost:disabled {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.08);
}

.video-frame {
    border-radius: 20px;
    padding: 1rem;
    background: linear-gradient(160deg, rgba(209,165,76,0.2), rgba(209,165,76,0));
    border: 1px solid rgba(209,165,76,0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

main {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 clamp(1.5rem, 5vw, 5rem) 6rem;
}

.trust {
    text-align: center;
    display: grid;
    gap: 2rem;
}

.trust p {
    color: var(--text-muted);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.metric {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features h2,
.comparison h2,
.gallery h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 2rem;
    text-align: center;
}

section {
  scroll-margin-top: 6rem; /* navbar yüksekliğine denk gelen boşluk */
}

.section-lead {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(160deg, rgba(28, 26, 22, 0.85), rgba(14, 12, 10, 0.92));
    border: 1px solid rgba(209, 165, 76, 0.2);
    border-radius: 18px;
    padding: 1.8rem;
    display: grid;
    gap: 1.2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    font-size: 1.35rem;
}

.feature-card p {
    color: var(--text-muted);
}

.comparison .plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.plan {
    border-radius: 22px;
    padding: 2.5rem 2rem;
    display: grid;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(160deg, rgba(30, 28, 24, 0.85), rgba(12, 11, 9, 0.95));
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.plan.basic {
    border-image: linear-gradient(145deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)) 1;
}

.plan.premium {
    background: linear-gradient(160deg, rgba(209,165,76,0.28), rgba(30, 28, 24, 0.92));
    border: 1px solid rgba(209,165,76,0.4);
    box-shadow: 0 25px 65px rgba(209,165,76,0.18);
}

.plan h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    color: var(--text-muted);
}

.plan ul li::before {
    content: '✔';
    color: var(--primary);
    margin-right: 0.75rem;
}

.plan .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e1c67a; /* ������ altın/amber tonu */
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Ana fiyat */
.plan .price .main-price {
  display: block;
  color: #f4e2b8; /* açık altın rengi, daha parlak görünür */
}

/* İndirim etiketi */
.plan .discount-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #b3e6af; /* ������ pastel yeşil */
  background: rgba(83, 123, 79, 0.15); /* soft yeşil arkaplan */
  border: 1px solid rgba(179, 230, 175, 0.2);
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(83, 123, 79, 0.2);
  animation: softPulse 3s infinite;
}

/* Hafif nefes alan parıltı animasyonu */
@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(179, 230, 175, 0.2); }
  50% { box-shadow: 0 0 14px rgba(179, 230, 175, 0.35); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

figure {
    display: grid;
    gap: 1rem;
    text-align: center;
}

figcaption {
    color: var(--text-muted);
}

.cta {
    background: linear-gradient(
      140deg,
      rgba(209, 165, 76, 0.25),
      rgba(255, 215, 120, 0.12)
    );
    border-radius: 26px;
    padding: 3rem clamp(2rem, 6vw, 6rem);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(209, 165, 76, 0.3);
    box-shadow: 0 25px 60px rgba(209, 165, 76, 0.12);
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-family: 'Oswald', sans-serif;
    color: var(--text);
}

.cta p {
    color: var(--text-muted);
    max-width: 32rem;
}

.footer {
    border-top: 1px solid rgba(209,165,76,0.1);
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    background: linear-gradient(180deg, rgba(24,22,18,0.9), rgba(12,11,10,0.95));
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.6);
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.links {
    display: grid;
    gap: 0.75rem;
    color: var(--text-muted);
}

.links a:hover {
    color: var(--primary);
}

/* --- Modal Genel --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
}

.modal-content {
  background: rgba(15, 20, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.modal-content h2 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.modal-content input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.modal-content input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.modal-content input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(78, 205, 196, 0.3);
  outline: none;
}

.button.full {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.switch-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.switch-text a {
  color: var(--primary);
  font-weight: 500;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* --- Kullanıcı Durum Rozetleri --- */
.navbar .cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.user-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.user-badge .username {
  color: var(--text);
  font-weight: 600;
}

.user-badge.basic {
  color: var(--text-muted);
}

.user-badge.premium {
  background: linear-gradient(135deg, var(--primary), #2aa198);
  color: #051013;
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.35);
}

.user-badge.premium .username {
  color: #051013;
}

.upgrade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  background: transparent;
  transition: 0.25s ease;
  white-space: nowrap;
}

.upgrade-btn:hover {
  background: var(--primary);
  color: #051013;
  box-shadow: 0 0 12px rgba(78, 205, 196, 0.25);
}


@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
    }

    main {
        padding: 0 1.5rem 4rem;
    }

    .cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* --- Premium Badge Animasyon --- */
@keyframes premiumShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.user-badge.premium {
  background: linear-gradient(120deg, #e0b457, #a87f2e, #e0b457);
  background-size: 200% 200%;
  color: #1b1204;
  box-shadow: 0 0 18px rgba(209, 165, 76, 0.4);
  animation: premiumShine 6s ease-in-out infinite;
  border: none;
  transition: box-shadow 0.4s ease, transform 0.2s ease;
}

.user-badge.premium:hover {
  box-shadow: 0 0 25px rgba(209, 165, 76, 0.8), 0 0 40px rgba(209, 165, 76, 0.45);
  transform: translateY(-1px);
}

.user-menu {
  position: relative;
  display: inline-block;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.user-dropdown-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    padding: 10px 0;
    list-style: none;
    border-radius: 6px;
    min-width: 180px;
    z-index: 999;
}

.user-dropdown-menu.open {
    display: block;
}

.user-dropdown-menu li {
    padding: 8px 15px;
}

.user-dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.user-dropdown-menu li:hover {
    background: #333;
}

.logout-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

.logout-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* --- LemonSqueezy Modal Override --- */

.ls-checkout.ls-checkout-embed div {
    max-width: 830px;
}
.product-media-item {
    background-size: cover;
    height: 300px !important;
    max-height: 300px !important;
    padding: 0;
}

@media (min-width: 768px) {

    .ls-checkout.ls-checkout-embed div {
        max-width: 830px;
    }
    .product-media-item {
        background-size: cover;
        height: 300px !important;
        max-height: 300px !important;
        padding: 0;
    }

}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999999999 !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b0a08;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Arka plan görseli (bulanık) */
#page-loader .loader-bg {
  position: absolute;
  inset: 0;
  background: url("assets/tarkov_helper_loading.png") center/cover no-repeat;
  filter: blur(12px) brightness(0.5);
  transform: scale(1.05);
  z-index: 0;
}

/* İçerik */
.loader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* Başlık yazısı */
.loader-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #e6cc7b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadePulse 3s ease-in-out infinite;
}

/* Dönen halka */
.loader-circle {
  width: 65px;
  height: 65px;
  border: 3px solid rgba(230, 204, 123, 0.2);
  border-top-color: #e6cc7b;
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

/* Animasyonlar */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadePulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-slideshow {
  position: relative;
  overflow: hidden;
}

.hero-slideshow img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInHero 1s ease forwards;
}

/* Hero-slideshow yüksekliğini sabitleyerek tüm giflerin aynı yükseklikte görünmesini
   sağlar. Genişlik otomatik olarak ayarlanır ve gifler ortalanır. Bu sayede farklı
   boyutlardaki giflerin yükseklikleri sayfayı aşağı yukarı kaydırmaz. */
.video-frame.hero-slideshow {
    height: 70vh;
    max-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-frame.hero-slideshow img {
    height: 100%;          /* yüksekliği sabitle */
    width: auto;           /* genişlik orantılı küçülsün */
    object-fit: contain;   /* taşmadan görüntülensin */
}

@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .video-frame.hero-slideshow {
        height: 60vh;      /* mobilde daha küçük alan kaplasın */
        max-height: 400px;
    }
}

/*
 * -----------------------------------------------------------------------------
 * Özel Uyarı (Alert) Bileşenleri
 * -----------------------------------------------------------------------------
 * Aşağıdaki sınıflar, sitedeki karanlık tasarım ile uyumlu uyarı kutuları
 * oluşturmak için eklenmiştir. Index.php içerisinde tanımlı showAlert() fonksiyonu
 * bu stilleri kullanır. Gereksiz alert pop-up'ları kaldırılmış ve bu bileşenler
 * ile değiştirilmiştir.
 */

/* Tüm uyarılar için ortak temel yapı */
.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  font-size: 1rem;
  background: rgba(20, 18, 15, 0.8);
  backdrop-filter: blur(6px);
  color: var(--text);
  display: block;
}

/* Başarı uyarısı */
.alert-success {
  border-color: rgba(83, 123, 79, 0.4);
  background: rgba(83, 123, 79, 0.2);
  color: #b3e6af;
}

/* Hata veya tehlike uyarısı */
.alert-error,
.alert-danger {
  border-color: rgba(255, 107, 107, 0.4);
  background: rgba(255, 107, 107, 0.15);
  color: var(--accent);
}

/* Uyarı uyarısı */
.alert-warning {
  border-color: rgba(209, 165, 76, 0.4);
  background: rgba(209, 165, 76, 0.15);
  color: var(--primary);
}

/* Bilgilendirme uyarısı */
.alert-info {
  border-color: rgba(78, 205, 196, 0.4);
  background: rgba(78, 205, 196, 0.15);
  color: #4ecdd4;
}

/* Alert içindeki son paragrafın alt boşluğunu kaldır */
.alert p:last-child {
  margin-bottom: 0;
}

/* Abonelik iptal linki */
.cancel-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

.cancel-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(209, 165, 76, 0.3);
}

/* Hero GIF alanı için konumlandırma */
.video-frame.hero-slideshow {
  position: relative;
  overflow: hidden;
}

/* Bar kapsayıcısı */
.hero-progress-bar-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;            /* ince çizgi */
  background-color: rgba(255, 255, 255, 0.2);  /* arka plan */
}

/* İlerleme çubuğu */
.hero-progress-bar {
  width: 0;
  height: 100%;
  background-color: #f5a623; /* istediğin bir vurgu rengi */
}

iframe html, iframe html body , iframe html body div {
  height: 100%;
}

iframe[src*="lemonsqueezy.com"], iframe#lemon-checkout-iframe {
  opacity: 0!important;
}

.btn-discord-connect {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #5865F2; /* Discord blurple */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-discord-connect img {
    width: 22px;
    height: 22px;
    filter: invert(1);
}

.btn-discord-connect:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.5);
}

.modal-content select,
.modal-content textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.modal-content textarea::placeholder {
    color: var(--text-muted);
}

/* SELECT — Dark Theme Styling */
.modal-content select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text);
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease;
    outline: none;
}

/* Hover */
.modal-content select:hover {
    border-color: var(--primary);
}

/* Focus */
.modal-content select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(234, 180, 60, 0.4);
}

/* Dropdown açıldığında görünen seçeneklerin dark olması için */
.modal-content select option {
    background: #151515;
    color: #fff;
    padding: 10px;
}

.modal-content select {
    border: 1px solid rgba(209,165,76,0.25);
}

.modal-content select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(209,165,76,0.35);
}