/* =========================================================
   Vision RP - main.css
   FULL STABLE RECODE
   Palette:
   #0a0c0b dark olive
   #a99f8f beige
   #28281f olive
   #571e21 red
========================================================= */

@font-face {
  font-family: "VisionArabic";
  src: url("../assets/fonts/BAHIJ_THESANSARABIC-BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisionEnglish";
  src: url("../assets/fonts/FRAMD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #0a0c0b;
  --dark-2: #060706;
  --dark-3: #101310;
  --olive: #28281f;
  --olive-2: #1c1d16;
  --olive-3: #151811;
  --beige: #a99f8f;
  --beige-2: #d8d0c3;
  --red: #571e21;
  --red-2: #7e2a30;
  --text: #f5f0e8;
  --text-soft: rgba(245, 240, 232, 0.76);
  --muted: rgba(245, 240, 232, 0.54);
  --border: rgba(169, 159, 143, 0.22);
  --border-soft: rgba(169, 159, 143, 0.12);
  --border-strong: rgba(169, 159, 143, 0.42);
  --success: #61f0a0;
  --danger: #ff9ca1;
  --warning: #ead08d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.32);
  --nav-height: 94px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(169, 159, 143, 0.08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(87, 30, 33, 0.15), transparent 34%),
    linear-gradient(135deg, var(--dark-2), var(--dark) 48%, var(--dark-3));
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: "VisionArabic", Tahoma, Arial, sans-serif;
}

body,
body * {
  font-family: "VisionArabic", Tahoma, Arial, sans-serif;
}

input,
textarea,
select,
button,
.btn,
.badge,
[dir="ltr"],
.en,
.english,
code,
pre {
  font-family: "VisionEnglish", "VisionArabic", Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  outline: none;
}

button { cursor: pointer; }

img,
video {
  max-width: 100%;
}

main { flex: 1 0 auto; }

/* =========================
   LOADER
========================= */

#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  background: var(--dark-2);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#pageLoader.hide,
body.loaded #pageLoader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
}

.loader-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(169, 159, 143, 0.18);
  border-top-color: var(--beige);
  border-right-color: var(--red);
  animation: loaderSpin 0.8s linear infinite;
}

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

/* =========================
   NAVBAR
========================= */

.navbar,
.site-navbar {
  width: 100%;
  height: var(--nav-height);
  min-height: var(--nav-height);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  background: rgba(10, 12, 11, 0.92);
  border-bottom: 1px solid rgba(169, 159, 143, 0.12);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(1500px, calc(100% - 72px));
  height: var(--nav-height);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 140px;
  align-items: center;
  gap: 20px;
  direction: rtl;
}

.brand-logo {
  grid-column: 1;
  justify-self: end;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
}

.nav-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}

.logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: linear-gradient(135deg, var(--beige), var(--beige-2));
  font-weight: 1000;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  color: rgba(245, 240, 232, 0.72);
  font-size: 17px;
  font-weight: 1000;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--beige);
  transform: translateY(-1px);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 2px;
  left: 21%;
  bottom: -12px;
  border-radius: 999px;
  background: var(--red);
}

/* =========================
   PROFILE MENU
========================= */

.profile-menu {
  position: fixed !important;
  top: 22px !important;
  left: 34px !important;
  z-index: 10000 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.profile-btn {
  height: 50px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(169, 159, 143, 0.28) !important;
  background:
    linear-gradient(135deg, rgba(16, 19, 16, 0.94), rgba(87, 30, 33, 0.2)) !important;
  color: var(--text) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.profile-avatar {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(169, 159, 143, 0.72) !important;
}

.profile-name {
  max-width: 96px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  direction: ltr !important;
  color: var(--text) !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
}

.profile-arrow {
  width: 16px !important;
  height: 16px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
}

.profile-arrow img {
  width: 10px !important;
  height: 10px !important;
  object-fit: contain !important;
  filter:
    brightness(0)
    saturate(100%)
    invert(72%)
    sepia(8%)
    saturate(459%)
    hue-rotate(356deg)
    brightness(88%)
    contrast(88%) !important;
  transition: transform 0.18s ease;
}

.profile-menu.open .profile-arrow img {
  transform: rotate(180deg);
}

.profile-dropdown {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  width: 220px !important;
  padding: 10px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(16, 19, 16, 0.98), rgba(6, 7, 6, 0.98)) !important;
  border: 1px solid rgba(169, 159, 143, 0.25) !important;
  box-shadow: var(--shadow) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) scale(0.96) !important;
  transition: 0.2s ease !important;
}

.profile-menu.open .profile-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.profile-dropdown-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(169, 159, 143, 0.06);
  margin-bottom: 8px;
}

.profile-dropdown-head img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-dropdown-head strong {
  display: block;
  color: var(--text);
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: ltr;
}

.profile-dropdown-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.profile-dropdown-link {
  width: 100%;
  min-height: 40px;
  margin-top: 7px;
  border: 0;
  border-radius: 12px;
  background: rgba(169, 159, 143, 0.12);
  color: var(--text) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 1000;
}

.profile-dropdown-link.danger {
  background: rgba(87, 30, 33, 0.48);
  color: #ffd0d3 !important;
}

/* =========================
   GENERAL LAYOUT
========================= */

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 145px 0 60px;
}

.content-page {
  width: 100%;
  min-height: 100vh;
  padding: 150px 20px 80px;
  background:
    radial-gradient(circle at 10% 0%, rgba(169, 159, 143, 0.075), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(87, 30, 33, 0.16), transparent 34%),
    linear-gradient(135deg, #060706 0%, #0a0c0b 48%, #101310 100%);
}

.content-hero {
  width: min(1080px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.content-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--beige), var(--beige-2));
  font-size: 14px;
  font-weight: 1000;
}

.content-hero h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.05;
  font-weight: 1000;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.content-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.8;
  font-weight: 900;
}

