/* =============================================
   RAPKINGS 2026 — style.css UNIQUE
   ============================================= */

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

/* --- VARIABLES --- */
:root {
  --gold:       #C9A84C;
  --gold-light: #F0D080;
  --gold-dark:  #8B6914;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1A1A1A;
  --text:       #E8E8E8;
}

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

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Rajdhani', Georgia, sans-serif;
  overflow-x: hidden;
}

/* =============================================
   ACCESSIBILITÉ
   ============================================= */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

a:focus, button:focus {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px;
}

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}
.logo span { color: white; }

nav ul { list-style: none; display: flex; gap: 40px; }
nav ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.burger {
  display: none;
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* =============================================
   HERO (index)
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 80px,
    rgba(201,168,76,0.025) 80px, rgba(201,168,76,0.025) 81px
  );
  pointer-events: none;
}

.hero-badge {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 6px 20px;
  margin-bottom: 30px;
  display: inline-block;
  animation: fadeDown 0.8s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.9;
  color: white;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero h1 .gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,0.5);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 300;
  color: rgba(232,232,232,0.7);
  animation: fadeUp 0.9s ease 0.4s both;
}

.hero-desc {
  max-width: 620px;
  margin: 30px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,232,232,0.65);
  font-weight: 300;
  animation: fadeUp 0.9s ease 0.6s both;
}

.scroll-hint {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201,168,76,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeUp 0.9s ease 0.9s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =============================================
   VIBE SECTION (index)
   ============================================= */
.vibe-section {
  padding: 120px 60px;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.vibe-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.vibe-text { flex: 1; min-width: 280px; }

.label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.vibe-text h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: white;
  line-height: 1;
  margin-bottom: 16px;
}
.vibe-text h2 .gold { color: var(--gold); }

.title-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

.vibe-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(232,232,232,0.6);
  font-weight: 300;
  margin-bottom: 30px;
}

.vibe-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 5px 14px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
.tag:hover { background: var(--gold); color: var(--black); }

/* Photo ronde avec cadre doré */
.vibe-img-wrap {
  flex: 0 0 380px;
  max-width: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vibe-img-border {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 35px rgba(201,168,76,0.5), inset 0 0 20px rgba(201,168,76,0.1);
  pointer-events: none;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.vibe-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: grayscale(30%) contrast(1.1);
  position: relative;
  z-index: 1;
  transition: filter 0.5s;
}
.vibe-img:hover { filter: grayscale(0%) contrast(1.15); }

/* =============================================
   RAPPERS SECTION (index) — TOP 3
   ============================================= */
.rappers-section {
  padding: 120px 60px;
  background: var(--dark);
  position: relative;
}
.rappers-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: white; line-height: 1;
}
.section-title h2 .gold { color: var(--gold); }
.section-title .title-line {
  width: 60px; margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rappers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.rapper-card-wrap { display: flex; flex-direction: column; }

.rapper-card {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(201,168,76,0.1);
  aspect-ratio: 3/4;
  transition: border-color 0.4s, transform 0.4s;
}
.rapper-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-8px);
}

.card-number {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.08);
  line-height: 1; z-index: 2;
  transition: color 0.4s;
}
.rapper-card:hover .card-number { color: rgba(201,168,76,0.2); }

.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
  transition: filter 0.5s, transform 0.6s;
}
.rapper-card:hover .card-img {
  filter: grayscale(10%) contrast(1.15) brightness(1);
  transform: scale(1.04);
}

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.2) 100%);
  z-index: 1;
}

.card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 3;
}
.card-rank {
  font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px; display: block;
}
.card-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white; line-height: 1;
  display: block; margin-bottom: 8px;
}
.card-origin {
  font-size: 0.78rem; color: rgba(232,232,232,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px; display: block;
}
.card-desc {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(232,232,232,0.55); font-weight: 300;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.rapper-card:hover .card-desc { max-height: 110px; opacity: 1; }

/* Spotify index */
.spotify-player {
  border: 1px solid rgba(201,168,76,0.2);
  border-top: none;
  display: block;
}

.catalogue-btn-wrap { text-align: center; margin-top: 60px; }
.hero-btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.2rem; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s;
}
.hero-btn:hover { background: transparent; color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 60px; text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: var(--black);
}
.footer-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.5rem; color: var(--gold);
  letter-spacing: 0.15em; opacity: 0.35;
}
footer p {
  margin-top: 12px; font-size: 0.75rem;
  color: rgba(232,232,232,0.2); letter-spacing: 0.2em;
}

/* =============================================
   LISTING PAGE
   ============================================= */
.listing-section {
  padding: 130px 60px 100px;
  min-height: 100vh;
  background: var(--dark);
}

.listing-hero { text-align: center; margin-bottom: 60px; }
.listing-hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: white; line-height: 1;
}
.listing-hero h1 .gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.listing-intro {
  font-size: 1rem;
  color: rgba(232,232,232,0.45);
  font-weight: 300; margin-top: 10px;
}

/* Grille listing */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.listing-card-wrap { display: flex; flex-direction: column; }

.listing-card {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  height: 320px;
  transition: border-color 0.4s, transform 0.4s;
}
.listing-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
}

.listing-card-number {
  position: absolute; top: 10px; left: 14px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1; z-index: 2;
  transition: color 0.4s;
}
.listing-card:hover .listing-card-number { color: rgba(201,168,76,0.25); }

.listing-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(50%) contrast(1.1);
  transition: filter 0.5s, transform 0.6s;
}
.listing-card:hover .listing-card-img {
  filter: grayscale(0%) contrast(1.15);
  transform: scale(1.04);
}

