/* ═══════════════════════════════════════════════
   E-FUTEBOL.NET — JOGAR (AUTH PAGE)
   Split layout: form left, carousel right
   Uses global CSS vars from landing.css
   ═══════════════════════════════════════════════ */

/* ── PAGE LAYOUT ── */

.jogar-page {
  display: flex;
  min-height: 100vh;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background: var(--bg-deep);
  color: var(--text-primary);
}

/* ── LEFT PANEL (FORM) ── */

.jogar-left {
  flex: 0 0 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--border);
  overflow-y: auto;
}

.jogar-left-inner {
  width: 100%;
  max-width: 440px;
  padding: 6rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  gap: 2.5rem;
}

/* Logo */
.jogar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  position: absolute;
  top: 2rem;
  left: 2.5rem;
}



/* Theme toggle */
.jogar-theme-toggle {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
}

/* Registration: taller form, needs scroll-friendly layout */
.jogar-left-register .jogar-left-inner {
  justify-content: flex-start;
  padding-top: 8rem;
}

.jogar-left-register .jogar-footer {
  position: static;
  margin-top: 0.5rem;
}

.jogar-email-display {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--green-primary);
  padding: 0.7rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  opacity: 0.8;
}

.jogar-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a8f80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── SEARCHABLE TEAM DROPDOWN ── */

.jogar-field {
  position: relative;
}

.jogar-dropdown-trigger {
  display: flex;
  align-items: center;
  text-align: left;
}

.jogar-dropdown-trigger:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1), inset 0 0 20px rgba(45, 106, 79, 0.03);
  outline: none;
}

.jogar-dropdown-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jogar-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 100;
  overflow: hidden;
}

.jogar-dropdown-menu.scorers-dropdown-open {
  display: block;
}

.jogar-dropdown-search {
  padding: 0.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 1;
}

.jogar-dropdown-search-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.jogar-dropdown-search-input::placeholder {
  color: var(--text-muted);
}

.jogar-dropdown-search-input:focus {
  border-color: var(--green-primary);
}

.jogar-dropdown-items {
  max-height: 240px;
  overflow-y: auto;
  padding: 0.25rem;
}

.jogar-dropdown-items::-webkit-scrollbar {
  width: 4px;
}

.jogar-dropdown-items::-webkit-scrollbar-track {
  background: transparent;
}

.jogar-dropdown-items::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.jogar-dropdown-item {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.1s ease;
}

.jogar-dropdown-item:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.jogar-dropdown-item-active {
  background: rgba(45, 106, 79, 0.08);
  color: var(--green-primary);
  font-weight: 600;
}

.jogar-errors {
  padding: 0.8rem 1rem;
  background: rgba(217, 4, 41, 0.08);
  border: 1px solid rgba(217, 4, 41, 0.2);
  color: var(--status-danger);
  font-size: 0.8rem;
  line-height: 1.5;
}

.jogar-errors p {
  margin: 0;
}

.jogar-errors p + p {
  margin-top: 0.3rem;
}

.jogar-username-feedback {
  font-size: 0.78rem;
  min-height: 1.2em;
  transition: color 0.2s ease;
}

.jogar-username-error {
  color: var(--status-danger);
}

.jogar-username-success {
  color: var(--green-primary);
}

.jogar-team-feedback {
  font-size: 0.78rem;
  min-height: 1.2em;
  transition: color 0.2s ease;
}

.jogar-team-found {
  color: var(--green-primary);
}

.jogar-required {
  color: var(--status-danger);
  font-weight: 700;
}

.jogar-welcome {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--green-primary);
  margin: 0;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(45, 106, 79, 0.2);
  background: rgba(45, 106, 79, 0.05);
  display: inline-block;
}

/* Form block */
.jogar-form-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jogar-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0;
}

.jogar-title-accent {
  color: var(--green-primary);
  display: block;
}

/* Jersey Preview */

.jogar-jersey-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}


.jogar-jersey-input-wrap {
  flex: 1;
  min-width: 0;
}