.content-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.card,
.dashboard-pro-card,
.empty-dashboard-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.12), transparent 36%),
    radial-gradient(circle at 0% 0%, rgba(169, 159, 143, 0.06), transparent 34%),
    linear-gradient(145deg, rgba(16, 19, 16, 0.98), rgba(6, 7, 6, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.card h1,
.card h2,
.card h3,
.dashboard-pro-card h1,
.dashboard-pro-card h2,
.dashboard-pro-card h3 {
  margin-top: 0;
  color: var(--text);
}

.card p,
.dashboard-pro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.btn,
button.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  border: 1px solid rgba(169, 159, 143, 0.14);
  background: rgba(40, 40, 31, 0.72);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 1000;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(40, 40, 31, 0.95);
}

.btn.primary,
button.btn.primary,
.hero-main-btn,
.hero-btn {
  background: linear-gradient(135deg, var(--beige), var(--beige-2));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 18px 35px rgba(169, 159, 143, 0.12);
}

.btn.danger,
button.btn.danger,
button.danger {
  background: rgba(87, 30, 33, 0.52);
  color: #ffd0d3;
  border-color: rgba(126, 42, 48, 0.48);
}

button:disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* =========================
   FORMS
========================= */

.field {
  margin-bottom: 16px;
}

.field label,
.permissions-title {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 1000;
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: 15px;
  border: 1px solid rgba(169, 159, 143, 0.11);
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
  direction: rtl;
  text-align: right;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(169, 159, 143, 0.75);
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 0 0 4px rgba(169, 159, 143, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 240, 232, 0.34);
}

input[type="checkbox"],
input[type="radio"] {
  width: auto !important;
  min-width: 18px !important;
  max-width: 22px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
  accent-color: var(--beige);
}

/* =========================
   MESSAGES / BADGES
========================= */

.message {
  margin: 16px 0;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(169, 159, 143, 0.06);
  border: 1px solid rgba(169, 159, 143, 0.15);
  color: var(--text);
  font-weight: 900;
}

.message.success {
  background: rgba(105, 211, 145, 0.1);
  border-color: rgba(105, 211, 145, 0.3);
  color: #d8ffe9;
}

.message.error {
  background: rgba(87, 30, 33, 0.36);
  border-color: rgba(126, 42, 48, 0.56);
  color: #ffd0d3;
}

.badge,
.activation-status {
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 1000;
}

.badge.open,
.activation-status.accepted,
.badge.accepted {
  color: var(--success);
  background: rgba(97, 240, 160, 0.1);
  border: 1px solid rgba(97, 240, 160, 0.26);
}

.badge.closed,
.badge.rejected,
.activation-status.rejected {
  color: var(--danger);
  background: rgba(87, 30, 33, 0.48);
  border: 1px solid rgba(126, 42, 48, 0.42);
}

.badge.pending,
.activation-status.pending {
  color: var(--warning);
  background: rgba(169, 159, 143, 0.13);
  border: 1px solid rgba(169, 159, 143, 0.24);
}

.small-muted {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.nav-link-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

/* =========================
   ACTIVATION LANDING
========================= */

.activation-page {
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 48px) 20px 80px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(169, 159, 143, 0.08), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(87, 30, 33, 0.18), transparent 36%),
    linear-gradient(135deg, #060706 0%, #0a0c0b 48%, #101310 100%);
}

.activation-card {
  width: min(640px, 100%);
  margin: 0 auto;
}

.activation-card-content {
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  background: rgba(16, 19, 16, 0.88);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  text-align: center;
}

.activation-card-content h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 48px);
}

.activation-card-content p {
  margin: 0 0 22px;
  color: var(--text-soft);
  line-height: 1.7;
}

.activation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* =========================
   HOME HERO
========================= */

.home-page {
  min-height: 100vh;
}

.video-hero,
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 0 auto;
}

.hero-bg-video,
.home-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66) contrast(1.08) saturate(1.08);
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10, 12, 11, 0.4), rgba(10, 12, 11, 0.18) 32%, rgba(10, 12, 11, 0.26) 66%, rgba(10, 12, 11, 0.62)),
    radial-gradient(circle at center, rgba(169, 159, 143, 0.05), rgba(10, 12, 11, 0.08) 44%, rgba(10, 12, 11, 0.35)),
    radial-gradient(circle at 78% 25%, rgba(87, 30, 33, 0.1), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  padding-top: 90px;
}

.hero-content h1 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1.05;
  font-weight: 1000;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  max-width: 1050px;
  margin: 0 auto 32px;
  color: rgba(245, 240, 232, 0.88);
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.8;
  font-weight: 900;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

.hero-content .hero-main-btn,
.hero-content .hero-btn,
.video-hero .hero-main-btn,
.video-hero .hero-btn,
.hero-section .hero-main-btn,
.hero-section .hero-btn {
  width: auto !important;
  min-width: 150px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 34px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--beige), var(--beige-2)) !important;
  color: var(--dark) !important;
  border: 0 !important;
  font-size: 18px !important;
  font-weight: 1000 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

.hero-content .hero-main-btn:hover,
.hero-content .hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* =========================
   AUTH / LOGIN PAGE
========================= */

.auth-page {
  width: 100%;
  min-height: 100vh;
  padding: 170px 20px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 0%, rgba(169, 159, 143, 0.075), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(87, 30, 33, 0.16), transparent 34%),
    linear-gradient(135deg, #060706 0%, #0a0c0b 48%, #101310 100%);
}

