:root {
  --brand: #006c35;
  --brand-2: #0a8a4a;
  --bg: #f6f8f9;
  --card: #ffffff;
  --text: #1b1f23;
  --muted: #6b7280;
  --danger: #e11d48;
  --success: #16a34a;
  --border: #e5e7eb;
}


body {
  margin: 0;
  background: var(--bg);
  font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
  color: var(--text);
  direction: rtl;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar - Updated to match player page header EXACTLY */
.navbar {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 0rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  height: 106px; /* Match player.css exactly */
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.logo img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Centered main area */
.main-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 106px; /* Match navbar height exactly */
}

/* Main Container - Updated to card style */
.main-container {
  background: var(--card);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--border);
}

h1 {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Buttons - Updated to match player page */
.btn-primary, .btn-secondary {
  padding: 14px 24px;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: inherit;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 108, 53, 0.3);
}

.btn-secondary {
  background: #edf2f7;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive - Updated to match player.css breakpoints EXACTLY */
@media (max-width: 768px) {
  .navbar {
    padding: 0.4rem 1rem;
    height: 66px; /* Match player.css exactly */
  }
  
  .nav-content {
    gap: 0.75rem;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
  }
  
  .nav-title {
    font-size: 1.4rem;
  }
  
  .main-center {
    padding-top: 68px; /* Match navbar height exactly */
  }
  
  .main-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.3rem 0.8rem;
    height: 56px; /* Match player.css exactly */
  }
  
  .nav-content {
    gap: 0.5rem;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }
  
  .nav-title {
    font-size: 1.2rem;
  }
  
  .main-center {
    padding-top: 56px; /* Match navbar height exactly */
  }
  
  .main-container {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
}