.listing-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.8) 50%, transparent 100%);
  z-index: 1;
}

.listing-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px; z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
}

.listing-card-style {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 3px 8px;
  display: inline-block;
  width: fit-content;
  background: rgba(0,0,0,0.4);
}

.listing-card-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.listing-card-info {
  font-size: 0.85rem;
  color: rgba(232,232,232,0.95);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

.listing-card-naissance {
  font-size: 0.78rem;
  color: rgba(232,232,232,0.75);
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

/* Spotify lazy load */
.spotify-lazy {
  background: #0A0A0A;
  border: 1px solid rgba(201,168,76,0.2);
  border-top: none;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.spotify-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Rajdhani', Georgia, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
}
.spotify-btn:hover { background: var(--gold); color: var(--black); }

/* =============================================
   TABLEAU ALBUMS
   ============================================= */
.table-wrap {
  max-width: 1200px; margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(201,168,76,0.15);
}

.data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.data-table thead tr {
  background: rgba(201,168,76,0.08);
  border-bottom: 2px solid var(--gold-dark);
}
.data-table th {
  text-align: left; padding: 16px 20px;
  font-size: 0.8rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; white-space: nowrap;
}
.data-table th:first-child,
.data-table td:first-child { text-align: center; width: 50px; }
.data-table td {
  padding: 14px 20px;
  color: rgba(232,232,232,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-weight: 300; vertical-align: middle;
}
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.data-table tbody tr:hover { background: rgba(201,168,76,0.06); }
.rap-name { font-weight: 700 !important; color: var(--text) !important; }

/* =============================================
   FORMULAIRE RECHERCHE
   ============================================= */
.form-section {
  padding: 140px 60px 100px;
  min-height: 100vh;
  background: var(--dark);
}
.form-section h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: white; text-align: center;
  margin-bottom: 50px;
}
.form-section h1 .gold { color: var(--gold); }

.search-form {
  max-width: 700px; margin: 0 auto;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 50px;
}

.form-group { margin-bottom: 30px; }
.form-group label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; font-weight: 700;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Rajdhani', Georgia, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark2); }

.submit-btn {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--black);
  border: 2px solid var(--gold);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.3rem; letter-spacing: 0.25em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.submit-btn:hover { background: transparent; color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .rappers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  nav { padding: 18px 24px; }
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px; gap: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  nav ul.open { display: flex; }
  .burger { display: block; }

  .hero { padding: 100px 24px 60px; }
  .vibe-section { padding: 80px 24px; }
  .vibe-img-wrap { flex: 0 0 100%; max-width: 100%; }
  .rappers-section { padding: 80px 24px; }
  .rappers-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .listing-section { padding: 100px 16px 60px; }
  .listing-grid { grid-template-columns: 1fr; }
  .listing-card { height: 260px; }
  .form-section { padding: 100px 20px 60px; }
  .search-form { padding: 30px 20px; }
  footer { padding: 40px 24px; }

  .data-table thead { display: none; }
  .data-table tbody tr {
    display: block; margin-bottom: 16px;
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--dark2); padding: 14px 16px;
  }
  .data-table td {
    display: flex; justify-content: space-between;
    padding: 6px 0; border: none; font-size: 0.88rem;
  }
  .data-table td::before {
    content: attr(data-label);
    color: var(--gold); font-size: 0.62rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 700; margin-right: 10px; flex-shrink: 0;
  }
}

/* =============================================
   ADMIN
   ============================================= */
.admin-section {
  padding: 40px 60px;
  min-height: 100vh;
  background: var(--dark);
}

.admin-section h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 10px;
}

.admin-section h1 .gold { color: var(--gold); }

.admin-section p {
  color: rgba(232,232,232,0.45);
  margin-bottom: 30px;
}

.admin-section hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin: 20px 0;
}

/* Liens admin */
.admin-section a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.admin-section a:hover { color: var(--gold-light); }

/* Bouton ajouter */
.admin-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s !important;
  margin-bottom: 20px;
  cursor: pointer;
}
.admin-btn:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

/* Tableau admin */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.9rem;
}

.admin-table thead tr {
  background: rgba(201,168,76,0.08);
  border-bottom: 2px solid var(--gold-dark);
}

.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.admin-table td {
  padding: 12px 16px;
  color: rgba(232,232,232,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.admin-table tbody tr:hover {
  background: rgba(201,168,76,0.06);
}

.admin-table img {
  width: 50px;
  height: 60px;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.3);
}

/* Liens modifier/supprimer */
.btn-modifier {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dark);
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 6px;
}

.btn-supprimer {
  color: #ff4444 !important;
  border: 1px solid #ff4444;
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Formulaire admin */
.admin-form {
  max-width: 700px;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px;
  margin-top: 20px;
}

.admin-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.admin-form input,
.admin-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text);
  padding: 12px 16px;
  font-family: 'Rajdhani', Georgia, sans-serif;
  font-size: 1rem;
  outline: none;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}

.admin-form input:focus,
.admin-form select:focus { border-color: var(--gold); }

.admin-form select option { background: var(--dark2); }

.admin-form input[type="submit"] {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  padding: 14px;
}

.admin-form input[type="submit"]:hover {
  background: transparent;
  color: var(--gold);
}

@media (max-width: 576px) {
  .admin-section { padding: 20px 16px; }
  .admin-form { padding: 24px 16px; }
  .admin-table { font-size: 0.78rem; }
}