.auth-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 42px;
  border-radius: 28px;
  border: 1px solid rgba(169, 159, 143, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.14), transparent 36%),
    radial-gradient(circle at 0% 0%, rgba(169, 159, 143, 0.07), transparent 34%),
    linear-gradient(145deg, rgba(16, 19, 16, 0.98), rgba(6, 7, 6, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.auth-card h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.1;
  font-weight: 1000;
}

.auth-card p {
  width: min(620px, 100%);
  margin: 0 auto 28px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 900;
}

.auth-box {
  width: 100%;
  margin-top: 20px;
}

.auth-box .message {
  text-align: center;
}

.auth-box .btn,
.auth-card .btn,
.auth-box button,
.auth-card button {
  min-width: 210px;
  margin-inline: auto;
}

.profile-status-box {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: rgba(169, 159, 143, 0.055);
  border: 1px solid rgba(169, 159, 143, 0.14);
}

.profile-status-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.profile-status-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(169, 159, 143, 0.72);
}

.profile-status-user strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  direction: ltr;
}

.profile-status-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* =========================
   CREATORS / STREAMERS
========================= */

.streamers-section,
.home-creators-section {
  padding: 90px 24px 100px;
  background:#070908;
}

.streamers-header,
.section-title {
  text-align: center;
  margin: 0 auto 48px;
}

.streamers-header h2,
.section-title h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 1000;
}

.streamers-header p,
.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.streamers-grid {
  width: min(1450px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
}

.streamer-card {
  width: 250px;
  min-height: 380px;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(16, 19, 16, 0.92);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.streamer-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(40, 40, 31, 0.78), rgba(87, 30, 33, 0.18));
}

.streamer-avatar {
  width: 150px;
  height: 150px;
  padding: 6px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--red));
  overflow: hidden;
}

.streamer-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border: 5px solid rgba(10, 12, 11, 0.96);
  border-radius: 50%;
  object-fit: cover;
  background: var(--olive);
}

.streamer-card h3 {
  margin: 0;
  color: var(--text);
  direction: ltr;
  text-align: center;
  font-size: 26px;
  font-weight: 1000;
}

.creator-visit-btn {
  min-width: 124px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--beige), var(--beige-2));
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
}

/* =========================
   STAFF CARDS
========================= */

.staff-card {
  cursor: default;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.staff-card-expandable {
  cursor: pointer;
}

.staff-card-header {
  width: 100%;
  padding: 28px 20px 24px;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: inherit;
}

.staff-card-expandable .staff-card-header {
  cursor: pointer;
}

.staff-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(169, 159, 143, 0.22), rgba(87, 30, 33, 0.35));
  border: 1px solid rgba(169, 159, 143, 0.3);
  color: var(--text);
  font-weight: 1000;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.staff-expand-icon {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.staff-card.open .staff-expand-icon {
  transform: rotate(180deg);
  color: var(--beige);
}

.staff-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.staff-card-description {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(169, 159, 143, 0.14);
}

.staff-card-description p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
  font-weight: 800;
}

.staff-card.open {
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(40, 40, 31, 0.78), rgba(87, 30, 33, 0.18));
}

/* =========================
   JOBS
========================= */

.grid,
.jobs-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.job-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-head,
.admin-item-head,
.job-manage-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.job-apply-shell {
  width: min(980px, 100%);
}

.job-apply-card {
  padding: 32px;
}

.job-apply-title {
  margin-bottom: 24px;
}

.job-apply-title h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 30px;
  font-weight: 1000;
}

.job-apply-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* =========================
   CHOICE QUESTIONS
========================= */

.choice-answer-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.choice-answer {
  position: relative;
  min-height: 68px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(169, 159, 143, 0.18);
  background: linear-gradient(135deg, rgba(40, 40, 31, 0.72), rgba(10, 12, 11, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 14px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.choice-answer:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 159, 143, 0.42);
  background: linear-gradient(135deg, rgba(46, 46, 36, 0.9), rgba(10, 12, 11, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 35px rgba(0, 0, 0, 0.34);
}

.choice-answer span {
  color: var(--text);
  font-size: 17px;
  font-weight: 1000;
  line-height: 1.5;
  text-align: right;
  overflow-wrap: anywhere;
}

.choice-answer input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50%;
  border: 2px solid var(--beige);
  background: rgba(10, 12, 11, 0.95);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.choice-answer input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark);
  transform: scale(0);
  transition: transform 0.16s ease;
}

.choice-answer input[type="radio"]:checked {
  background: var(--beige);
  border-color: var(--beige);
  box-shadow: 0 0 0 4px rgba(169, 159, 143, 0.18);
}

.choice-answer input[type="radio"]:checked::before {
  transform: scale(1);
}

.choice-answer:has(input[type="radio"]:checked) {
  border-color: rgba(169, 159, 143, 0.78);
  background: linear-gradient(135deg, rgba(169, 159, 143, 0.14), rgba(40, 40, 31, 0.92));
  box-shadow:
    0 0 0 1px rgba(169, 159, 143, 0.18),
    0 16px 35px rgba(0, 0, 0, 0.34);
}

/* =========================
   DASHBOARD CHOICE BUILDER
========================= */

.choice-options-field {
  padding: 16px;
  margin-top: 12px;
  border-radius: 18px;
  background: rgba(169, 159, 143, 0.055);
  border: 1px solid rgba(169, 159, 143, 0.18);
}

.choices-list {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 10px;
  align-items: center;
}

.choice-row .choice-input {
  min-height: 46px;
  border-radius: 14px;
}

.choice-remove-btn {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(126, 42, 48, 0.5);
  background: rgba(87, 30, 33, 0.45);
  color: #ffd0d3;
  font-weight: 1000;
}

.choice-remove-btn:hover {
  background: rgba(87, 30, 33, 0.65);
}

.choice-add-btn {
  width: 100%;
  margin-top: 4px;
  background: rgba(169, 159, 143, 0.14);
  border-color: rgba(169, 159, 143, 0.25);
}

/* =========================
   RULES
========================= */

.rules-accordion-page {
  width: 100%;
  min-height: 100vh;
  padding: 150px 20px 70px;
}

.rules-hero {
  width: min(940px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.rules-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--beige), var(--beige-2));
  font-size: 13px;
  font-weight: 1000;
}

