/* ===== PRODUCTION OPTIMIZED PUBLIC.CSS ===== */
/* Consolidated styles for non-authenticated pages */
/* Removed CDN dependencies - Use local assets */

/* ===== CSS Custom Properties ===== */
:root {
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
  
  /* Colors - synced with Tailwind config */
  --brand-indigo: #4338ca;
  --brand-gold: #d4af37;
  --soft-dark: #0f102f;
  --accent-blue: #3b82f6;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;     /* Add this line - Rose 500 */
  --accent-pink: #ec4899;     /* Add this line - Pink 500 */
}

/* ===== Base Styles ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: #334155;
  min-height: 100vh;
}

/* ===== Custom Scrollbar ===== */
@media (min-width: 768px) {
  .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }
  
  /* Firefox */
  .custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
  }
}

/* ===== Modern Gradient Backgrounds ===== */

/* Add rose-pink gradients for warning/danger */
.rose-pink-gradient {
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-pink) 100%);
}

/* Rose glass morphism for warning cards */
.rose-glass {
  background: rgba(244, 63, 94, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.gradient-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.hero-gradient {
  background: linear-gradient(135deg, #0f102f 0%, #1a1b4b 50%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(67, 56, 202, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-gradient > * {
  position: relative;
  z-index: 1;
}

.accent-gradient {
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
}

.gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
}

/* ===== Glass Morphism Effect ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Focus Styles ===== */
.modern-focus:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d4af37, 0 0 0 3px rgba(212, 175, 55, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile-friendly focus */
@media (hover: hover) and (pointer: fine) {
  :focus-visible {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
    border-radius: 0.25rem;
  }
}

/* ===== Card Hover Effects ===== */
.hover-lift {
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
}

.feature-card {
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
}

/* ===== Step Indicator ===== */
.step-indicator {
  position: relative;
}

.step-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4338ca, #cbd5e1);
  transform: translateY(-50%);
}

.step-indicator:last-child::after {
  display: none;
}

/* ===== Shooting Target Decoration ===== */
.target-ring {
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.shot-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
}

/* ===== OTP Input Styles ===== */
.otp-input {
  width: 2.75rem;
  height: 2.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  border: 2px solid #cbd5e1;
  border-radius: 0.5rem;
  background: white;
  transition: all 0.2s ease;
}

@media (min-width: 640px) {
  .otp-input {
    width: 3rem;
    height: 3rem;
    font-size: 1.375rem;
    border-radius: 0.625rem;
  }
}

@media (min-width: 768px) {
  .otp-input {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }
}

@media (max-width: 360px) {
  .otp-input {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

.otp-input:focus {
  border-color: #4338ca;
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
  outline: none;
  transform: scale(1.05);
}

.otp-input.filled {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}

.otp-input.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
  animation: shake 0.5s ease-in-out;
}

/* ===== Password Strength ===== */
.password-requirement {
  transition: color 0.3s ease;
}

.password-requirement.met {
  color: #10b981;
}

/* ===== GDPR Notice ===== */
.gdpr-notice {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* ===== Accessibility ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus,
.sr-only:active {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ===== Animation Keyframes ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes checkmark {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@keyframes pulse-gold {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes timerPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ===== Animation Utility Classes ===== */
.animate-float-slow {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.animate-pulse-subtle {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
  opacity: 1;
}

.animate-success-pulse {
  animation: successPulse 2s ease-in-out infinite;
}

.animate-pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
  will-change: transform;
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
  will-change: opacity;
}

.success-check {
  animation: checkmark 0.5s ease-in-out forwards;
}

.timer-pulse {
  animation: timerPulse 1s ease-in-out infinite;
}

/* Floating animation delays */
.animation-delay-1 {
  animation-delay: 0.5s;
}

.animation-delay-2 {
  animation-delay: 1s;
}

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

/* ===== Spinner ===== */
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin-slow 0.75s linear infinite;
  will-change: transform;
}

.spinner-lg {
  width: 2rem;
  height: 2rem;
  border-width: 3px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 50;
  width: calc(100vw - 2rem);
  max-width: 300px;
  overflow: hidden;
}

.mobile-menu.active {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Hide mobile bottom nav on desktop */
@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ===== Visual Effects ===== */
.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 0.25rem;
}

/* Dark mode skeleton */
@media (prefers-color-scheme: dark) {
  .skeleton {
    background: linear-gradient(
      90deg,
      #2d3748 25%,
      #4a5568 50%,
      #2d3748 75%
    );
  }
}

.workflow-step {
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .workflow-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
}

/* ===== Custom Utilities ===== */
.gradient-text {
  background: linear-gradient(135deg, #4338ca, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-stroke {
  -webkit-text-stroke: 1px currentColor;
  text-stroke: 1px currentColor;
  color: transparent;
}

.gradient-border {
  border: 2px solid transparent;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #4338ca, #d4af37) border-box;
}

/* ===== Login Page Local Utilities ===== */
@keyframes login-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes login-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@keyframes login-loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

.login-page .fade-in {
  animation: login-fade-in 0.3s ease-out forwards;
}

.login-page .animate-shake {
  animation: login-shake 0.5s ease-in-out;
}

.login-page .animate-loading {
  animation: login-loading 1.5s ease-in-out infinite;
}

.login-page input,
.login-page button,
.login-page a,
.login-page label {
  transition: all 0.2s ease;
}

.login-page input:focus,
.login-page button:focus,
.login-page select:focus {
  outline: none;
}

.login-page #togglePassword {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.login-page ::-webkit-scrollbar {
  width: 8px;
}

.login-page ::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.login-page ::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.login-page ::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.login-page ::selection {
  background-color: rgba(79, 70, 229, 0.3);
  color: #1e293b;
}

/* ===== Register Role Select Page Local Utilities ===== */
.register-role-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.register-role-page {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.register-role-page .container {
  max-width: 28rem;
  width: 100%;
}

.register-role-page .card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  padding: 1.5rem;
}

.register-role-page .progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.register-role-page .progress-step {
  flex: 1;
  text-align: center;
}

.register-role-page .progress-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.register-role-page .progress-circle.active {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.register-role-page .progress-circle.completed {
  background: #10b981;
  color: white;
}

.register-role-page .progress-circle.incomplete {
  background: white;
  border: 2px solid #d1d5db;
  color: #9ca3af;
}

.register-role-page .progress-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.register-role-page .progress-label.active {
  color: #4f46e5;
  font-weight: 500;
}

.register-role-page .step-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #4f46e5;
  margin-bottom: 0.5rem;
}

.register-role-page h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.register-role-page .subtitle {
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.register-role-page .alert {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.register-role-page .alert svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.register-role-page .alert.error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.register-role-page .role-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.register-role-page .role-select-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.register-role-page .role-select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  color: #0f172a;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364758b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem 1.25rem;
}

.register-role-page .role-select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.register-role-page .role-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.register-role-page .role-card:hover {
  border-color: #4f46e5;
}

.register-role-page .role-card.selected {
  border-color: #4f46e5;
  background: #eef2ff;
}

.register-role-page .role-card input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: #4f46e5;
}

.register-role-page .role-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}

.register-role-page .btn {
  width: 100%;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.register-role-page .btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.register-role-page .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.register-role-page .login-cta {
  text-align: center;
  margin-top: 1rem;
}

.register-role-page .login-cta-copy {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.register-role-page .login-cta-button {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.register-role-page .login-cta-button:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  background: #f8fafc;
}

@media (min-width: 640px) {
  .register-role-page .container {
    max-width: 32rem;
  }

  .register-role-page h1 {
    font-size: 1.875rem;
  }

  .register-role-page .role-card {
    padding: 1rem;
  }
}

/* ===== Register Page Local Utilities ===== */
.register-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.register-page {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.register-page .container {
  max-width: 42rem;
  width: 100%;
}

.register-page .card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  padding: 1.5rem;
}

.register-page .progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.register-page .progress-step {
  flex: 1;
  text-align: center;
}

.register-page .progress-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.register-page .progress-circle.completed {
  background: #10b981;
  color: white;
}

.register-page .progress-circle.active {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.register-page .progress-circle.incomplete {
  background: white;
  border: 2px solid #d1d5db;
  color: #9ca3af;
}

.register-page .progress-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.register-page .progress-label.completed {
  color: #10b981;
  font-weight: 500;
}

.register-page .progress-label.active {
  color: #4f46e5;
  font-weight: 500;
}

.register-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .register-page h2 {
    font-size: 1.875rem;
  }
}

.register-page .subtitle {
  color: #475569;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-page .role-badge {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.register-page .role-badge span {
  font-weight: 600;
  color: #4f46e5;
}

.register-page .form {
  max-width: 32rem;
  margin: 0 auto;
}

.register-page .form-group {
  margin-bottom: 1.5rem;
}

.register-page label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.register-page .required {
  color: #ef4444;
}

.register-page .input-field {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.register-page .input-field:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.register-page .input-field.error {
  border-color: #ef4444;
}

.register-page .input-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.register-page .input-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: none;
}

.register-page .input-error.visible {
  display: block;
}

.register-page .form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #991b1b;
  font-size: 0.875rem;
}

.register-page .form-errors ul {
  margin-left: 1rem;
}

.register-page .password-wrapper {
  position: relative;
}

.register-page .password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
}

.register-page .password-toggle:hover {
  color: #4f46e5;
}

.register-page .strength-meter {
  display: flex;
  gap: 0.25rem;
  height: 0.25rem;
  margin-top: 0.5rem;
}

.register-page .strength-bar {
  flex: 1;
  height: 100%;
  border-radius: 9999px;
  background: #e5e7eb;
  transition: all 0.3s;
}

.register-page .strength-bar.strength-1 {
  background: #ef4444;
}

.register-page .strength-bar.strength-2 {
  background: #f97316;
}

.register-page .strength-bar.strength-3 {
  background: #eab308;
}

.register-page .strength-bar.strength-4 {
  background: #10b981;
}

.register-page .requirements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
}

.register-page .requirement {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.register-page .requirement.met {
  color: #10b981;
}

.register-page .checkbox-group {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  margin-top: 1rem;
}

.register-page .checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.register-page .checkbox-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: #4f46e5;
}

.register-page .checkbox-label {
  font-size: 0.875rem;
  color: #374151;
}

.register-page .checkbox-label a {
  color: #4f46e5;
  text-decoration: none;
}

.register-page .checkbox-label a:hover {
  text-decoration: underline;
}

.register-page .button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.register-page .btn {
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.register-page .btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
}

.register-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.register-page .btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.register-page .btn-secondary:hover {
  background: #f9fafb;
}

.register-page .login-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.register-page .login-link a {
  color: #4f46e5;
  font-weight: 500;
  text-decoration: none;
}

.register-page .login-link a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .register-page .card {
    padding: 1rem;
  }

  .register-page .button-group {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }

  .register-page .btn {
    width: 100%;
  }
}

/* ===== Verify OTP Page Local Utilities ===== */
.verify-otp-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.verify-otp-page {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.verify-otp-page .container {
  max-width: 28rem;
  width: 100%;
}

.verify-otp-page .card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .verify-otp-page .card {
    padding: 2rem;
  }
}

.verify-otp-page .progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.verify-otp-page .progress-step {
  flex: 1;
  text-align: center;
}

.verify-otp-page .progress-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.verify-otp-page .progress-circle.completed {
  background: #10b981;
  color: white;
}

.verify-otp-page .progress-circle.active {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.verify-otp-page .progress-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.verify-otp-page .progress-label.completed {
  color: #10b981;
  font-weight: 500;
}

.verify-otp-page .progress-label.active {
  color: #4f46e5;
  font-weight: 500;
}

.verify-otp-page .icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.verify-otp-page .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.verify-otp-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .verify-otp-page h2 {
    font-size: 1.875rem;
  }
}

.verify-otp-page .email-display {
  text-align: center;
  color: #475569;
  margin-bottom: 2rem;
}

.verify-otp-page .email-display strong {
  color: #4f46e5;
  font-weight: 600;
}

.verify-otp-page .otp-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.verify-otp-page .otp-digit {
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.verify-otp-page .otp-digit:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.verify-otp-page .otp-digit.filled {
  border-color: #10b981;
  background: #f0fdf4;
}

@media (min-width: 640px) {
  .verify-otp-page .otp-digit {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}

.verify-otp-page .timer {
  text-align: center;
  margin-bottom: 1rem;
}

.verify-otp-page .timer-text {
  font-size: 0.875rem;
  color: #4b5563;
}

.verify-otp-page .timer-value {
  font-weight: 700;
  color: #4f46e5;
}

.verify-otp-page .timer-value.expiring {
  animation: verify-otp-pulse 1s infinite;
  color: #ef4444;
}

@keyframes verify-otp-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.verify-otp-page .resend {
  text-align: center;
  margin-bottom: 1.5rem;
}

.verify-otp-page .resend-btn {
  background: none;
  border: none;
  color: #4f46e5;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.verify-otp-page .resend-btn:hover:not(:disabled) {
  text-decoration: underline;
}

.verify-otp-page .resend-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.verify-otp-page .resend-count {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.verify-otp-page .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.verify-otp-page .btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.verify-otp-page .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.verify-otp-page .help-text {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.verify-otp-page .help-text button {
  background: none;
  border: none;
  color: #4f46e5;
  font-size: 0.75rem;
  cursor: pointer;
}

.verify-otp-page .help-text button:hover {
  text-decoration: underline;
}

.verify-otp-page .error-message {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #991b1b;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verify-otp-page .error-message svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ===== Register Success Page Local Utilities ===== */
.register-success-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.register-success-page {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.register-success-page .container {
  max-width: 28rem;
  width: 100%;
}

.register-success-page .card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  padding: 2rem;
  text-align: center;
}

.register-success-page .success-icon {
  width: 5rem;
  height: 5rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: register-success-bounce 1s ease-in-out;
}

.register-success-page .success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #10b981;
}

@keyframes register-success-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.register-success-page h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .register-success-page h1 {
    font-size: 2.25rem;
  }
}

.register-success-page .message {
  color: #475569;
  margin-bottom: 2rem;
}

.register-success-page .next-steps {
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.register-success-page .next-steps h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.register-success-page .steps-list {
  list-style: none;
}

.register-success-page .step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.register-success-page .step-number {
  width: 1.5rem;
  height: 1.5rem;
  background: #4f46e5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.register-success-page .step-text {
  color: #374151;
  font-size: 0.9375rem;
}

.register-success-page .btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.register-success-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.register-success-page .confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.register-success-page .confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #4f46e5;
  opacity: 0.6;
  animation: register-success-fall 3s linear infinite;
}

@keyframes register-success-fall {
  0% {
    transform: translateY(-100%) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
  }
}

@media (max-width: 640px) {
  .register-success-page .card {
    padding: 1.5rem;
  }

  .register-success-page .next-steps {
    padding: 1.25rem;
  }
}

.athlete-mask {
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.clip-hexagon {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.clip-diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ===== Selection Color ===== */
::selection {
  background-color: rgba(212, 175, 55, 0.3);
  color: #000;
}

::-moz-selection {
  background-color: rgba(212, 175, 55, 0.3);
  color: #000;
}

/* ===== Performance Optimizations ===== */
.content-visibility-auto {
  content-visibility: auto;
  contain-intrinsic-size: 1px 5000px;
}

.will-change-transform {
  will-change: transform;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High DPI optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .target-ring,
  .shot-dot {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  /* Improve mobile touch targets */
  button,
  a,
  input,
  select,
  textarea {
    min-height: 44px;
    min-width: 44px;
  }

  /* Keep shared header navigation sizing consistent with app pages. */
  header.sticky.top-0.z-50 a,
  header.sticky.top-0.z-50 button,
  header.sticky.top-0.z-50 select {
    min-height: 0;
    min-width: 0;
  }
  
  /* Reduce target rings on mobile */
  .target-ring {
    opacity: 0.1;
  }
  
  /* Hide shot dots on mobile */
  .shot-dot {
    display: none;
  }
}

/* Responsive gap for OTP */
@media (max-width: 360px) {
  .flex.justify-center.gap-3 {
    gap: 0.375rem;
  }
}

/* ===== High Contrast Mode Support ===== */
@media (prefers-contrast: high) {
  :focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
  }
  
  .target-ring {
    border-color: #000;
  }
  
  .shot-dot {
    background: #000;
  }
}

/* ===== Button States ===== */
button:disabled,
a[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== Pricing Toggle ===== */
.pricing-toggle button[aria-selected="true"] {
  background-color: #4338ca;
  color: white;
}

/* ===== Progress Bar ===== */
.progress-bar {
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* ===== FAQ Details ===== */
details[open] summary {
  color: #4338ca;
}

/* ===== Scroll Snap (Optional) ===== */
@media (min-width: 1024px) {
  .scroll-snap-x {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }
  
  .scroll-snap-item {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ===== Focus Trap ===== */
.focus-trap:focus {
  outline: 3px solid #d4af37;
  outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {
  .no-print,
  .mobile-bottom-nav,
  .target-ring,
  .shot-dot {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
  }
  
  .hero-gradient {
    background: #fff !important;
    color: #000 !important;
  }
  
  .hero-gradient::before {
    display: none;
  }
  
  @page {
    margin: 0.5in;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
  
  ul, ol, dl {
    page-break-before: avoid;
  }
}

/* ===== Fallback for Older Browsers ===== */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero-gradient::before,
  .glass,
  .gradient-text,
  .athlete-mask {
    display: none;
  }
}

/* ===== Loading State for Images ===== */
img[loading="lazy"] {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

/* ===== Custom Scrollbar for Dark Areas ===== */
.scrollbar-dark::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scrollbar-dark::-webkit-scrollbar-track {
  background: #0f102f;
}

.scrollbar-dark::-webkit-scrollbar-thumb {
  background: #4338ca;
  border-radius: 5px;
  border: 2px solid #0f102f;
}

.scrollbar-dark::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

.scrollbar-dark {
  scrollbar-width: thin;
  scrollbar-color: #4338ca #0f102f;
}

/* ===== Star Rating ===== */
.star-rating svg {
  fill: currentColor;
}

/* ===== Organizations Profile Setup Page ===== */
    .club-profile-page * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .club-profile-page {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        min-height: 100vh;
        padding: 1rem;
    }

    .club-profile-page .progress-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 28rem;
        margin: 0 auto 2.5rem;
    }

    .club-profile-page .step {
        flex: 1;
        text-align: center;
        position: relative;
    }

.club-profile-page .step-indicator {
    width: 2.5rem;
        height: 2.5rem;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        font-weight: 600;
        font-size: 0.875rem;
        background: white;
        border: 2px solid #e5e7eb;
        color: #9ca3af;
    transition: all 0.3s;
}

.club-profile-page .step-indicator::after {
    content: none;
}

.club-profile-page .step.active .step-indicator {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-color: #4f46e5;
        color: white;
        box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    }

.club-profile-page .step.completed .step-indicator {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.club-profile-page .step.completed .step-indicator::before {
    content: "✓";
    font-size: 1.25rem;
    line-height: 1;
}

.club-profile-page .step-label {
        font-size: 0.75rem;
        font-weight: 500;
        color: #6b7280;
    }

    .club-profile-page .step.active .step-label {
        color: #4f46e5;
    }

    .club-profile-page .step-line {
        position: absolute;
        top: 1.25rem;
        left: 60%;
        width: 80%;
        height: 2px;
        background: #e5e7eb;
        z-index: 0;
    }

    .club-profile-page .step:last-child .step-line {
        display: none;
    }

    .club-profile-page .profile-container {
        max-width: 48rem;
        margin: 0 auto;
    }

    .club-profile-page .profile-card {
        background: white;
        border-radius: 1.5rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
        overflow: hidden;
        animation: slideIn 0.4s ease-out forwards;
    }

    .club-profile-page .profile-header {
        padding: 2rem;
        border-bottom: 1px solid #f1f5f9;
        text-align: center;
        background: linear-gradient(135deg, #f8fafc, #ffffff);
    }

    .club-profile-page .profile-body {
        padding: 2rem;
    }

    @media (max-width: 640px) {
        .club-profile-page .profile-header,
        .club-profile-page .profile-body {
            padding: 1.5rem;
        }
    }

    .club-profile-page .club-icon {
        width: 4rem;
        height: 4rem;
        background: linear-gradient(135deg, #4f46e5, #6366f1);
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    }

    .club-profile-page .club-icon svg {
        width: 2rem;
        height: 2rem;
        color: white;
    }

    .club-profile-page h1 {
        font-size: 1.875rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
        .club-profile-page h1 {
            font-size: 2.25rem;
        }
    }

    .club-profile-page .subtitle {
        color: #475569;
        font-size: 0.875rem;
        max-width: 32rem;
        margin: 0 auto;
    }

    .club-profile-page .step-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.375rem 0.75rem;
        border-radius: 9999px;
        background: #eef2ff;
        color: #4f46e5;
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .club-profile-page .step-badge span {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 9999px;
        background: #4f46e5;
        animation: pulse-subtle 2s infinite;
    }

    .club-profile-page .error-container {
        background: #fef2f2;
        border: 1px solid #fee2e2;
        border-radius: 1rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .club-profile-page .error-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #991b1b;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .club-profile-page .error-title svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .club-profile-page .error-list {
        list-style: none;
        padding-left: 1.75rem;
    }

    .club-profile-page .error-list li {
        color: #b91c1c;
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        list-style-type: disc;
    }

    .club-profile-page .form-section {
        background: #f9fafb;
        border-radius: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .club-profile-page .form-section:last-child {
        margin-bottom: 0;
    }

    .club-profile-page .section-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .club-profile-page .section-title svg {
        width: 1.25rem;
        height: 1.25rem;
        color: #4f46e5;
    }

    .club-profile-page .form-group {
        margin-bottom: 1.5rem;
    }

    .club-profile-page .form-group:last-child {
        margin-bottom: 0;
    }

    .club-profile-page .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    @media (max-width: 640px) {
        .club-profile-page .form-row {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    .club-profile-page .form-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.875rem;
        font-weight: 500;
        color: #374151;
        margin-bottom: 0.5rem;
    }

    .club-profile-page .required {
        color: #ef4444;
        font-size: 0.75rem;
        font-weight: normal;
    }

    .club-profile-page .form-input,
    .club-profile-page .form-select,
    .club-profile-page .form-textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 0.75rem;
        font-size: 1rem;
        transition: all 0.2s;
        background: white;
    }

    .club-profile-page .form-input:focus,
    .club-profile-page .form-select:focus,
    .club-profile-page .form-textarea:focus {
        outline: none;
        border-color: #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

    .club-profile-page .form-textarea {
        min-height: 6rem;
        resize: vertical;
    }

    .club-profile-page .input-hint {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        color: #6b7280;
    }

    .club-profile-page .input-error {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        color: #ef4444;
    }

    .club-profile-page .file-input-wrapper {
        position: relative;
    }

    .club-profile-page .file-input {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 2;
    }

    .club-profile-page .file-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        border: 2px dashed #e5e7eb;
        border-radius: 0.75rem;
        background: white;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        z-index: 1;
    }

    .club-profile-page .file-label:hover {
        border-color: #4f46e5;
        background: #f5f3ff;
    }

    .club-profile-page .file-label svg {
        width: 1.5rem;
        height: 1.5rem;
        color: #9ca3af;
    }

    .club-profile-page .file-label span {
        color: #374151;
        font-size: 0.875rem;
    }

    .club-profile-page .file-name {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        color: #10b981;
        display: none;
    }

    .club-profile-page .file-name.visible {
        display: block;
    }

    .club-profile-page .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    @media (min-width: 768px) {
        .club-profile-page .checkbox-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .club-profile-page .checkbox-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 0.5rem;
        transition: background 0.2s;
    }

    .club-profile-page .checkbox-item:hover {
        background: #f3f4f6;
    }

    .club-profile-page .checkbox-item input[type="checkbox"] {
        width: 1.125rem;
        height: 1.125rem;
        accent-color: #4f46e5;
    }

    .club-profile-page .checkbox-label {
        font-size: 0.875rem;
        color: #374151;
    }

    .club-profile-page .btn-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #4f46e5, #6366f1);
        color: white;
        font-weight: 600;
        border: none;
        border-radius: 0.75rem;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .club-profile-page .btn-primary:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
    }

    .club-profile-page .btn-primary:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .club-profile-page .btn-primary svg {
        width: 1.25rem;
        height: 1.25rem;
        transition: transform 0.3s;
    }

    .club-profile-page .btn-primary:hover svg {
        transform: translateX(4px);
    }

    .club-profile-page .save-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        font-size: 0.75rem;
        color: #6b7280;
    }

.club-profile-page .save-indicator svg {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.club-profile-page .footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.club-profile-page .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #fff;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.club-profile-page .btn-secondary:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background: #f8fafc;
}

    .club-profile-page .trust-indicators {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        font-size: 0.75rem;
        color: #6b7280;
    }

    .club-profile-page .trust-item {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .club-profile-page .trust-item svg {
        width: 1rem;
        height: 1rem;
        color: #10b981;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse-subtle {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    .club-profile-page .animate-spin {
        animation: spin 0.6s linear infinite;
    }