.jersey-preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.jersey-preview-svg {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.jersey-preview-team {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jogar-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Form */
.jogar-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jogar-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.jogar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.jogar-input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.jogar-input::placeholder {
  color: var(--text-muted);
}

.jogar-input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1), inset 0 0 20px rgba(45, 106, 79, 0.03);
}

.jogar-input-code {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.5em;
  text-align: center;
  padding: 1rem;
}

/* Phone input with country selector */
.jogar-phone-wrapper {
  display: flex;
  position: relative;
}

.jogar-phone-country {
  display: flex;
  align-items: center;
  padding: 0.9rem 0.7rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  gap: 0.3rem;
  transition: border-color 0.25s ease;
  user-select: none;
}

.jogar-phone-country:hover {
  background: var(--bg-card);
}

.jogar-phone-country-arrow {
  font-size: 0.5rem;
  color: var(--text-muted);
}

.jogar-phone-input {
  flex: 1;
  min-width: 0;
}

.jogar-phone-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.jogar-phone-list-open {
  display: block;
}

.jogar-phone-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.15s ease;
}

.jogar-phone-list a:hover {
  background: var(--bg-card);
}

.jogar-phone-list-ddi {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.jogar-phone-wrapper .jogar-input:focus ~ .jogar-phone-country,
.jogar-phone-wrapper:focus-within .jogar-phone-country {
  border-color: var(--green-primary);
}

.jogar-hint-link {
  color: var(--green-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.jogar-hint-link:hover {
  opacity: 0.8;
}

.jogar-submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--green-primary);
  color: var(--bg-deep);
  border: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.jogar-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.jogar-submit:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
}

.jogar-submit:hover::before {
  transform: translateX(100%);
}

.jogar-submit:active {
  transform: translateY(0);
}

.jogar-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.jogar-hint-inline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Support WhatsApp Card */

.jogar-support-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding: 0.65rem 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.jogar-support-card:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.04);
}

.jogar-support-icon {
  width: 20px;
  height: 20px;
  color: #25D366;
  flex-shrink: 0;
}

.jogar-support-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.jogar-support-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.jogar-support-card:hover .jogar-support-arrow {
  transform: translateX(2px);
  color: #25D366;
}

/* Footer */
.jogar-footer {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
}

.jogar-back {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jogar-back:hover {
  color: var(--green-primary);
}

/* ── RIGHT PANEL (CAROUSEL) ── */

.jogar-right {
  flex: 1;
  position: relative;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 3rem;
}

.jogar-page-register .jogar-right {
  justify-content: flex-start;
  padding-top: 8rem;
}

.jogar-carousel-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.jogar-carousel-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45, 106, 79, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 77, 30, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.jogar-carousel-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}

/* ── SLIDES ── */

.jogar-slide {
  display: none;
  animation: jogarSlideIn 0.5s ease forwards;
}

.jogar-slide-active {
  display: block;
}

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

.jogar-slide-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(45, 106, 79, 0.2);
  background: rgba(45, 106, 79, 0.05);
  margin-bottom: 1.2rem;
}

.jogar-slide-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 0 1.8rem 0;
}

.jogar-slide-accent {
  color: var(--green-primary);
}

.jogar-slide-content {
  margin-bottom: 1rem;
}

.jogar-slide-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 106, 79, 0.06);
}

/* ── Slide 1: Actions Demo ── */