.rules-hero h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.08;
  font-weight: 1000;
}

.rules-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.rules-shell {
  width: min(940px, 100%);
  margin: 0 auto;
}

.rules-accordion-list {
  display: grid;
  gap: 14px;
}

.rule-accordion-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(169, 159, 143, 0.2);
  background: linear-gradient(135deg, rgba(40, 40, 31, 0.55), rgba(10, 12, 11, 0.92));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.rule-accordion-button {
  width: 100%;
  min-height: 68px;
  padding: 0 26px;
  border: 0;
  background: linear-gradient(135deg, rgba(169, 159, 143, 0.2), rgba(40, 40, 31, 0.72));
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rule-title {
  flex: 1;
  color: var(--text);
  font-size: 19px;
  font-weight: 1000;
  text-align: right;
}

.rule-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 12, 11, 0.36);
  border: 1px solid rgba(169, 159, 143, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rule-arrow img {
  width: 14px;
  height: 14px;
  filter:
    brightness(0)
    saturate(100%)
    invert(72%)
    sepia(8%)
    saturate(459%)
    hue-rotate(356deg)
    brightness(88%)
    contrast(88%);
}

.rule-accordion-item.open .rule-arrow {
  transform: rotate(180deg);
  background: var(--beige);
}

.rule-accordion-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(6, 7, 6, 0.58);
  transition: max-height 0.4s ease;
}

.rule-accordion-item.open .rule-accordion-content {
  max-height: 9999px;
}

.rule-content-inner {
  padding: 28px 36px 30px;
  border-top: 1px solid rgba(169, 159, 143, 0.14);
}

.rule-content-inner p {
  margin: 0 0 8px 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 2.05;
  text-align: right;
  direction: rtl;
}

.rule-content-inner p:last-child {
  margin-bottom: 0;
}

.rule-line-break {
  height: 12px;
}

.rules-empty {
  min-height: 80px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(169, 159, 143, 0.22);
  background: rgba(169, 159, 143, 0.06);
  display: grid;
  place-items: center;
  font-weight: 1000;
}

/* =========================
   DASHBOARD
========================= */

body.dashboard-pro-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(169, 159, 143, 0.08), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(87, 30, 33, 0.18), transparent 32%),
    linear-gradient(135deg, var(--dark-2), var(--dark) 45%, var(--dark-3));
}

.dashboard-pro-layout {
  width: min(1650px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  direction: rtl;
}

.dashboard-pro-sidebar {
  position: sticky;
  top: 24px;
  height: calc(100vh - 48px);
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(169, 159, 143, 0.08), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(87, 30, 33, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(16, 19, 16, 0.98), rgba(6, 7, 6, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow-y: auto;
}

.dashboard-pro-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(169, 159, 143, 0.055);
  border: 1px solid var(--border);
}

.dashboard-pro-profile img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.dashboard-pro-profile strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 1000;
}

.dashboard-pro-profile span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-pro-menu,
.dash-tabs {
  display: grid;
  gap: 10px;
}

.dashboard-pro-menu button,
.dash-tabs button {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: rgba(245, 240, 232, 0.72);
  font-size: 15px;
  font-weight: 1000;
  text-align: right;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dashboard-pro-menu button:hover,
.dash-tabs button:hover {
  color: var(--text);
  background: rgba(169, 159, 143, 0.06);
  border-color: var(--border);
}

.dashboard-pro-menu button.active,
.dash-tabs button.active {
  color: var(--dark);
  background: linear-gradient(135deg, var(--beige), var(--beige-2));
}

.dashboard-pro-main {
  min-width: 0;
  overflow: hidden;
}

.dashboard-pro-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(169, 159, 143, 0.06), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(16, 19, 16, 0.98), rgba(10, 12, 11, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.dashboard-pro-header h1 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 1000;
}

.dashboard-pro-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dashboard-pro-back {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(40, 40, 31, 0.76);
  border: 1px solid rgba(169, 159, 143, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
}

.dash-section {
  display: none;
}

.dash-section.active {
  display: block;
}

.dashboard-pro-card-head {
  margin-bottom: 20px;
}

.dashboard-pro-card-head h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 25px;
  font-weight: 1000;
}

.dashboard-pro-card-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dashboard-pro-grid {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.dashboard-pro-grid > *,
.dashboard-pro-card,
.dashboard-pro-list,
.admin-list {
  min-width: 0;
}

.dashboard-pro-list,
.admin-list,
.jobs-admin-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dashboard-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 4px 0 16px;
  color: var(--text);
  font-weight: 1000;
}

.dashboard-check input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  accent-color: var(--beige);
}

/* =========================
   PERMISSIONS
========================= */

.permission-list,
#rolePermissions {
  display: grid;
  gap: 12px;
  max-height: 520px;
  overflow-y: auto;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(169, 159, 143, 0.12);
}

.permission-list label,
#rolePermissions label {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(169, 159, 143, 0.055);
  border: 1px solid rgba(169, 159, 143, 0.12);
  color: var(--text);
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  direction: ltr;
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.permission-list label:hover,
#rolePermissions label:hover {
  background: rgba(169, 159, 143, 0.095);
  border-color: rgba(169, 159, 143, 0.28);
}

.permission-list input[type="checkbox"],
#rolePermissions input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  border-radius: 6px;
  border: 2px solid rgba(169, 159, 143, 0.72);
  background: rgba(10, 12, 11, 0.95);
  display: grid;
  place-items: center;
}

.permission-list input[type="checkbox"]::before,
#rolePermissions input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--dark);
  transform: scale(0);
  transition: transform 0.14s ease;
}

.permission-list input[type="checkbox"]:checked,
#rolePermissions input[type="checkbox"]:checked {
  background: var(--beige);
  border-color: var(--beige);
  box-shadow: 0 0 0 4px rgba(169, 159, 143, 0.12);
}

