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

:root {
  --color-gold: #daa520;
  --color-dark: #1a1a1a;
  --color-accent: #c9a961;
}

body {
  font-family: "Inter", sans-serif;
  background: #111827;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.gold-text { color: #eab308; }
.gold-bg { background: #eab308; }
.gold-border { border-color: #eab308; }
.gold-hover:hover {
  background: #ca8a04;
  color: #ffffff;
}

.Pro2play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
  transition: all 0.2s ease;
}

.Pro2play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.38);
}

.Pro2play-btn:active {
  transform: scale(0.97);
}

.Pro2play-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: #facc15;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border: 1px solid rgba(234, 179, 8, 0.7);
  border-radius: 9999px;
  background: transparent;
  transition: all 0.2s ease;
}

.Pro2play-btn-outline:hover {
  background: rgba(234, 179, 8, 0.1);
  color: #fde047;
}

.Pro2play-btn-outline:active {
  transform: scale(0.97);
}

.card-dark,
.card-dark-padded {
  padding: 1.5rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(31, 41, 55, 0.88), rgba(17, 24, 39, 0.88));
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease;
}

.card-dark:hover,
.card-dark-padded:hover {
  border-color: rgba(234, 179, 8, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.hero-gradient {
  background: linear-gradient(to right, #111827, #1f2937, #111827);
}

.coach-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.coach-card:hover {
  box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.2);
}

.coach-card-content {
  padding: 1.5rem;
}

.brand-font {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
}

.button-gold {
  padding: 0.75rem 1.5rem;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #eab308, #ca8a04);
  transition: all 0.2s ease;
}

.button-gold:hover {
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.5);
}

.ui-input,
.ui-select,
.ui-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #ffffff;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  background: rgba(31, 41, 55, 0.9);
  outline: none;
  transition: all 0.2s ease;
}

.ui-input::placeholder,
.ui-textarea::placeholder {
  color: #9ca3af;
}

.ui-input:focus,
.ui-select:focus,
.ui-textarea:focus {
  border-color: #eab308;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

.page-hero {
  background: linear-gradient(to right, #111827, #000000);
  border-bottom: 1px solid #374151;
}

.section-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.ui-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid transparent;
}

.ui-badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.4);
}

.ui-badge-warning {
  background: rgba(234, 179, 8, 0.15);
  color: #fde047;
  border-color: rgba(234, 179, 8, 0.4);
}

.ui-badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
}

.ui-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #e5e7eb;
  border: 1px solid #374151;
  border-radius: 9999px;
  background: #1f2937;
}

.ui-alert {
  padding: 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
}

.ui-alert-success {
  background: rgba(20, 83, 45, 0.7);
  border-color: #15803d;
  color: #bbf7d0;
}

.ui-alert-error {
  background: rgba(127, 29, 29, 0.7);
  border-color: #b91c1c;
  color: #fecaca;
}

.ui-divider {
  border-top: 1px solid #374151;
}

.ui-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.ui-table thead tr {
  border-bottom: 1px solid #374151;
}

.ui-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  font-weight: 600;
}

.ui-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.7);
  color: #e5e7eb;
}

.ui-table tbody tr:hover {
  background: rgba(31, 41, 55, 0.4);
}

main input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]),
main select,
main textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #ffffff;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  background: rgba(31, 41, 55, 0.9);
  outline: none;
  transition: all 0.2s ease;
}

main input::placeholder,
main textarea::placeholder {
  color: #9ca3af;
}

main input:focus,
main select:focus,
main textarea:focus {
  border-color: #eab308;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

main table {
  border-radius: 1rem;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #daa520;
}

.star {
  font-size: 1rem;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, #374151, #111827);
}

* {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

button,
a[role="button"] {
  transition: all 0.2s ease;
}

button:focus,
a:focus,
input:focus {
  outline: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #daa520;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffd966;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .Pro2play-btn,
  .Pro2play-btn-outline {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .card-dark,
  .card-dark-padded {
    padding: 1rem;
  }
}