.jogar-actions-demo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.jogar-action {
  flex: 1;
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.jogar-action-chutar {
  border-color: rgba(45, 106, 79, 0.2);
}

.jogar-action-secar {
  border-color: rgba(217, 4, 41, 0.2);
}

.jogar-action-icon {
  font-size: 1.5rem;
}

.jogar-action-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.jogar-action-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.jogar-action-timers {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.jogar-timer {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  background: rgba(0, 0, 0, 0.15);
}

.jogar-timer-socio {
  color: var(--accent);
  background: rgba(232, 98, 26, 0.08);
}

.jogar-actions-vs {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ── Slide 2: Structure ── */

.jogar-structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.jogar-structure-card {
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease;
}

.jogar-structure-card:hover {
  border-color: var(--green-primary);
}

.jogar-structure-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.jogar-structure-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 0.2rem 0;
}

.jogar-structure-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ── Slide 3: Divisions ── */

.jogar-divisions-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jogar-division-bar {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border: 1px solid;
  transition: transform 0.2s ease;
}

.jogar-division-bar:hover {
  transform: translateX(4px);
}

.jogar-div-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  min-width: 80px;
}

.jogar-div-detail {
  flex: 1;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.jogar-div-arrows {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.jogar-div-a {
  border-color: rgba(45, 106, 79, 0.3);
  background: rgba(45, 106, 79, 0.04);
}

.jogar-div-b {
  border-color: rgba(0, 180, 216, 0.25);
  background: rgba(0, 180, 216, 0.03);
}

.jogar-div-c {
  border-color: rgba(232, 98, 26, 0.2);
  background: rgba(232, 98, 26, 0.03);
}

.jogar-div-d {
  border-color: rgba(255, 140, 0, 0.2);
  background: rgba(255, 140, 0, 0.03);
}

.jogar-div-acesso {
  border-color: rgba(217, 4, 41, 0.15);
  background: rgba(217, 4, 41, 0.03);
}

/* ── Slide 4: Community ── */

.jogar-community-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.jogar-community-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.jogar-community-item:hover {
  border-color: var(--green-primary);
}

.jogar-community-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.jogar-community-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.jogar-community-pct {
  font-size: 0.72rem;
  color: var(--green-primary);
  opacity: 0.7;
}

/* ── CAROUSEL CONTROLS ── */

.jogar-carousel-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.jogar-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.jogar-dot {
  width: 32px;
  height: 3px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.jogar-dot-active {
  background: var(--green-primary);
  width: 48px;
}

.jogar-carousel-arrows {
  display: flex;
  gap: 0.4rem;
}

.jogar-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jogar-arrow:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

/* ══════════════════════════════════════════════════
   LIGHT MODE
   ══════════════════════════════════════════════════ */

[data-theme="light"] .jogar-carousel-noise {
  opacity: 0;
}

[data-theme="light"] .jogar-carousel-gradient {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45, 106, 79, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 102, 46, 0.04) 0%, transparent 50%);
}

[data-theme="light"] .jogar-input:focus {
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

[data-theme="light"] .jogar-submit {
  color: #fff;
}

[data-theme="light"] .jogar-submit:hover {
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.25);
}

[data-theme="light"] .jogar-slide-tag {
  border-color: rgba(45, 106, 79, 0.15);
  background: rgba(45, 106, 79, 0.04);
}

[data-theme="light"] .jogar-slide-note {
  border-top-color: rgba(45, 106, 79, 0.08);
}

[data-theme="light"] .jogar-action {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

[data-theme="light"] .jogar-action-chutar {
  border-color: rgba(45, 106, 79, 0.2);
}

[data-theme="light"] .jogar-action-secar {
  border-color: rgba(217, 4, 41, 0.2);
}

[data-theme="light"] .jogar-timer {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .jogar-structure-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

[data-theme="light"] .jogar-community-item {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

[data-theme="light"] .jogar-division-bar {
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

[data-theme="light"] .jogar-left {
  border-right-color: var(--border);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .jogar-page {
    flex-direction: column;
  }

  .jogar-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .jogar-left-inner {
    min-height: auto;
    padding: 5rem 2rem 3rem;
  }

  .jogar-logo {
    left: 2rem;
  }

  .jogar-theme-toggle {
    right: 2rem;
  }

  .jogar-footer {
    position: static;
    margin-top: 1rem;
  }

  .jogar-right,
  .jogar-page-register .jogar-right {
    min-height: 70vh;
    padding: 3rem 2rem 5rem;
    justify-content: center;
  }

  .jogar-slide-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .jogar-left-inner {
    padding: 5rem 1.5rem 2.5rem;
    max-width: 100%;
  }

  .jogar-logo {
    left: 1.5rem;
  }

  .jogar-theme-toggle {
    right: 1.5rem;
  }

  .jogar-title {
    font-size: 2.6rem;
  }

  .jogar-right,
  .jogar-page-register .jogar-right {
    padding: 2.5rem 1.5rem 4.5rem;
  }

  .jogar-slide-title {
    font-size: 1.8rem;
  }

  .jogar-actions-demo {
    flex-direction: column;
  }

  .jogar-actions-vs {
    transform: rotate(90deg);
  }

  .jogar-structure-grid {
    grid-template-columns: 1fr;
  }

  .jogar-carousel-controls {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   DASHBOARD — PLAYER PROFILE
   ═══════════════════════════════════════════════ */

/* ── Welcome Tag ── */

.dash-welcome-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--green-primary);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(45, 106, 79, 0.25);
  background: rgba(45, 106, 79, 0.06);
  position: relative;
  overflow: hidden;
}

.dash-welcome-tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  transform: translate(0.5rem, -50%);
  box-shadow: 0 0 8px var(--green-primary);
  animation: dashPulse 2s ease-in-out infinite;
}

.dash-welcome-tag {
  padding-left: 1.8rem;
}

@keyframes dashPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Username ── */

.dash-username {
  color: var(--green-primary);
  font-weight: 500;
}

/* ── Club Card ── */

.dash-club-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  animation: dashCardIn 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

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

.dash-club-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
}

.dash-club-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-club-badge {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.dash-club-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1;
}

.dash-club-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.dash-club-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dash-club-link:hover {
  color: var(--green-primary);
}

.dash-club-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.dash-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green-primary);
  line-height: 1;
  letter-spacing: 0.02em;
}

.dash-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.dash-club-bar {
  height: 3px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.dash-club-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  animation: dashBarFill 1.2s ease forwards;
  animation-delay: 0.6s;
}

@keyframes dashBarFill {
  to { width: 100%; }
}

.dash-club-motto {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* ── No Club ── */

.dash-no-club {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.dash-no-club-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.dash-no-club p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── Right Panel Content ── */

.dash-right-content {
  animation: jogarSlideIn 0.5s ease forwards;
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.dash-info-card {
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.25s ease;
}

.dash-info-card:hover {
  border-color: var(--green-primary);
}

.dash-info-icon {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.dash-info-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.dash-info-value {
  font-size: 0.85rem;
  color: var(--text-primary);
  word-break: break-all;
}

/* ── Coming Soon Hint ── */

.dash-next-hint {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: rgba(45, 106, 79, 0.03);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.dash-next-pulse {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dashPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--green-primary);
}

/* ── Dashboard Light Mode ── */

[data-theme="light"] .dash-club-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

[data-theme="light"] .dash-info-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

[data-theme="light"] .dash-welcome-tag {
  border-color: rgba(45, 106, 79, 0.2);
  background: rgba(45, 106, 79, 0.05);
}

[data-theme="light"] .dash-club-card::before {
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
}

/* ── Dashboard Responsive ── */

@media (max-width: 1024px) {
  .dash-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   TEAM PAGE
   ═══════════════════════════════════════════════ */

/* ── Left scroll variant ── */

.jogar-left-scroll {
  justify-content: flex-start;
  padding-top: 8rem;
}

/* ── Section blocks ── */

.team-section {
  margin-top: 1.5rem;
}

.team-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.team-section-icon {
  font-size: 0.9rem;
}

/* ── Empty state ── */

.team-empty-state {
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.team-empty-icon {
  font-size: 1.6rem;
  opacity: 0.3;
}

.team-empty-state p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.team-empty-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Players list ── */

.team-players-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.team-player-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
  animation: jogarSlideIn 0.4s ease forwards;
  opacity: 0;
}

.team-player-row:hover {
  border-color: var(--green-primary);
  transform: translateX(3px);
}

.team-player-rank {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  min-width: 24px;
  text-align: center;
}

.team-player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.team-player-name {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-player-username {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.team-player-you {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(45, 106, 79, 0.25);
  background: rgba(45, 106, 79, 0.06);
  flex-shrink: 0;
}

/* ── Team Light Mode ── */

[data-theme="light"] .team-player-row {
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

[data-theme="light"] .team-empty-state {
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* ── Team Responsive ── */

@media (max-width: 640px) {
  .team-players-list {
    max-height: none;
  }
}