.permission-list input[type="checkbox"]:checked::before,
#rolePermissions input[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* =========================
   ACTIVATION / JOB REQUESTS DASHBOARD
========================= */

.activation-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
}

.activation-admin-main {
  min-width: 0;
}

.activation-requests-sidebar {
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border-radius: 26px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(16, 19, 16, 0.98), rgba(6, 7, 6, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.activation-requests-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.activation-requests-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
}

.activation-requests-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.activation-requests-list,
#activationApps {
  max-height: calc(100vh - 165px);
  overflow-y: auto;
  display: grid;
  gap: 12px;
  padding-left: 4px;
  align-items: start;
}

.activation-request-item,
.activation-app-item,
.request-item,
.application-item,
#activationApps > * {
  width: 100% !important;
  min-height: 86px;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(169, 159, 143, 0.16) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(16, 19, 16, 0.98), rgba(6, 7, 6, 0.96)) !important;
  color: var(--text) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  text-align: right !important;
  display: grid !important;
  gap: 8px;
  cursor: pointer;
  font-weight: 900;
  overflow: hidden;
}

.activation-request-item:hover,
.activation-app-item:hover,
.request-item:hover,
.application-item:hover,
#activationApps > *:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 159, 143, 0.35) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(28, 29, 22, 0.98), rgba(8, 9, 8, 0.98)) !important;
}

#activationApps > * *,
.activation-requests-list > * * {
  color: inherit !important;
  background: transparent;
  overflow-wrap: anywhere;
}

.activation-detail-user,
.activation-answer-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(169, 159, 143, 0.045);
  border: 1px solid rgba(169, 159, 143, 0.11);
}

.activation-answer-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.activation-answer-card p {
  margin: 0;
  color: var(--text-soft);
  white-space: pre-wrap;
  line-height: 1.8;
}

#activationRequestDetails,
.activation-request-details {
  min-width: 0;
}

#activationRequestDetails .empty-dashboard-box,
.activation-request-details .empty-dashboard-box {
  min-height: 90px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 1000;
  text-align: center;
}

/* =========================
   ADMIN ITEMS
========================= */

.admin-item,
.role-item,
.creator-item,
.rule-item,
.job-item,
#jobAppsList > * {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(169, 159, 143, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(16, 19, 16, 0.96), rgba(6, 7, 6, 0.96));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  color: var(--text);
}

.admin-item h3,
.role-item h3,
.creator-item h3,
.rule-item h3,
.job-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text);
}

.admin-item p,
.role-item p,
.creator-item p,
.rule-item p,
.job-item p {
  max-width: 100%;
  color: var(--text-soft);
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-actions,
.dashboard-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-actions .btn,
.dashboard-actions .btn,
.admin-actions button,
.dashboard-actions button {
  width: auto;
}

.admin-list button:not(.btn),
.dashboard-pro-list button:not(.btn),
#activationApps button:not(.btn),
#jobAppsList button:not(.btn) {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(169, 159, 143, 0.16);
  background: rgba(40, 40, 31, 0.72);
  color: var(--text);
  font-weight: 900;
}

/* =========================
   FOOTER / SCROLLBAR
========================= */

.footer {
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

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

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--beige), var(--red));
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1150px) {
  .dashboard-pro-layout,
  .dashboard-pro-grid,
  .activation-admin-layout {
    grid-template-columns: 1fr !important;
  }

  .dashboard-pro-sidebar,
  .activation-requests-sidebar {
    position: relative;
    top: 0;
    height: auto;
    max-height: none;
  }

  .activation-requests-list,
  #activationApps {
    max-height: 420px;
  }
}

@media (max-width: 920px) {
  :root {
    --nav-height: auto;
  }

  .navbar,
  .site-navbar {
    position: relative;
    height: auto;
    min-height: auto;
  }

  .nav-inner {
    width: calc(100% - 24px);
    height: auto;
    min-height: auto;
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .brand-logo {
    justify-self: center;
  }

  .nav-links {
    width: 100%;
    gap: 14px;
  }

  .profile-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 10px auto;
    display: flex !important;
    justify-content: center;
  }

  .profile-dropdown {
    right: 0 !important;
    left: auto !important;
  }

  .content-page,
  .container,
  .rules-accordion-page {
    padding-top: 42px;
  }

  .auth-page {
    padding: 42px 14px;
  }

  .auth-card {
    padding: 24px;
    border-radius: 20px;
  }

  .auth-card h1 {
    font-size: 38px;
  }

  .auth-card p {
    font-size: 15px;
  }

  .grid,
  .jobs-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 0;
  }

  .streamer-card {
    width: 170px;
    min-height: 285px;
  }

  .streamer-avatar {
    width: 112px;
    height: 112px;
  }

  .streamer-card h3 {
    font-size: 19px;
  }

  .content-hero h1 {
    font-size: clamp(42px, 12vw, 70px);
  }

  .choice-answer {
    min-height: 60px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .choice-answer span {
    font-size: 15px;
  }

  .choice-answer input[type="radio"] {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
  }
}

@media (max-width: 700px) {
  .dashboard-pro-layout {
    width: calc(100% - 20px);
    padding: 12px 0;
  }

  .dashboard-pro-card,
  .dashboard-pro-header,
  .dashboard-pro-sidebar,
  .activation-requests-sidebar,
  .card {
    padding: 16px;
    border-radius: 18px;
  }

  .dashboard-pro-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .choice-remove-btn {
    width: 100%;
  }

  .admin-actions .btn,
  .dashboard-actions .btn,
  .admin-actions button,
  .dashboard-actions button,
  .btn,
  button.btn {
    width: 100%;
  }

  .permission-list label,
  #rolePermissions label {
    font-size: 13px;
  }

  .profile-status-actions {
    flex-direction: column;
  }
}

