/* V2 Shared Styles for Cafe Football */
:root {
  --fifa-blue: #304FFE;
  --fifa-blue-dark: #1a35d6;
  --fifa-blue-deep: #0D1F8C;
  --fifa-blue-light: #5B7FFF;
  --fifa-electric: #00D4FF;
  --fifa-cyan-soft: #B3EEFF;
  --gold: #FFB800;
  --gold-dark: #CC9200;
  --gold-light: #FFD95C;
  --victory-red: #E8002A;
  --emerald: #00A651;

  --bg-primary: #06060f;
  --bg-secondary: #0d0d1c;
  --bg-tertiary: #13131f;
  --bg-card: rgba(255,255,255,0.05);
  --bg-card2: rgba(255,255,255,0.03);
  --bg-nav: rgba(3,7,18,0.95);
  --surface-raised: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.20);
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --text-inverse: #06060f;
  --hero-bg: linear-gradient(135deg, #030712 0%, #06060f 40%, #0d0d1c 75%, #13131f 100%);
  --hero-overlay: rgba(3,7,18,0.80);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.50);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.60);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.70);
  --shadow-gold: 0 4px 20px rgba(255,184,0,0.25);
  --locked-overlay: rgba(6,6,15,0.93);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  transition: background .3s, color .3s;
  min-height: 100vh;
}

body {
  font-family: inherit;
  background: inherit;
  color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--fifa-blue); border-radius: 3px; }

/* Buttons */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.v2-btn-outline {
  background: transparent;
  color: var(--fifa-blue);
  border: 1.5px solid var(--fifa-blue);
}

.v2-btn-outline:hover {
  background: var(--fifa-blue);
  color: #fff;
}

.v2-btn-primary {
  background: var(--fifa-blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.v2-btn-primary:hover {
  background: var(--fifa-blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.v2-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #FF9A00 100%);
  color: #1a0900;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.v2-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,184,0,.5);
}

.v2-btn-danger {
  background: #E8002A;
  color: #fff;
}

.v2-btn-danger:hover {
  background: #c0001f;
}

.v2-btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.v2-btn-full {
  width: 100%;
  justify-content: center;
}

/* Toast */
#v2-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--fifa-blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  z-index: 9999;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

#v2-toast.show {
  transform: translateX(-50%) translateY(0);
}

#v2-toast.success {
  background: var(--emerald);
}

#v2-toast.gold {
  background: linear-gradient(135deg,var(--gold),#FF9A00);
  color: #1a0900;
}

/* Page wrapper for content after fixed header */
.v2-page-wrap {
  padding-top: 88px;
  min-height: 100vh;
}

/* Utility classes */
.v2-text-center { text-align: center; }
.v2-mt-4 { margin-top: 1rem; }
.v2-mb-4 { margin-bottom: 1rem; }
.v2-py-8 { padding-top: 2rem; padding-bottom: 2rem; }