/* =========================================================
   Vision RP - Profile Menu + Navbar + Hero Button Fix
   Add this at the END of frontend/css/main.css
========================================================= */

/* Navbar fixed sizing */
.navbar,
.site-navbar {
  height: 94px !important;
  min-height: 94px !important;
  background: rgba(10, 12, 11, 0.92) !important;
}

.nav-inner {
  width: min(1500px, calc(100% - 72px)) !important;
  height: 94px !important;
  min-height: 94px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 140px minmax(0, 1fr) 140px !important;
  align-items: center !important;
  direction: rtl !important;
}

.brand-logo {
  grid-column: 1 !important;
  justify-self: end !important;
  width: 78px !important;
  height: 78px !important;
}

.nav-logo {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
}

.nav-links {
  grid-column: 2 !important;
  justify-self: center !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(28px, 4vw, 58px) !important;
  flex-wrap: wrap !important;
}

.nav-links a {
  font-size: 17px !important;
  font-weight: 1000 !important;
  color: rgba(245, 240, 232, 0.72) !important;
}

.nav-links a.active {
  color: var(--beige) !important;
}

.nav-links a.active::after {
  bottom: -12px !important;
  background: var(--red) !important;
}

/* Account pill */
.profile-menu {
  position: fixed !important;
  top: 22px !important;
  left: 34px !important;
  z-index: 10000 !important;
  display: inline-flex !important;
  align-items: center !important;
  direction: ltr !important;
}

.profile-btn {
  height: 52px !important;
  min-height: 52px !important;
  padding: 5px 10px 5px 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(169, 159, 143, 0.32) !important;
  background:
    radial-gradient(circle at 100% 50%, rgba(87, 30, 33, 0.28), transparent 56%),
    linear-gradient(135deg, rgba(16, 19, 16, 0.96), rgba(10, 12, 11, 0.96)) !important;
  color: #f5f0e8 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: blur(14px) !important;
  cursor: pointer !important;
}

.profile-avatar {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(169, 159, 143, 0.78) !important;
  background: #0a0c0b !important;
}

.profile-name {
  max-width: 105px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  direction: ltr !important;
  color: #f5f0e8 !important;
  font-size: 16px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
}

.profile-arrow {
  width: 18px !important;
  height: 18px !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #a99f8f !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transition: transform 0.18s ease !important;
}

.profile-menu.open .profile-arrow {
  transform: rotate(180deg) !important;
}

/* Dropdown like your screenshot */
.profile-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  width: 300px !important;
  padding: 16px !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(15, 17, 14, 0.98), rgba(6, 7, 6, 0.98)) !important;
  border: 1px solid rgba(169, 159, 143, 0.26) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) scale(0.96) !important;
  transition: 0.2s ease !important;
  direction: rtl !important;
}

.profile-menu.open .profile-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.profile-dropdown-head {
  min-height: 82px !important;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  background: rgba(169, 159, 143, 0.055) !important;
  border: 0 !important;
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-bottom: 12px !important;
}

.profile-dropdown-head img {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  background: #0a0c0b !important;
}

.profile-dropdown-head strong {
  display: block !important;
  max-width: 150px !important;
  color: #f5f0e8 !important;
  font-size: 18px !important;
  font-weight: 1000 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  direction: ltr !important;
  text-align: center !important;
}

.profile-dropdown-head span {
  display: block !important;
  margin-top: 6px !important;
  color: rgba(245, 240, 232, 0.55) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-align: center !important;
}

.profile-dropdown-link {
  width: 100% !important;
  min-height: 56px !important;
  margin-top: 10px !important;
  border-radius: 16px !important;
  border: 0 !important;
  background: rgba(169, 159, 143, 0.075) !important;
  color: #f5f0e8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 21px !important;
  font-weight: 1000 !important;
}

.profile-dropdown-link:hover {
  background: rgba(169, 159, 143, 0.13) !important;
}

.profile-dropdown-link.danger {
  background: rgba(87, 30, 33, 0.62) !important;
  color: #ffd0d3 !important;
}

/* Hero button */
.hero-content .hero-main-btn,
.hero-content .hero-btn,
.video-hero .hero-main-btn,
.video-hero .hero-btn,
.hero-section .hero-main-btn,
.hero-section .hero-btn {
  width: auto !important;
  min-width: 150px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 34px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--beige), var(--beige-2)) !important;
  color: var(--dark) !important;
  border: 0 !important;
  font-size: 18px !important;
  font-weight: 1000 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 920px) {
  .navbar,
  .site-navbar {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
  }

  .nav-inner {
    width: calc(100% - 24px) !important;
    height: auto !important;
    min-height: auto !important;
    padding: 14px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .profile-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 10px auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  .profile-dropdown {
    left: 50% !important;
    transform: translate(-50%, 10px) scale(0.96) !important;
  }

  .profile-menu.open .profile-dropdown {
    transform: translate(-50%, 0) scale(1) !important;
  }
}


/* =========================================================
   FINAL FIX: Public account menu exactly like requested
   Compact account pill + real arrow icon.
========================================================= */
.profile-menu {
  position: fixed !important;
  top: 16px !important;
  left: 48px !important;
  z-index: 10050 !important;
  display: inline-flex !important;
  align-items: center !important;
  direction: ltr !important;
}

.profile-btn {
  width: 164px !important;
  min-width: 164px !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 4px 7px 4px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(169, 159, 143, 0.34) !important;
  background:
    radial-gradient(circle at 100% 50%, rgba(87, 30, 33, 0.28), transparent 58%),
    linear-gradient(135deg, rgba(15, 17, 14, 0.98), rgba(9, 11, 10, 0.98)) !important;
  color: #f5f0e8 !important;
  display: grid !important;
  grid-template-columns: 14px minmax(0, 1fr) 40px !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38) !important;
  backdrop-filter: blur(16px) !important;
  cursor: pointer !important;
}

.profile-avatar {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(169, 159, 143, 0.78) !important;
  background: #050605 !important;
  justify-self: end !important;
}

.profile-name {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  direction: ltr !important;
  color: #f5f0e8 !important;
  font-size: 15px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  text-align: center !important;
  justify-self: center !important;
}

.profile-arrow {
  width: 14px !important;
  min-width: 14px !important;
  height: 14px !important;
  display: inline-grid !important;
  place-items: center !important;
  justify-self: start !important;
}

.profile-arrow img {
  width: 10px !important;
  height: 10px !important;
  object-fit: contain !important;
  display: block !important;
  filter: brightness(0) invert(1) opacity(0.82) !important;
  transition: transform 0.18s ease !important;
}

.profile-menu.open .profile-arrow img {
  transform: rotate(180deg) !important;
}

.profile-dropdown {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  width: 285px !important;
  padding: 15px !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(87, 30, 33, 0.20), transparent 42%),
    linear-gradient(145deg, rgba(15, 17, 14, 0.985), rgba(6, 7, 6, 0.985)) !important;
  border: 1px solid rgba(169, 159, 143, 0.28) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) scale(0.96) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  direction: rtl !important;
}

.profile-menu.open .profile-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.profile-dropdown-head {
  min-height: 78px !important;
  padding: 13px 15px !important;
  border-radius: 18px !important;
  background: rgba(169, 159, 143, 0.060) !important;
  border: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  direction: ltr !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-bottom: 10px !important;
}

.profile-dropdown-head img {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  background: #050605 !important;
}

.profile-dropdown-head strong {
  display: block !important;
  max-width: 150px !important;
  color: #f5f0e8 !important;
  font-size: 21px !important;
  font-weight: 1000 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  direction: ltr !important;
  text-align: left !important;
}

.profile-dropdown-head span {
  display: block !important;
  margin-top: 6px !important;
  color: rgba(245, 240, 232, 0.56) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-align: left !important;
}

.profile-dropdown-link {
  width: 100% !important;
  min-height: 56px !important;
  margin-top: 10px !important;
  border-radius: 16px !important;
  border: 0 !important;
  background: rgba(169, 159, 143, 0.085) !important;
  color: #f5f0e8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 21px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
}

button.profile-dropdown-link {
  appearance: none !important;
}

.profile-dropdown-link:hover {
  background: rgba(169, 159, 143, 0.14) !important;
}

.profile-dropdown-link.danger {
  background: rgba(87, 30, 33, 0.62) !important;
  color: #ffd0d3 !important;
}

@media (max-width: 920px) {
  .profile-menu {
    top: 12px !important;
    left: 12px !important;
  }

  .profile-btn {
    width: 154px !important;
    min-width: 154px !important;
    height: 46px !important;
    min-height: 46px !important;
    grid-template-columns: 12px minmax(0, 1fr) 36px !important;
  }

  .profile-avatar {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .profile-name {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  .profile-dropdown {
    width: min(300px, calc(100vw - 24px)) !important;
  }
}


/* Job application review modal */
.job-review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.job-review-modal.open {
  display: block;
}

.job-review-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.job-review-box {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 40px auto;
  padding: 24px;
  border-radius: 24px;
  background: #090b09;
  border: 1px solid rgba(169, 159, 143, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

.job-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.job-review-head h2 {
  margin: 0;
  color: #f5f0e8;
}

.job-review-head p {
  margin: 6px 0 0;
  color: rgba(245, 240, 232, 0.6);
}

.job-answer-card {
  padding: 16px;
  margin-top: 12px;
  border-radius: 18px;
  background: rgba(169, 159, 143, 0.07);
  border: 1px solid rgba(169, 159, 143, 0.18);
}

.job-answer-card strong {
  display: block;
  color: #f5f0e8;
  margin-bottom: 8px;
}

.job-answer-card p {
  margin: 0;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
  white-space: pre-wrap;
}

/* Smaller account dropdown */
.profile-dropdown {
  width: 255px !important;
  padding: 12px !important;
  border-radius: 20px !important;
}

.profile-dropdown-head {
  min-height: 62px !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
  gap: 12px !important;
  margin-bottom: 8px !important;
}

.profile-dropdown-head img {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
}

.profile-dropdown-head strong {
  font-size: 18px !important;
  max-width: 120px !important;
}

.profile-dropdown-head span {
  font-size: 12px !important;
  margin-top: 4px !important;
}

.profile-dropdown-link {
  min-height: 48px !important;
  margin-top: 8px !important;
  border-radius: 14px !important;
  font-size: 18px !important;
}
/* =========================================
   Vision same-style sections
   Website colors + clean blended background
========================================= */

/* Intro / title area */
.vision-community-intro {
  position: relative !important;
  padding: 90px 20px 45px !important;
  margin-bottom: 0 !important;
  text-align: center;
  overflow: hidden;
  z-index: 2 !important;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(87, 30, 33, 0.22), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(169, 159, 143, 0.04), transparent 35%),
    linear-gradient(180deg, #050706 0%, #060806 55%, #070908 100%) !important;
}

.vision-community-intro::after {
  display: none !important;
  content: none !important;
}

.vision-community-intro-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.vision-community-intro h2 {
  margin: 0 0 20px;
  color: #f5f0e8 !important;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 1000;
  line-height: 1.1;
}

.vision-community-intro p {
  margin: 0 auto;
  max-width: 1180px;
  color: rgba(245, 240, 232, 0.68) !important;
  font-size: 22px;
  font-weight: 800;
  line-height: 2;
}

/* Main section blocks */
.vision-section-block {
  position: relative;
  margin-top: 0 !important;
  padding: 55px 20px 90px !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(87, 30, 33, 0.20), transparent 38%),
    radial-gradient(circle at 70% 45%, rgba(87, 30, 33, 0.12), transparent 30%),
    linear-gradient(180deg, #070908 0%, #070908 40%, #090b09 100%) !important;
  overflow: hidden;
}

/* First section after the intro */
.vision-community-intro + .vision-section-block {
  padding-top: 35px !important;
}

/* Remove horizontal separator line */
.vision-section-block::before {
  display: none !important;
  content: none !important;
}

/* Layout */
.vision-section-inner {
  width: min(1450px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  gap: 95px;
}

.vision-section-even .vision-section-inner {
  grid-template-columns: 1fr 560px;
}

/* Images */
.vision-section-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-section-media img {
  width: 460px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Text content */
.vision-section-content {
  position: relative;
  text-align: right;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-section-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 220px;
  font-weight: 1000;
  line-height: 0.8;
  color: rgba(87, 30, 33, 0.22) !important;
  user-select: none;
  pointer-events: none;
}

.vision-section-content h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #f5f0e8 !important;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 1000;
  line-height: 1.1;
}

.vision-section-content p {
  position: relative;
  z-index: 1;
  margin: 0 0 34px auto;
  max-width: 900px;
  color: rgba(245, 240, 232, 0.68) !important;
  font-size: 22px;
  font-weight: 800;
  line-height: 2;
}

/* Buttons */
.vision-section-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 245px;
  height: 66px;
  padding: 0 26px;
  border: 1px solid rgba(169, 159, 143, 0.42) !important;
  background: transparent !important;
  color: #c9bda8 !important;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  transition: 0.2s ease;
}

.vision-section-btn:hover {
  background: rgba(169, 159, 143, 0.08) !important;
  color: #f5f0e8 !important;
  border-color: rgba(169, 159, 143, 0.7) !important;
}

/* Contact preview */
.vision-contact-block {
  padding-bottom: 140px !important;
}

.vision-floating-preview {
  position: absolute;
  right: 60px;
  bottom: 35px;
  width: 470px;
  max-width: 28vw;
  z-index: 2;
}

.vision-floating-preview img {
  width: 100%;
  display: block;
}

/* Optional community stats panel */
.vision-community-panel {
  background:
    radial-gradient(circle at bottom left, rgba(87, 30, 33, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(169, 159, 143, 0.09), transparent 24%),
    #080a08 !important;
  border: 1px solid rgba(169, 159, 143, 0.18) !important;
}

.vision-community-panel::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 159, 143, 0.20) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 35%, rgba(169, 159, 143, 0.18) 0 1.2px, transparent 2px),
    radial-gradient(circle at 60% 80%, rgba(169, 159, 143, 0.18) 0 1.2px, transparent 2px) !important;
}

.vision-community-stat {
  background: rgba(169, 159, 143, 0.06) !important;
  border: 1px solid rgba(169, 159, 143, 0.16) !important;
}

.vision-community-stat strong {
  color: #f5f0e8 !important;
}

.vision-community-stat span {
  color: rgba(245, 240, 232, 0.62) !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .vision-section-inner,
  .vision-section-even .vision-section-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .vision-section-media {
    order: 2;
  }

  .vision-section-content {
    order: 1;
    min-height: auto;
  }

  .vision-section-number {
    font-size: 140px;
    top: -10px;
  }

  .vision-floating-preview {
    position: static;
    width: min(420px, 100%);
    max-width: 100%;
    margin: 30px auto 0;
  }

  .vision-section-btn {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .vision-community-intro {
    padding: 60px 16px 34px !important;
    margin-bottom: 0 !important;
  }

  .vision-community-intro h2 {
    font-size: 40px;
  }

  .vision-community-intro p {
    font-size: 17px;
    line-height: 1.9;
  }

  .vision-section-block {
    padding: 45px 16px 70px !important;
  }

  .vision-community-intro + .vision-section-block {
    padding-top: 30px !important;
  }

  .vision-section-content h3 {
    font-size: 38px;
  }

  .vision-section-content p {
    font-size: 17px;
    line-height: 1.9;
  }

  .vision-section-number {
    font-size: 95px;
  }

  .vision-section-btn {
    min-width: 180px;
    height: 54px;
    font-size: 17px;
  }
}
/* =========================================================
   Remove effects from section 02 / vision-section-even
========================================================= */

.vision-section-block.vision-section-even {
  background: #070908 !important;
  background-image: none !important;
}

.vision-section-block.vision-section-even::before,
.vision-section-block.vision-section-even::after {
  display: none !important;
  content: none !important;
}

/* If the image/card inside has weird glow/shadow */
.vision-section-block.vision-section-even .vision-section-media,
.vision-section-block.vision-section-even .vision-section-media img {
  box-shadow: none !important;
  filter: none !important;
}
/* Force section 02 background color */
.vision-section-block.vision-section-even {
  background: #070908 !important;
  background-color: #070908 !important;
  background-image: none !important;
}

.vision-section-block.vision-section-even * {
  background-color: transparent;
}

.vision-section-block.vision-section-even::before,
.vision-section-block.vision-section-even::after {
  display: none !important;
  content: none !important;
}
/* =========================================================
   Remove red glow/background effects from Vision sections
========================================================= */

.vision-community-intro,
.vision-section-block,
.vision-section-block.vision-section-odd,
.vision-section-block.vision-section-even,
.vision-contact-block {
  background: #070908 !important;
  background-color: #070908 !important;
  background-image: none !important;
}

.vision-community-intro::before,
.vision-community-intro::after,
.vision-section-block::before,
.vision-section-block::after,
.vision-section-block.vision-section-odd::before,
.vision-section-block.vision-section-odd::after,
.vision-section-block.vision-section-even::before,
.vision-section-block.vision-section-even::after,
.vision-contact-block::before,
.vision-contact-block::after {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
}

/* Remove red glow behind the big numbers */
.vision-section-number {
  color: rgba(245, 240, 232, 0.04) !important;
}