@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  --bg: #03050b;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #aab7cc;
  --gold: #f6c65b;
  --blue: #4db7ff;
  --shadow: 0 24px 75px rgba(0, 0, 0, 0.40);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Tajawal', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 8%, rgba(77, 183, 255, 0.15), transparent 30%),
    radial-gradient(circle at 75% 18%, rgba(246, 198, 91, 0.13), transparent 28%),
    var(--bg);
}

.page-glow {
  position: fixed;
  inset: auto -120px -180px -120px;
  height: 340px;
  background: linear-gradient(90deg, rgba(77, 183, 255, 0.15), rgba(246, 198, 91, 0.16));
  filter: blur(80px);
  pointer-events: none;
}

.topbar {
  width: min(1120px, 92%);
  margin: 20px auto 0;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(3, 5, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #201604;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe08a, #f2b84b);
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.2px;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 700;
}

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

main {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 30px 0 58px;
}

.intro-card,
.info-card,
.market-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.intro-card {
  margin-top: 18px;
  padding: 26px 28px;
}

.intro-card h1,
.simple-page-title h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
}

.intro-card p,
.simple-page-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.market-card,
.info-card {
  min-height: 138px;
  padding: 24px;
}

.market-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
}

.market-card span {
  font-size: 24px;
  font-weight: 900;
}

.market-card strong {
  color: var(--muted);
  font-size: 15px;
}

.market-card.active {
  border-color: rgba(246, 198, 91, 0.35);
  background: linear-gradient(145deg, rgba(246, 198, 91, 0.15), rgba(255, 255, 255, 0.05));
}

.market-card.active strong {
  color: var(--gold);
}

.market-card.disabled {
  opacity: 0.62;
}

.simple-page-title {
  padding: 34px 0 8px;
}

.simple-page-title span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.status-line:last-child {
  border-bottom: 0;
}

.status-line span {
  color: var(--muted);
}

.status-line strong {
  color: var(--text);
  text-align: left;
}

@media (max-width: 860px) {
  .topbar {
    display: block;
  }

  nav {
    margin-top: 14px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .market-card,
  .info-card {
    padding: 22px;
  }
}

.logo-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
  object-fit: contain;
}

/* AlBaron logo rectangle display */
@media (max-width: 860px) {
  }

.logo-hero {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  max-height: 310px;
}

.logo-hero img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}


.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(246, 198, 91, 0.35);
  box-shadow: 0 8px 22px rgba(246, 198, 91, 0.18);
}



/* ===== AlBaron luxury brand + home polish ===== */

.brand {
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(246, 198, 91, 0.35);
  box-shadow: 0 10px 28px rgba(246, 198, 91, 0.18);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #fff6d0 0%, #f6c65b 28%, #6fd0ff 58%, #ffffff 78%, #f6c65b 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(246, 198, 91, 0.10);
  animation: brandShine 7s linear infinite;
}

.brand-subtitle {
  margin-top: 4px;
  color: #b9c7da;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

@keyframes brandShine {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.intro-card-luxury {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 34px 34px 30px;
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 198, 91, 0.10), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(77, 183, 255, 0.10), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
}

.intro-card-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 36%, rgba(255, 255, 255, 0.03) 62%, transparent 100%);
  pointer-events: none;
}

.intro-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(246, 198, 91, 0.13);
  color: #f6c65b;
  border: 1px solid rgba(246, 198, 91, 0.24);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.intro-card-luxury h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 12px;
  letter-spacing: -0.7px;
}

.intro-card-luxury p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.95;
  color: #c4d0e0;
}

.luxury-markets {
  margin-top: 20px;
  align-items: stretch;
}

.luxury-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.luxury-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 40%, rgba(246,198,91,0.05) 100%);
  pointer-events: none;
}

.luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);
}

.market-kicker,
.market-name,
.market-state {
  position: relative;
  z-index: 1;
}

.market-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #d7dfeb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.market-name {
  display: block;
  margin-top: 18px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.market-state {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: #d7dfeb;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
}

.market-state-live {
  color: #1b1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  border-color: rgba(246, 198, 91, 0.32);
  box-shadow: 0 12px 28px rgba(246, 198, 91, 0.18);
}

.market-card.active.luxury-card {
  border-color: rgba(246, 198, 91, 0.34);
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 198, 91, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(246, 198, 91, 0.12), rgba(255, 255, 255, 0.045));
}

.market-card.disabled.luxury-card {
  opacity: 0.85;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

@media (max-width: 860px) {
  .brand-title {
    font-size: 21px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .intro-card-luxury {
    padding: 24px 22px;
  }

  .intro-card-luxury p {
    font-size: 16px;
  }

  .market-name {
    font-size: 24px;
  }

  .luxury-card {
    min-height: 150px;
  }
}


/* V1D2_CLEAN_PREMIUM_HOME_POLISH */

.brand {
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid rgba(246, 198, 91, 0.38);
  box-shadow:
    0 10px 26px rgba(246, 198, 91, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #fff4cf, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: albaronNameGlow 7s linear infinite;
}

.brand-subtitle {
  margin-top: 5px;
  color: #bac8da;
  font-size: 12px;
  font-weight: 700;
}

@keyframes albaronNameGlow {
  0% { background-position: 0% center; }
  100% { background-position: 240% center; }
}

.vision-card {
  margin-top: 18px;
  padding: 34px 34px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(246, 198, 91, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.13), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(77, 183, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.vision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.055) 42%, transparent 72%);
  pointer-events: none;
}

.vision-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 9px 17px;
  border-radius: 999px;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.12);
  border: 1px solid rgba(246, 198, 91, 0.24);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 15px;
}

.vision-card h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(31px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.6px;
}

.vision-card p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  color: #c6d2e2;
  font-size: 18px;
  line-height: 1.95;
}

.platforms-section {
  margin-top: 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading span {
  color: #f6c65b;
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: 24px;
}

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

.platform-card {
  min-height: 190px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.07), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.088), rgba(255,255,255,0.038));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px -40px;
  height: 130px;
  background: radial-gradient(circle, rgba(246, 198, 91, 0.12), transparent 62%);
  pointer-events: none;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 198, 91, 0.28);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.platform-live {
  border-color: rgba(246, 198, 91, 0.32);
  background:
    radial-gradient(circle at 25% 15%, rgba(246, 198, 91, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(77, 183, 255, 0.09), transparent 30%),
    linear-gradient(145deg, rgba(246, 198, 91, 0.10), rgba(255,255,255,0.04));
}

.platform-soon {
  opacity: 0.9;
}

.platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dffad;
  box-shadow: 0 0 18px rgba(125, 255, 173, 0.65);
}

.platform-dot.muted {
  background: #aab7cc;
  box-shadow: none;
  opacity: 0.65;
}

.platform-status {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.platform-status.live {
  color: #1b1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  box-shadow: 0 10px 24px rgba(246, 198, 91, 0.18);
}

.platform-status.soon {
  color: #d8e1ee;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.10);
}

.platform-main {
  position: relative;
  z-index: 1;
  margin: 18px 0;
}

.platform-name {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.platform-main small {
  display: block;
  margin-top: 9px;
  color: #b8c6d8;
  font-size: 14px;
  line-height: 1.6;
}

.platform-action {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 14px;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.10);
  border: 1px solid rgba(246, 198, 91, 0.20);
  font-weight: 900;
  font-size: 13px;
}

.platform-action.disabled {
  color: #aebbd0;
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.08);
}

@media (max-width: 860px) {
  .brand-title {
    font-size: 21px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .vision-card {
    padding: 25px 22px;
  }

  .vision-card p {
    font-size: 16px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 165px;
  }

  .platform-name {
    font-size: 26px;
  }
}


/* V1D3_PREMIUM_VISION_ONLY */

.premium-vision {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 42px 34px 40px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid rgba(246, 198, 91, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.20), transparent 34%),
    radial-gradient(circle at 18% 25%, rgba(77, 183, 255, 0.13), transparent 30%),
    radial-gradient(circle at 82% 35%, rgba(246, 198, 91, 0.10), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.038));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.premium-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.07) 42%, transparent 72%);
  pointer-events: none;
}

.vision-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(246, 198, 91, 0.24);
  filter: blur(55px);
  pointer-events: none;
}

.premium-vision .vision-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.12);
  border: 1px solid rgba(246, 198, 91, 0.28);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(246, 198, 91, 0.08);
}

.premium-vision h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.05;
}

.premium-vision h1 span {
  color: #dfe8f5;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

.premium-vision h1 strong {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #fff7d5, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: visionTitleShine 8s linear infinite;
  text-shadow: 0 0 28px rgba(246, 198, 91, 0.10);
}

.premium-vision p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 22px auto 0;
  color: #c7d3e4;
  font-size: 19px;
  line-height: 2;
}

@keyframes visionTitleShine {
  0% { background-position: 0% center; }
  100% { background-position: 240% center; }
}

@media (max-width: 860px) {
  .premium-vision {
    padding: 30px 22px;
  }

  .premium-vision p {
    font-size: 16px;
    line-height: 1.9;
  }
}


/* V1D4_VISION_ORDER_FIX */

.premium-vision {
  padding: 36px 32px 34px;
}

.premium-vision .vision-badge {
  margin-bottom: 16px;
}

.premium-vision h1 {
  display: block;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.7px;
  background: linear-gradient(90deg, #fff7d5, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: visionTitleShine 8s linear infinite;
  text-shadow: 0 0 28px rgba(246, 198, 91, 0.10);
}

.premium-vision h1 span,
.premium-vision h1 strong {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}

.premium-vision p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #c7d3e4;
  font-size: 18px;
  line-height: 1.9;
}

@media (max-width: 860px) {
  .premium-vision {
    padding: 28px 20px;
  }

  .premium-vision h1 {
    font-size: 34px;
  }

  .premium-vision p {
    font-size: 16px;
  }
}


/* V1D5_HEADER_BRAND_ONLY */

.topbar {
  justify-content: center;
  padding: 14px 18px;
}

.brand-center {
  justify-content: center;
  text-align: center;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(246, 198, 91, 0.42);
  box-shadow:
    0 10px 28px rgba(246, 198, 91, 0.20),
    0 0 22px rgba(77, 183, 255, 0.10);
}

.brand-text {
  align-items: flex-start;
}

.brand-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fff7d5, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: albaronNameGlow 7s linear infinite;
}

.brand-subtitle {
  margin-top: 5px;
  color: #c0ccdc;
  font-size: 13px;
  font-weight: 800;
}

nav {
  display: none !important;
}

@media (max-width: 860px) {
  .topbar {
    display: flex;
  }

  .brand-title {
    font-size: 23px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }
}


/* V1D6_PREMIUM_PLATFORM_CARDS_ONLY */

.platforms-section-clean {
  margin-top: 22px;
}

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

.premium-platform-card {
  position: relative;
  overflow: hidden;
  min-height: 215px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.premium-platform-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.platform-card-glow {
  position: absolute;
  inset: auto -50px -80px -50px;
  height: 150px;
  background: radial-gradient(circle, rgba(246, 198, 91, 0.12), transparent 60%);
  pointer-events: none;
}

.platform-live {
  border-color: rgba(246, 198, 91, 0.30);
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 198, 91, 0.16), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(77, 183, 255, 0.10), transparent 30%),
    linear-gradient(160deg, rgba(246,198,91,0.10), rgba(255,255,255,0.04));
}

.platform-soon {
  background:
    radial-gradient(circle at 78% 18%, rgba(77, 183, 255, 0.08), transparent 24%),
    linear-gradient(160deg, rgba(255,255,255,0.085), rgba(255,255,255,0.04));
}

.platform-top,
.platform-main,
.platform-action {
  position: relative;
  z-index: 1;
}

.platform-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.platform-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.platform-status.live {
  color: #1d1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  box-shadow: 0 10px 24px rgba(246, 198, 91, 0.20);
}

.platform-status.soon {
  color: #d9e3ef;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.platform-main {
  margin-top: 8px;
}

.platform-name {
  display: block;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.platform-main small {
  display: block;
  color: #bdcadb;
  font-size: 15px;
  line-height: 1.8;
}

.platform-action {
  margin-top: 24px;
  width: fit-content;
  padding: 11px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 900;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.10);
  border: 1px solid rgba(246, 198, 91, 0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.platform-action.disabled {
  color: #b7c4d6;
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.09);
}

@media (max-width: 860px) {
  .premium-platforms-grid {
    grid-template-columns: 1fr;
  }

  .premium-platform-card {
    min-height: 190px;
    padding: 22px;
  }

  .platform-name {
    font-size: 27px;
  }

  .platform-main small {
    font-size: 14px;
  }
}


/* V1D7_PREMIUM_PLATFORM_LOGOS_GLOW */

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

.premium-platform-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.105), rgba(255,255,255,0.040));
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.premium-platform-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.platform-live {
  border-color: rgba(246, 198, 91, 0.34);
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 198, 91, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(77, 183, 255, 0.10), transparent 30%),
    linear-gradient(155deg, rgba(246,198,91,0.10), rgba(255,255,255,0.04));
}

.platform-soon {
  background:
    radial-gradient(circle at 82% 18%, rgba(77,183,255,0.08), transparent 28%),
    linear-gradient(155deg, rgba(255,255,255,0.085), rgba(255,255,255,0.04));
}

.platform-card-glow {
  position: absolute;
  inset: auto -55px -90px -55px;
  height: 165px;
  background: radial-gradient(circle, rgba(246, 198, 91, 0.15), transparent 62%);
  pointer-events: none;
}

.us-glow {
  background: radial-gradient(circle, rgba(77, 183, 255, 0.14), transparent 62%);
}

.tadawul-glow {
  background: radial-gradient(circle, rgba(28, 165, 109, 0.14), transparent 62%);
}

.platform-topline,
.platform-identity,
.platform-title-wrap,
.platform-action {
  position: relative;
  z-index: 1;
}

.platform-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.platform-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.platform-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.platform-logo svg {
  width: 42px;
  height: 42px;
  display: block;
}

.logo-binance {
  background: linear-gradient(145deg, rgba(246,198,91,0.16), rgba(255,255,255,0.05));
}

.logo-us {
  background: linear-gradient(145deg, rgba(77,183,255,0.15), rgba(255,255,255,0.05));
}

.logo-tadawul {
  background: linear-gradient(145deg, rgba(28,165,109,0.16), rgba(43,125,225,0.08));
}

.platform-title-wrap {
  min-width: 0;
}

.platform-name {
  display: block;
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.glow-name {
  background: linear-gradient(90deg, #fff7da 0%, #f6c65b 25%, #6fd0ff 55%, #ffffff 78%, #f6c65b 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: platformNameGlow 7.5s linear infinite;
  text-shadow: 0 0 26px rgba(246, 198, 91, 0.08);
}

@keyframes platformNameGlow {
  0% { background-position: 0% center; }
  100% { background-position: 240% center; }
}

.platform-desc {
  display: block;
  color: #bfd0e2;
  font-size: 14px;
  line-height: 1.75;
}

.platform-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.platform-status.live {
  color: #1d1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  box-shadow: 0 10px 24px rgba(246, 198, 91, 0.20);
}

.platform-status.soon {
  color: #d9e3ef;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.platform-action {
  margin-top: 28px;
  width: fit-content;
  padding: 11px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 900;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.10);
  border: 1px solid rgba(246, 198, 91, 0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.platform-action.disabled {
  color: #b7c4d6;
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.09);
}

@media (max-width: 860px) {
  .premium-platforms-grid {
    grid-template-columns: 1fr;
  }

  .premium-platform-card {
    min-height: 195px;
    padding: 22px;
  }

  .platform-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .platform-logo svg {
    width: 38px;
    height: 38px;
  }

  .platform-name {
    font-size: 26px;
  }

  .platform-desc {
    font-size: 13px;
  }

  .platform-topline {
    flex-direction: column;
    align-items: flex-start;
  }
}\n\n
/* V1E1_ACCESS_GATE_VISUAL_ONLY */

.premium-access-card {
  width: min(760px, 100%);
  margin: 36px auto 0;
  padding: 44px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(246, 198, 91, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.18), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(77, 183, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
  backdrop-filter: blur(22px);
}

.access-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.12);
  border: 1px solid rgba(246, 198, 91, 0.24);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.premium-access-card h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 66px);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 900;
  background: linear-gradient(90deg, #fff7da, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: platformNameGlow 7.5s linear infinite;
}

.premium-access-card p {
  max-width: 560px;
  margin: 0 auto;
  color: #c4d0df;
  font-size: 18px;
  line-height: 1.9;
}

.three-actions,
.auth-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin-top: 30px;
}

.access-btn {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
}

.access-btn.primary {
  color: #1d1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  box-shadow: 0 14px 34px rgba(246, 198, 91, 0.22);
}

.access-btn.secondary {
  color: #f7fbff;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
}

.access-btn.subtle {
  color: #cbd7e6;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.access-back {
  display: inline-flex;
  margin-top: 24px;
  color: #aebbd0;
  text-decoration: none;
  font-weight: 800;
}

.auth-preview input,
.auth-preview button {
  min-height: 54px;
  border-radius: 17px;
  font-family: inherit;
  font-size: 16px;
}

.auth-preview input {
  padding: 0 16px;
  color: #f7fbff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.auth-preview button {
  border: 0;
  color: #1d1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  font-weight: 900;
}

@media (max-width: 700px) {
  .premium-access-card {
    padding: 30px 22px;
  }
}


/* V1E1_CENTER_LOGO_ACCESS_GATE */

.gate-page {
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 34px 0 64px;
}

.gate-logo {
  width: min(720px, 100%);
  margin: 0 auto 20px;
  border: 1px solid rgba(246, 198, 91, 0.22);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 26px 75px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(246, 198, 91, 0.08);
}

.gate-logo.small {
  width: min(560px, 100%);
}

.gate-logo img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.gate-logo.small img {
  height: 210px;
}

.gate-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 38px 32px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(246, 198, 91, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.18), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(77, 183, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.115), rgba(255,255,255,0.042));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(22px);
}

.gate-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.12);
  border: 1px solid rgba(246, 198, 91, 0.25);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.gate-card h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5.5vw, 62px);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 900;
  line-height: 1.12;
  background: linear-gradient(90deg, #fff7da, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: platformNameGlow 7.5s linear infinite;
}

.gate-card p {
  max-width: 510px;
  margin: 0 auto;
  color: #c6d3e4;
  font-size: 18px;
  line-height: 1.9;
}

.gate-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin-top: 28px;
}

.gate-btn {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
}

.gate-btn.primary {
  color: #1d1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  box-shadow: 0 14px 34px rgba(246, 198, 91, 0.22);
}

.gate-btn.secondary {
  color: #f7fbff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.gate-btn.ghost {
  color: #cbd7e6;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.gate-back {
  display: inline-flex;
  margin-top: 24px;
  color: #aebbd0;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 700px) {
  .gate-page {
    padding-top: 22px;
  }

  .gate-logo img {
    height: 210px;
  }

  .gate-logo.small img {
    height: 170px;
  }

  .gate-card {
    padding: 30px 22px;
  }

  .gate-card p {
    font-size: 16px;
  }
}


/* V1E2_GLOBAL_HEADER_BRAND */

.global-header {
  width: min(1120px, 92%);
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 198, 91, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.10), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}

.brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(246, 198, 91, 0.42);
  box-shadow:
    0 10px 28px rgba(246, 198, 91, 0.20),
    0 0 22px rgba(77, 183, 255, 0.12);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: right;
}

.brand-title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #fff7d5, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: albaronNameGlow 7s linear infinite;
}

.brand-subtitle {
  margin-top: 6px;
  color: #c0ccdc;
  font-size: 13px;
  font-weight: 800;
}

nav {
  display: none !important;
}

@media (max-width: 700px) {
  .global-header {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand-title {
    font-size: 23px;
  }

  .brand-subtitle {
    font-size: 12px;
  }
}


/* V1E2_LOGIN_NO_LOGO */

.login-page-no-logo .global-header,
.login-page-no-logo .topbar {
  width: min(620px, 92%);
}

.login-page-no-logo .brand-center {
  text-align: center;
}

.login-page-no-logo .brand-text {
  align-items: center;
  text-align: center;
}

.login-page-no-logo .brand-title {
  font-size: 32px;
}

.login-page-no-logo .brand-subtitle {
  font-size: 14px;
}


/* V1E3_LOGIN_LOGO_MERGED_IN_CARD */

.login-card-hero {
  width: 100%;
  margin: -8px 0 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(246, 198, 91, 0.20);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(246, 198, 91, 0.07);
}

.login-card-hero img {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .login-card-hero {
    margin: -4px 0 18px;
    border-radius: 20px;
  }

  .login-card-hero img {
    height: 145px;
  }
}


/* V1E4_COMPACT_LOGIN_LOGO */

.compact-login-logo {
  width: min(360px, 100%);
  margin: -6px auto 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(246, 198, 91, 0.24);
  background: rgba(255,255,255,0.045);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(246, 198, 91, 0.08);
}

.compact-login-logo img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .compact-login-logo {
    width: min(310px, 100%);
    margin-bottom: 20px;
  }

  .compact-login-logo img {
    height: 100px;
  }
}


/* V1E5_ACCESS_LOGO_MERGED_IN_CARD */

.access-card-hero {
  width: min(430px, 100%);
  margin: -8px auto 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(246, 198, 91, 0.24);
  background: rgba(255,255,255,0.045);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(246, 198, 91, 0.08);
}

.access-card-hero img {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
  object-position: center;
}

.gate-card {
  margin-top: 34px;
}

@media (max-width: 700px) {
  .access-card-hero {
    width: min(330px, 100%);
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .access-card-hero img {
    height: 105px;
  }
}


/* V1E6_ACCESS_SUBSCRIPTIONS_BUTTON */

.gate-btn.subscription {
  color: #07121f;
  background: linear-gradient(135deg, #6fd0ff, #f6c65b);
  border: 1px solid rgba(111, 208, 255, 0.30);
  box-shadow:
    0 14px 34px rgba(111, 208, 255, 0.14),
    0 10px 28px rgba(246, 198, 91, 0.12);
}

.gate-btn.subscription:hover {
  filter: brightness(1.05);
}


/* V1E7_REGISTER_PAGE_UI_ONLY */

.auth-page {
  width: min(760px, 92%);
  margin: 0 auto;
  padding: 34px 0 64px;
}

.auth-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px 30px;
  border-radius: 34px;
  border: 1px solid rgba(246, 198, 91, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.16), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(77, 183, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(22px);
}

.auth-head {
  text-align: center;
  margin-bottom: 26px;
}

.auth-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #f6c65b;
  background: rgba(246, 198, 91, 0.12);
  border: 1px solid rgba(246, 198, 91, 0.24);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.auth-head h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5.5vw, 58px);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 900;
  background: linear-gradient(90deg, #fff7da, #f6c65b, #6fd0ff, #ffffff, #f6c65b);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: platformNameGlow 7.5s linear infinite;
}

.auth-head p {
  margin: 0;
  color: #c6d3e4;
  font-size: 17px;
  line-height: 1.8;
}

.auth-form {
  display: grid;
  gap: 15px;
}

.auth-form label span {
  display: block;
  margin-bottom: 8px;
  color: #cbd7e6;
  font-weight: 900;
  font-size: 14px;
}

.auth-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #f7fbff;
  background: rgba(255,255,255,0.07);
  font-family: inherit;
  font-size: 16px;
  outline: none;
}

.auth-form input::placeholder {
  color: rgba(203, 215, 230, 0.55);
}

.auth-form button {
  min-height: 56px;
  margin-top: 6px;
  border: 0;
  border-radius: 18px;
  color: #1d1404;
  background: linear-gradient(135deg, #ffe08a, #f6c65b);
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  opacity: 0.75;
}

.auth-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.auth-links a {
  color: #cbd7e6;
  text-decoration: none;
  font-weight: 800;
}

.auth-links a:hover {
  color: #f6c65b;
}

.auth-note {
  margin: 18px auto 0;
  max-width: 520px;
  text-align: center;
  color: #9facbf;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 700px) {
  .auth-card {
    padding: 28px 22px;
  }

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


/* V1E8_REGISTER_SQLITE_MESSAGES */

.auth-message {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 16px;
  text-align: center;
  font-weight: 900;
  line-height: 1.7;
}

.auth-message.error {
  color: #ffd8d8;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.24);
}

.auth-message.success {
  color: #d9ffe8;
  background: rgba(125, 255, 173, 0.12);
  border: 1px solid rgba(125, 255, 173, 0.24);
}

.auth-form button {
  opacity: 1;
  cursor: pointer;
}

/* V1H Dashboard basic market UI */
.dashboard-card {
  max-width: 900px;
}

.dashboard-mini-info {
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: right;
}

.dashboard-mini-info p {
  margin: 8px 0;
}

.dashboard-actions {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.dashboard-actions a {
  opacity: 0.85;
}

/* V1H2 Premium email verification page */
.verify-card {
  max-width: 560px;
}

.verify-lead {
  max-width: 430px;
  margin: 10px auto 16px;
  opacity: 0.88;
  line-height: 1.8;
}

.verify-email-box {
  margin: 14px auto 20px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  direction: ltr;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
  word-break: break-word;
}

.verify-form {
  margin-top: 14px;
}

.verify-code-input {
  text-align: center;
  direction: ltr;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 8px;
}

/* V1H2 Premium email verification page */
.verify-card {
  max-width: 560px;
}

.verify-lead {
  max-width: 430px;
  margin: 10px auto 16px;
  opacity: 0.88;
  line-height: 1.8;
}

.verify-email-box {
  margin: 14px auto 20px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  direction: ltr;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
  word-break: break-word;
}

.verify-form {
  margin-top: 14px;
}

.verify-code-input {
  text-align: center;
  direction: ltr;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 8px;
}

/* V1I Binance AlBaron Ai internal buttons */
.dashboard-main-buttons {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.dashboard-main-buttons a {
  display: block;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  text-decoration: none;
}

.dashboard-main-buttons strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.dashboard-main-buttons span {
  display: block;
  opacity: 0.82;
  font-size: 0.92rem;
}

.opportunity-placeholder {
  margin: 18px 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.18);
  text-align: center;
}

.recommendation-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.recommendation-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: right;
}

.recommendation-card h2 {
  margin: 0 0 10px;
}

.recommendation-card p {
  margin: 6px 0;
}

/* V1J Binance universe guard UI */
.section-title {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

/* V1K2 AlBaron Ai display polish */
.small-note {
  font-size: 0.9rem;
  opacity: 0.86;
  line-height: 1.7;
}

.recommendation-card hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 12px 0;
}

/* V1K3B Binance one-page tabs */
.one-page-dashboard {
  max-width: 980px;
}

.binance-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  margin: 22px 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab-btn {
  min-width: 170px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  color: inherit;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.tab-btn.active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.32);
}

.tab-panel {
  display: none;
  margin-top: 12px;
}

.tab-panel.active {
  display: block;
}

/* V1K3C premium dashboard table layout */
.premium-dashboard-page {
  width: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  padding: 42px 18px;
  box-sizing: border-box;
}

.premium-dashboard-shell {
  width: min(1380px, 100%);
  border-radius: 34px;
  padding: 28px;
  background: rgba(7, 12, 28, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  backdrop-filter: blur(18px);
}

.premium-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.premium-dashboard-head h1 {
  margin: 12px 0 6px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.premium-dashboard-head p {
  margin: 0;
  opacity: 0.84;
}

.premium-status-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  white-space: nowrap;
  font-weight: 800;
}

.premium-tabs {
  justify-content: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 8px;
  margin: 20px 0 24px;
}

.panel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin: 18px 0;
}

.panel-title-row h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
}

.panel-title-row p {
  margin: 0;
  opacity: 0.82;
}

.premium-mini-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.premium-mini-stats span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.86rem;
  white-space: nowrap;
}

.premium-inline-alert {
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.22);
  font-weight: 800;
}

.premium-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
}

.premium-data-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  text-align: right;
  overflow: hidden;
}

.premium-data-table th,
.premium-data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.premium-data-table th {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.10);
  font-weight: 900;
  white-space: nowrap;
}

.premium-data-table tr:hover td {
  background: rgba(255,255,255,0.055);
}

.rank-cell {
  font-weight: 900;
  opacity: 0.9;
  white-space: nowrap;
}

.symbol-cell {
  font-weight: 900;
  white-space: nowrap;
}

.reason-cell {
  min-width: 280px;
}

.reason-cell span {
  display: block;
  margin-bottom: 6px;
  opacity: 0.86;
  line-height: 1.5;
}

.premium-disclaimer {
  margin-top: 16px;
  opacity: 0.86;
  font-weight: 700;
}

.premium-footer-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 12px;
}

.premium-footer-info span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.9rem;
}

.premium-footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .premium-dashboard-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .premium-dashboard-head,
  .panel-title-row {
    display: block;
  }

  .premium-status-pill {
    margin-top: 14px;
    display: inline-block;
  }

  .premium-tabs {
    border-radius: 22px;
  }

  .tab-btn {
    min-width: 150px;
  }
}

/* V1K3D premium excel table polish */
.premium-data-table {
  border: 1px solid rgba(255,255,255,0.20);
  border-collapse: separate;
  border-spacing: 0;
}

.premium-data-table th,
.premium-data-table td {
  border-left: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background-clip: padding-box;
}

.premium-data-table th:last-child,
.premium-data-table td:last-child {
  border-left: none;
}

.premium-data-table thead th {
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  color: rgba(255,255,255,0.96);
  font-size: 0.92rem;
}

.premium-data-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.035);
}

.premium-data-table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,0.018);
}

.symbol-cell {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.98);
}

.score-cell {
  font-weight: 900;
  color: #ffd166;
}

.entry-cell {
  font-weight: 800;
  color: #e8eefc;
}

.target-cell,
.profit-cell {
  font-weight: 900;
  color: #42f59b;
}

.stop-cell {
  font-weight: 900;
  color: #ff5f6d;
}

.eta-cell,
.time-cell {
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.premium-table-wrap {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 42px rgba(0,0,0,0.22);
}

.premium-data-table th:first-child {
  border-top-right-radius: 20px;
}

.premium-data-table th:last-child {
  border-top-left-radius: 20px;
}

.premium-disclaimer {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

/* V1K3E final centered trading table */
.centered-table th,
.centered-table td {
  text-align: center !important;
  vertical-align: middle !important;
}

.premium-section-title {
  margin: 28px 0 12px;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 1.12rem;
  font-weight: 900;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
}

.premium-data-table {
  border: 1px solid rgba(255,255,255,0.24);
  border-collapse: separate;
  border-spacing: 0;
}

.premium-data-table th,
.premium-data-table td {
  border-left: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.premium-data-table th:last-child,
.premium-data-table td:last-child {
  border-left: none;
}

.premium-data-table thead th {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  font-weight: 950;
  color: rgba(255,255,255,0.96);
  white-space: nowrap;
}

.premium-data-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.035);
}

.premium-data-table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,0.018);
}

.premium-data-table tbody tr:hover td {
  background: rgba(255,255,255,0.075);
}

.rank-cell {
  font-weight: 950;
  color: #ffd166;
}

.symbol-cell {
  font-weight: 950;
  font-size: 1.05rem;
}

.live-price-cell {
  font-weight: 900;
  color: #8fd3ff;
  white-space: nowrap;
}

.live-price-cell.live-ok::after {
  content: " ●";
  color: #42f59b;
  font-size: 0.75rem;
}

.entry-cell {
  font-weight: 850;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}

.target-cell,
.profit-cell {
  font-weight: 950;
  color: #42f59b;
  white-space: nowrap;
}

.stop-cell {
  font-weight: 950;
  color: #ff5f6d;
  white-space: nowrap;
}

.eta-cell,
.time-cell,
.remaining-cell {
  font-weight: 850;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.time-cell span {
  display: block;
  line-height: 1.45;
}

.expired-remaining {
  color: #ffcc66 !important;
}

.premium-table-wrap {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 42px rgba(0,0,0,0.22);
}

.premium-disclaimer {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  opacity: 0.88;
  font-weight: 800;
}

/* V1K3F table section title polish */
.premium-section-title {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.premium-section-heading {
  display: flex;
  justify-content: center;
  margin: 30px 0 14px;
}

.premium-section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.2px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), rgba(255,255,255,0.07)),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.16);
  white-space: nowrap;
}

.premium-table-wrap {
  margin-bottom: 26px;
}

/* V1K3G1 premium title and glowing tabs */
.albaron-premium-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 0 28px;
  text-align: center;
}

.albaron-premium-title {
  margin: 0;
  padding: 18px 34px;
  border-radius: 30px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 950;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.98);
  background:
    radial-gradient(circle at top right, rgba(98, 185, 255, 0.26), transparent 35%),
    radial-gradient(circle at bottom left, rgba(66, 245, 155, 0.16), transparent 36%),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 0 26px rgba(98,185,255,0.16),
    0 24px 70px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
  text-shadow:
    0 0 18px rgba(98,185,255,0.42),
    0 0 38px rgba(66,245,155,0.16);
  animation: albaronTitleGlow 3.8s ease-in-out infinite;
}

@keyframes albaronTitleGlow {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(98,185,255,0.16),
      0 24px 70px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.18);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 0 38px rgba(98,185,255,0.28),
      0 0 26px rgba(66,245,155,0.14),
      0 24px 70px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.22);
    transform: translateY(-1px);
  }
}

.albaron-glow-tabs {
  justify-content: center !important;
  gap: 14px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 10px 0 30px !important;
}

.albaron-glow-tabs .tab-btn {
  min-width: 190px;
  padding: 15px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at top right, rgba(98,185,255,0.20), transparent 42%),
    rgba(255,255,255,0.065);
  color: rgba(255,255,255,0.96);
  font-weight: 950;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
  text-shadow: 0 0 12px rgba(98,185,255,0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.albaron-glow-tabs .tab-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 24px rgba(98,185,255,0.20),
    0 16px 34px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.albaron-glow-tabs .tab-btn.active {
  background:
    radial-gradient(circle at top right, rgba(66,245,155,0.24), transparent 42%),
    radial-gradient(circle at bottom left, rgba(98,185,255,0.22), transparent 44%),
    rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.34);
  box-shadow:
    0 0 30px rgba(66,245,155,0.16),
    0 16px 38px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

@media (max-width: 760px) {
  .albaron-premium-title {
    padding: 15px 20px;
    border-radius: 24px;
  }

  .albaron-glow-tabs {
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 8px !important;
  }

  .albaron-glow-tabs .tab-btn {
    min-width: 165px;
  }
}

/* V1K3G2 info cards and section polish */
.albaron-current-location {
  width: fit-content;
  margin: 8px auto 20px;
  padding: 12px 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 850;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.94);
  background:
    radial-gradient(circle at top right, rgba(98,185,255,0.20), transparent 45%),
    rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 12px 34px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.albaron-current-location strong {
  color: #8fd3ff;
  text-shadow: 0 0 14px rgba(98,185,255,0.38);
}

.premium-stats-cards,
.save-cards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
  margin: 16px 0 20px;
}

.save-cards-row {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.stat-card,
.save-card {
  padding: 16px 14px;
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(66,245,155,0.15), transparent 44%),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.stat-card span,
.save-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  opacity: 0.78;
  font-weight: 800;
}

.stat-card strong,
.save-card strong {
  display: block;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.97);
  line-height: 1.5;
}

.save-card strong {
  font-size: 1.45rem;
  color: #42f59b;
  text-shadow: 0 0 16px rgba(66,245,155,0.25);
}

.premium-section-heading {
  margin: 30px 0 14px !important;
}

.premium-section-heading span {
  min-width: 190px;
  padding: 13px 28px !important;
  background:
    radial-gradient(circle at top right, rgba(98,185,255,0.24), transparent 46%),
    radial-gradient(circle at bottom left, rgba(66,245,155,0.14), transparent 46%),
    rgba(255,255,255,0.075) !important;
  animation: sectionGlowSoft 4s ease-in-out infinite;
}

@keyframes sectionGlowSoft {
  0%, 100% {
    box-shadow:
      0 12px 30px rgba(0,0,0,0.22),
      0 0 18px rgba(98,185,255,0.10),
      inset 0 1px 0 rgba(255,255,255,0.16);
  }
  50% {
    box-shadow:
      0 14px 34px rgba(0,0,0,0.26),
      0 0 28px rgba(98,185,255,0.18),
      0 0 18px rgba(66,245,155,0.10),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
}

@media (max-width: 900px) {
  .premium-stats-cards,
  .save-cards-row {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 560px) {
  .premium-stats-cards,
  .save-cards-row {
    grid-template-columns: 1fr;
  }
}

/* V1K3G3 premium table header + column colors */
.premium-section-title {
  display: none !important;
}

.premium-section-heading {
  width: fit-content !important;
  margin: 28px auto 14px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.premium-section-heading span {
  min-width: 0 !important;
  width: auto !important;
  max-width: fit-content !important;
  padding: 12px 30px !important;
  border-radius: 999px !important;
}

.premium-table-wrap {
  border-radius: 22px !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  background:
    radial-gradient(circle at top right, rgba(98,185,255,0.08), transparent 34%),
    rgba(255,255,255,0.035) !important;
  overflow-x: auto !important;
}

.premium-data-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  min-width: 1220px !important;
}

.premium-data-table th {
  padding: 15px 12px !important;
  text-align: center !important;
  vertical-align: middle !important;
  font-weight: 950 !important;
  font-size: 0.9rem !important;
  border-left: 1px solid rgba(255,255,255,0.20) !important;
  border-bottom: 1px solid rgba(255,255,255,0.24) !important;
  color: rgba(255,255,255,0.98) !important;
  text-shadow: 0 0 10px rgba(255,255,255,0.12);
}

.premium-data-table td {
  padding: 14px 12px !important;
  text-align: center !important;
  vertical-align: middle !important;
  border-left: 1px solid rgba(255,255,255,0.14) !important;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}

.premium-data-table th:last-child,
.premium-data-table td:last-child {
  border-left: none !important;
}

.premium-data-table thead th.th-rank {
  background: rgba(255, 209, 102, 0.18) !important;
}

.premium-data-table thead th.th-symbol {
  background: rgba(143, 211, 255, 0.18) !important;
}

.premium-data-table thead th.th-live {
  background: rgba(98, 185, 255, 0.16) !important;
}

.premium-data-table thead th.th-time,
.premium-data-table thead th.th-interval,
.premium-data-table thead th.th-eta,
.premium-data-table thead th.th-remaining {
  background: rgba(255,255,255,0.11) !important;
}

.premium-data-table thead th.th-entry {
  background: rgba(255,255,255,0.13) !important;
}

.premium-data-table thead th.th-target,
.premium-data-table thead th.th-profit {
  background: rgba(66, 245, 155, 0.18) !important;
}

.premium-data-table thead th.th-stop {
  background: rgba(255, 95, 109, 0.20) !important;
}

.premium-data-table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,0.022) !important;
}

.premium-data-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.045) !important;
}

.premium-data-table tbody tr:hover td {
  background: rgba(98,185,255,0.075) !important;
}

.rank-cell {
  color: #ffd166 !important;
  font-weight: 950 !important;
}

.symbol-cell {
  color: #8fd3ff !important;
  font-weight: 950 !important;
  letter-spacing: 0.4px;
}

.live-price-cell {
  color: #8fd3ff !important;
  font-weight: 950 !important;
}

.entry-cell {
  color: #ffffff !important;
  font-weight: 900 !important;
}

.target-cell,
.profit-cell {
  color: #42f59b !important;
  font-weight: 950 !important;
  text-shadow: 0 0 12px rgba(66,245,155,0.20);
}

.stop-cell {
  color: #ff5f6d !important;
  font-weight: 950 !important;
  text-shadow: 0 0 12px rgba(255,95,109,0.20);
}

.eta-cell,
.remaining-cell,
.time-cell {
  color: rgba(255,255,255,0.90) !important;
  font-weight: 850 !important;
}

.time-cell span {
  display: block;
  line-height: 1.45;
}

.expired-remaining {
  color: #ffd166 !important;
  font-weight: 950 !important;
}

.premium-data-table th:first-child {
  border-top-right-radius: 20px !important;
}

.premium-data-table th:last-child {
  border-top-left-radius: 20px !important;
}

/* V1K3G4 remove current-location + compact premium top layout */
.albaron-current-location {
  display: none !important;
}

.premium-dashboard-shell {
  padding-top: 24px !important;
}

.albaron-premium-title-wrap {
  margin: 0 0 22px !important;
}

.albaron-premium-title {
  padding: 16px 42px !important;
  min-width: min(680px, 92%) !important;
}

.albaron-glow-tabs {
  margin: 0 auto 22px !important;
  max-width: 760px;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px !important;
}

.albaron-glow-tabs .tab-btn {
  width: 100%;
  min-width: 0 !important;
  padding: 14px 12px !important;
  font-size: 0.95rem;
}

.premium-stats-cards {
  max-width: 1120px;
  margin: 12px auto 14px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.save-cards-row {
  max-width: 880px;
  margin: 12px auto 24px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.stat-card,
.save-card {
  min-height: 72px;
  padding: 14px 12px !important;
  border-radius: 18px !important;
}

.stat-card span,
.save-card span {
  margin-bottom: 6px !important;
}

.stat-card strong {
  font-size: 1rem !important;
}

.save-card strong {
  font-size: 1.35rem !important;
}

.premium-section-heading {
  margin-top: 22px !important;
}

@media (max-width: 760px) {
  .albaron-glow-tabs {
    display: flex !important;
    justify-content: flex-start !important;
    max-width: 100%;
  }

  .albaron-glow-tabs .tab-btn {
    min-width: 150px !important;
  }

  .premium-stats-cards,
  .save-cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .premium-stats-cards,
  .save-cards-row {
    grid-template-columns: 1fr !important;
  }
}

/* V1K3G5 meta excel table */
.old-hidden-cards {
  display: none !important;
}

.meta-excel-wrap {
  width: min(1120px, 100%);
  margin: 14px auto 24px;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    radial-gradient(circle at top right, rgba(98,185,255,0.10), transparent 38%),
    rgba(255,255,255,0.04);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.meta-excel-table {
  width: 100%;
  min-width: 850px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
}

.meta-excel-table th,
.meta-excel-table td {
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.meta-excel-table th:last-child,
.meta-excel-table td:last-child {
  border-left: none;
}

.meta-excel-table th {
  font-weight: 950;
  color: rgba(255,255,255,0.96);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  white-space: nowrap;
}

.meta-excel-table td {
  font-weight: 900;
  color: rgba(255,255,255,0.94);
  background: rgba(255,255,255,0.025);
}

.meta-time-cell span {
  display: block;
  line-height: 1.45;
  white-space: nowrap;
}

.meta-green {
  color: #42f59b !important;
  text-shadow: 0 0 12px rgba(66,245,155,0.20);
}

.meta-red {
  color: #ff5f6d !important;
  text-shadow: 0 0 12px rgba(255,95,109,0.20);
}

/* V1K3H long opportunities */
.premium-section-heading span {
  text-shadow: 0 0 14px rgba(143,211,255,0.20);
}

/* V1K3I live price vs buy difference column */
.premium-data-table thead th.th-diff {
  background: rgba(255, 209, 102, 0.16) !important;
}

.buy-diff-cell {
  font-weight: 950;
  white-space: nowrap;
}

.buy-diff-cell.diff-positive {
  color: #42f59b !important;
  text-shadow: 0 0 12px rgba(66,245,155,0.22);
}

.buy-diff-cell.diff-negative {
  color: #ff5f6d !important;
  text-shadow: 0 0 12px rgba(255,95,109,0.22);
}

.buy-diff-cell.diff-flat {
  color: #ffd166 !important;
}

/* V1K3I remove extended section strip completely */
.premium-section-heading {
  width: auto !important;
  max-width: max-content !important;
  margin: 28px auto 14px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  justify-content: center !important;
}

.premium-section-heading::before,
.premium-section-heading::after {
  display: none !important;
  content: none !important;
}

.premium-section-heading span {
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  display: inline-flex !important;
  padding: 12px 28px !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at top right, rgba(98,185,255,0.24), transparent 44%),
    radial-gradient(circle at bottom left, rgba(66,245,155,0.14), transparent 44%),
    rgba(255,255,255,0.075) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.22),
    0 0 20px rgba(98,185,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

/* FORCE REMOVE ALL SECTION STRIPS - V1K3I2 */
.premium-section-title,
.premium-section-heading,
.premium-section-heading span {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  animation: none !important;
}

.premium-section-heading {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 34px 0 14px !important;
  padding: 0 !important;
  text-align: center !important;
}

.premium-section-heading::before,
.premium-section-heading::after,
.premium-section-heading span::before,
.premium-section-heading span::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.premium-section-heading span {
  display: inline-block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.98) !important;
  font-size: 1.35rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.3px !important;
  text-shadow:
    0 0 16px rgba(98,185,255,0.45),
    0 0 28px rgba(66,245,155,0.18) !important;
}

/* give a small elegant underline only under the text */
.premium-section-heading span {
  border-bottom: 2px solid rgba(98,185,255,0.45) !important;
  padding-bottom: 8px !important;
}

/* V1K3J clean section title + rename diff column */
.premium-section-heading,
.premium-section-heading span,
.premium-section-title {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.clean-section-title {
  display: block;
  width: fit-content;
  margin: 30px auto 14px;
  padding: 0 4px 9px;
  font-size: 1.35rem;
  font-weight: 950;
  text-align: center;
  color: rgba(255,255,255,0.98);
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid rgba(98,185,255,0.55);
  box-shadow: none !important;
  text-shadow:
    0 0 16px rgba(98,185,255,0.45),
    0 0 28px rgba(66,245,155,0.18);
}

.premium-data-table thead th.th-diff {
  background: rgba(255, 209, 102, 0.16) !important;
}

/* V1K3K remove interval column + kill old section strip */
.premium-section-heading,
.premium-section-heading span,
.premium-section-title,
.clean-section-title {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

.simple-section-title {
  display: block !important;
  width: fit-content !important;
  margin: 30px auto 14px !important;
  padding: 0 6px 8px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid rgba(98,185,255,0.55) !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.98) !important;
  font-size: 1.32rem !important;
  font-weight: 950 !important;
  text-align: center !important;
  text-shadow:
    0 0 16px rgba(98,185,255,0.45),
    0 0 28px rgba(66,245,155,0.18) !important;
}

.premium-data-table {
  min-width: 1120px !important;
}


/* V1K4 clean Binance dashboard final UI safety net */
.v1k4-clean-tabs,
.binance-tabs-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 18px auto 22px;
  max-width: 100%;
  overflow: visible !important;
}

table,
.table-wrap,
.table-container,
.dashboard-table,
.ai-table,
.follow-table {
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: auto !important;
  box-sizing: border-box !important;
}

th,
td {
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}

.profit,
.gain,
.expected-profit,
[data-label="الربح المتوقع"] {
  color: #22c55e !important;
  font-weight: 800 !important;
}

.stop,
.stop-loss,
[data-label="وقف الخسارة"] {
  color: #ef4444 !important;
  font-weight: 800 !important;
}

.progress,
.progress-bar,
.bar,
.wide-bar,
.stretch-bar,
.extended-bar,
.remaining-bar,
.time-bar,
.profit-bar,
.loss-bar,
.meter,
.timeline,
.range-bar {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.update-info table,
table.update-info,
.report-info table,
table.report-info,
.excel-small,
.v1k4-update-info {
  width: auto !important;
  max-width: 520px !important;
  margin: 10px auto 16px !important;
  font-size: 12px !important;
  border-collapse: collapse !important;
}

/* V1K4D_FORCE_VISIBLE_BINANCE_TABS_CSS */
#v1k4d-binance-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
}

#v1k4d-binance-tabs button {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

th, td {
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}


/* V1K4E_ATTACH_BUTTONS_TO_ORIGINAL_TABS_CSS */
.v1k4e-original-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
}

.v1k4e-original-tabs button,
.v1k4e-original-tabs a,
.v1k4e-attached-tab {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 14px !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#v1k4e-excluded-section {
  width: min(1120px, calc(100% - 24px));
  margin: 14px auto 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

#v1k4e-excluded-section h2 {
  text-align: center;
  margin: 0 0 12px;
}

#v1k4e-excluded-section table {
  width: 100%;
  border-collapse: collapse;
}

#v1k4e-excluded-section th,
#v1k4e-excluded-section td {
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 10px;
}


/* V1K4G_STATIC_VISIBLE_TABS_CSS */
#v1k4g-main-tabs,
#v1k4g-main-tabs * {
  visibility: visible !important;
  opacity: 1 !important;
}

#v1k4g-main-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 99999 !important;
}

#v1k4g-main-tabs button {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  white-space: nowrap !important;
}

#v1k4g-excluded-section th,
#v1k4g-excluded-section td,
th,
td {
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}


/* V1K4J_DASHBOARD_TABS_CSS */
.tab-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

[data-panel="excluded"] table th,
[data-panel="excluded"] table td,
[data-panel="symbol-analysis"] table th,
[data-panel="symbol-analysis"] table td {
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}


/* V1K5H dashboard clean topbar cards */
.v1k5h-topbar-clean {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 18px;
  display: flex;
  direction: ltr;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.v1k5h-title-plain {
  direction: ltr;
  text-align: left;
  padding-top: 4px;
  flex: 1 1 auto;
}

.v1k5h-main-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: .3px;
  line-height: 1.05;
}

.v1k5h-sub-title {
  margin-top: 8px;
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 700;
  opacity: .82;
}

.v1k5h-info-cards {
  direction: rtl;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  max-width: 620px;
}

.v1k5h-info-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.v1k5h-warning-card {
  flex-basis: auto;
  text-align: center;
  color: #ffd88a;
}

.v1k5h-link-card {
  cursor: pointer;
}

.v1k5h-link-card:hover {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .v1k5h-topbar-clean {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: stretch;
  }

  .v1k5h-title-plain {
    text-align: center;
  }

  .v1k5h-info-cards {
    max-width: none;
    justify-content: center;
  }

  .v1k5h-info-card {
    white-space: normal;
    text-align: center;
  }
}


/* V1K5H3 topbar motion polish */
.v1k5h-main-title {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, #ffd88a, #ffffff, #7dd3fc, #ffffff);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: v1k5hTitleShine 5.5s ease-in-out infinite, v1k5hTitleFloat 4s ease-in-out infinite;
  text-shadow: 0 0 22px rgba(255, 216, 138, .18);
}

.v1k5h-sub-title {
  animation: v1k5hSubtitleGlow 4.5s ease-in-out infinite;
}

.v1k5h-info-card {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  animation: v1k5hCardEnter .55s ease both;
}

.v1k5h-info-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: v1k5hCardShimmer 5.8s ease-in-out infinite;
  pointer-events: none;
}

.v1k5h-info-card:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(255, 216, 138, .35);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24), 0 0 28px rgba(255, 216, 138, .08);
}

.v1k5h-warning-card {
  animation: v1k5hWarningPulse 3.8s ease-in-out infinite;
  border-color: rgba(255, 216, 138, .22);
}

.v1k5h-link-card {
  border-color: rgba(125, 211, 252, .22);
}

@keyframes v1k5hTitleShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes v1k5hTitleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes v1k5hSubtitleGlow {
  0%, 100% { opacity: .78; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 18px rgba(125, 211, 252, .22); }
}

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

@keyframes v1k5hCardShimmer {
  0%, 72%, 100% { transform: translateX(-120%); }
  84% { transform: translateX(120%); }
}

@keyframes v1k5hWarningPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(0,0,0,.16), 0 0 0 rgba(255,216,138,0); }
  50% { box-shadow: 0 14px 36px rgba(0,0,0,.2), 0 0 24px rgba(255,216,138,.16); }
}

@media (prefers-reduced-motion: reduce) {
  .v1k5h-main-title,
  .v1k5h-sub-title,
  .v1k5h-info-card,
  .v1k5h-info-card::before,
  .v1k5h-warning-card {
    animation: none !important;
  }
}

/* V1K5H8B hide old bottom meta block safely - CSS only */
body:has(.v1k5h-topbar-clean) footer:has(a[href*="/logout/"]):has(a[href="/"]) {
  display: none !important;
}

/* fallback for old bottom meta area if it uses gate-back links */
body:has(.v1k5h-topbar-clean) .gate-footer,
body:has(.v1k5h-topbar-clean) .dashboard-footer,
body:has(.v1k5h-topbar-clean) .premium-footer {
  display: none !important;
}

/* V1K5H8D force hide old duplicated bottom footer */
body .premium-footer-info,
body .premium-footer-actions {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* V1K5H10 make topbar links always clickable */
.v1k5h-topbar-clean,
.v1k5h-info-cards,
.v1k5h-link-card {
  position: relative;
  z-index: 50;
  pointer-events: auto !important;
}

.v1k5h-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* V1K5H14 keep topbar links clickable */
.v1k5h-topbar-clean,
.v1k5h-info-cards,
.v1k5h-link-card {
  position: relative;
  z-index: 999;
  pointer-events: auto !important;
}

.v1k5h-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* V1K5H22 dashboard tabs inline */
body .premium-tabs,
body .dashboard-tabs,
body .tabs,
body .tab-buttons,
body .v1k4i-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

body .tab-btn,
body .v1k4i-menu-btn {
  display: inline-flex !important;
  width: auto !important;
  min-width: fit-content !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
}

@media (max-width: 760px) {
  body .premium-tabs,
  body .dashboard-tabs,
  body .tabs,
  body .tab-buttons,
  body .v1k4i-menu {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 6px !important;
  }

  body .tab-btn,
  body .v1k4i-menu-btn {
    flex: 0 0 auto !important;
  }
}

/* V1K5H23 set title-to-tabs spacing */
.albaron-premium-title-wrap {
  margin-bottom: 30px !important;
}

/* V1K5H24 set title-to-tabs spacing to 50px */
.albaron-premium-title-wrap {
  margin-bottom: 50px !important;
}

/* V1K5H25 colorful premium dashboard title */
.albaron-premium-title {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    radial-gradient(circle at 15% 25%, rgba(255, 216, 138, 0.32), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(125, 211, 252, 0.34), transparent 34%),
    radial-gradient(circle at 55% 90%, rgba(66, 245, 155, 0.22), transparent 38%),
    rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow:
    0 0 30px rgba(125, 211, 252, 0.18),
    0 0 42px rgba(255, 216, 138, 0.12),
    0 24px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.22) !important;
  color: transparent !important;
  -webkit-background-clip: padding-box, padding-box, padding-box, padding-box, padding-box !important;
}

.albaron-premium-title {
  position: relative;
}

.albaron-premium-title::after {
  content: "AlBaron Ai - Binance";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: inherit;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #ffd88a, #7dd3fc, #42f59b, #ffffff);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: v1k5h25TitleTextShine 4.8s ease-in-out infinite;
  text-shadow:
    0 0 18px rgba(125, 211, 252, .30),
    0 0 30px rgba(255, 216, 138, .20);
  pointer-events: none;
}

@keyframes v1k5h25TitleTextShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* V1K5H26 bigger dashboard tab buttons text */
.albaron-glow-tabs .tab-btn,
body .premium-tabs .tab-btn,
body .tab-btn {
  font-size: 1.12rem !important;
  font-weight: 950 !important;
  padding: 16px 24px !important;
  line-height: 1.25 !important;
}

/* V1K5H27 force dashboard tabs in one row */
.albaron-glow-tabs,
body .premium-tabs,
body .binance-tabs {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding-bottom: 8px !important;
}

.albaron-glow-tabs .tab-btn,
body .premium-tabs .tab-btn,
body .binance-tabs .tab-btn,
body .tab-btn {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: auto !important;
  white-space: nowrap !important;
  font-size: 1.08rem !important;
  padding: 15px 20px !important;
}

.albaron-glow-tabs::-webkit-scrollbar,
body .premium-tabs::-webkit-scrollbar,
body .binance-tabs::-webkit-scrollbar {
  height: 6px;
}


/* V1K5I1 symbol analysis styles */
.v1k5i1-symbol-card {
  max-width: 980px;
  margin: 0 auto;
}

.v1k5i1-symbol-form {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.v1k5i1-symbol-input {
  min-width: min(340px, 100%);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: inherit;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1.08rem;
  font-weight: 800;
  outline: none;
  text-align: center;
}

.v1k5i1-symbol-btn {
  border: 1px solid rgba(125,211,252,.28);
  background: rgba(125,211,252,.12);
  color: inherit;
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 1.05rem;
  font-weight: 950;
  cursor: pointer;
}

.v1k5i1-symbol-btn:hover {
  transform: translateY(-1px);
}

.v1k5i1-symbol-result {
  margin-top: 14px;
}

.v1k5i1-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v1k5i1-result-grid > div {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  border-radius: 16px;
  padding: 13px 14px;
}

.v1k5i1-result-grid strong {
  display: block;
  opacity: .75;
  font-size: .88rem;
  margin-bottom: 6px;
}

.v1k5i1-result-grid span {
  font-weight: 950;
}

.v1k5i1-reasons {
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  border-radius: 16px;
  padding: 14px 18px;
}

.v1k5i1-reasons ul {
  margin: 10px 0 0;
  padding-inline-start: 22px;
}

.v1k5i1-disclaimer,
.v1k5i1-updated,
.v1k5i1-note,
.v1k5i1-warning,
.v1k5i1-error {
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
}

.v1k5i1-disclaimer {
  color: #ffd88a;
  background: rgba(255,216,138,.08);
  border: 1px solid rgba(255,216,138,.18);
}

.v1k5i1-warning {
  color: #ffd88a;
  background: rgba(255,216,138,.08);
  border: 1px solid rgba(255,216,138,.16);
}

.v1k5i1-error {
  color: #ffb4b4;
  background: rgba(255,100,100,.08);
  border: 1px solid rgba(255,100,100,.16);
}

@media (max-width: 820px) {
  .v1k5i1-result-grid {
    grid-template-columns: 1fr;
  }
}

/* V1K5I3 symbol analysis center polish */
#tab-symbol-analysis {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

#tab-symbol-analysis .card,
#tab-symbol-analysis .v1k5i1-symbol-card {
  width: min(1080px, calc(100% - 28px)) !important;
  max-width: 1080px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
}

#tab-symbol-analysis h2 {
  text-align: center !important;
  margin-bottom: 10px !important;
}

#tab-symbol-analysis .muted {
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto 18px !important;
  line-height: 1.8 !important;
}

.v1k5i1-symbol-form {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 20px auto 22px !important;
}

.v1k5i1-symbol-input {
  width: min(360px, 100%) !important;
}

.v1k5i1-symbol-result {
  width: 100% !important;
  margin: 18px auto 0 !important;
  text-align: right !important;
}

.v1k5i1-result-grid {
  width: 100% !important;
  margin: 0 auto !important;
  direction: rtl !important;
}

.v1k5i1-result-grid > div {
  text-align: right !important;
}

.v1k5i1-reasons,
.v1k5i1-disclaimer,
.v1k5i1-updated,
.v1k5i1-note,
.v1k5i1-warning,
.v1k5i1-error {
  text-align: right !important;
}

@media (max-width: 820px) {
  .v1k5i1-symbol-form {
    flex-direction: column !important;
  }

  .v1k5i1-symbol-input,
  .v1k5i1-symbol-btn {
    width: 100% !important;
  }
}

/* V1K5I4 force symbol analysis panel full-width below tabs */
#tab-symbol-analysis {
  display: none !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  grid-column: 1 / -1 !important;
  clear: both !important;
  margin: 0 auto 30px !important;
  padding: 0 !important;
}

#tab-symbol-analysis.active {
  display: block !important;
}

#tab-symbol-analysis .v1k5i1-symbol-card,
#tab-symbol-analysis > .card {
  width: min(1080px, calc(100% - 28px)) !important;
  max-width: 1080px !important;
  margin: 0 auto 30px !important;
  display: block !important;
  float: none !important;
  text-align: center !important;
}

#tab-symbol-analysis .v1k5i1-symbol-form {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#tab-symbol-analysis .v1k5i1-symbol-result {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* V1K5I5 keep moved tab panels full-width inside dashboard shell */
.premium-dashboard-shell > .tab-panel {
  width: 100% !important;
  max-width: 100% !important;
  clear: both !important;
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#tab-symbol-analysis .v1k5i1-symbol-card {
  width: min(1080px, calc(100% - 28px)) !important;
  max-width: 1080px !important;
  margin: 0 auto 30px !important;
  display: block !important;
  float: none !important;
}

/* V1K5I6 final inside-shell panel positioning */
.premium-dashboard-shell {
  display: block !important;
}

.premium-dashboard-shell > .tab-panel {
  width: 100% !important;
  max-width: 100% !important;
  clear: both !important;
  float: none !important;
  margin: 0 auto 32px !important;
}

#tab-symbol-analysis,
#tab-excluded {
  width: 100% !important;
  max-width: 100% !important;
  clear: both !important;
  float: none !important;
}

#tab-symbol-analysis .v1k5i1-symbol-card,
#tab-excluded .card {
  width: min(1080px, calc(100% - 28px)) !important;
  max-width: 1080px !important;
  margin: 0 auto 30px !important;
  float: none !important;
  display: block !important;
}

/* V1K5I7 symbol analysis result polish */
#tab-symbol-analysis .v1k5i1-symbol-card {
  text-align: center !important;
}

#tab-symbol-analysis h2 {
  text-align: center !important;
}

.v1k5i7-centered-grid {
  direction: rtl !important;
  text-align: center !important;
}

.v1k5i7-centered-grid > div {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 96px !important;
}

.v1k5i7-centered-grid strong {
  text-align: center !important;
}

.v1k5i7-centered-grid span {
  text-align: center !important;
  font-size: 1.05rem !important;
}

.v1k5i7-profit-card span {
  color: #42f59b !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 14px rgba(66,245,155,.22);
}

.v1k5i7-stop-card span {
  color: #ff8d8d !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 14px rgba(255,100,100,.18);
}

#v1k5i7-live-price.v1k5i7-live-ok {
  color: #7dd3fc !important;
  font-weight: 1000 !important;
}

.v1k5i1-disclaimer {
  text-align: center !important;
  font-size: 1rem !important;
}

.v1k5i1-reasons,
.v1k5i1-updated {
  display: none !important;
}

/* V1K5I8 direct approved engine UI */
.v1k5i7-centered-grid > div {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}

.v1k5i7-profit-card span {
  color: #42f59b !important;
  font-weight: 1000 !important;
}

.v1k5i7-stop-card span {
  color: #ff8d8d !important;
  font-weight: 1000 !important;
}

.v1k5i7-live-ok {
  color: #7dd3fc !important;
  font-weight: 1000 !important;
}

/* V1K5I9 follow decision display */
.v1k5i9-watch-card span {
  color: #ffd88a !important;
  font-weight: 1000 !important;
}

.v1k5i9-wide-card {
  grid-column: 1 / -1 !important;
}

.v1k5i9-wide-card span {
  max-width: 760px !important;
  line-height: 1.8 !important;
  color: rgba(255,255,255,.9) !important;
}

/* V1K5I9 follow decision display */
.v1k5i9-watch-card span {
  color: #ffd88a !important;
  font-weight: 1000 !important;
}

.v1k5i9-wide-card {
  grid-column: 1 / -1 !important;
}

.v1k5i9-wide-card span {
  max-width: 760px !important;
  line-height: 1.8 !important;
  color: rgba(255,255,255,.9) !important;
}

/* V1K5I10 active recommendation context */
.v1k5i10-active-rec {
  margin: 18px auto 0 !important;
  border: 1px solid rgba(255,216,138,.22);
  background: rgba(255,216,138,.07);
  border-radius: 20px;
  padding: 18px;
  max-width: 980px;
  text-align: center;
}

.v1k5i10-active-rec h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  color: #ffd88a;
}

.v1k5i10-active-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v1k5i10-active-grid > div {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  border-radius: 16px;
  padding: 12px;
}

.v1k5i10-active-grid strong {
  display: block;
  opacity: .75;
  margin-bottom: 6px;
}

.v1k5i10-active-grid span {
  font-weight: 1000;
}

.v1k5i10-profit-text {
  color: #42f59b !important;
}

.v1k5i10-loss-text {
  color: #ff8d8d !important;
}

.v1k5i10-active-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  line-height: 1.8;
  font-weight: 850;
}

@media (max-width: 820px) {
  .v1k5i10-active-grid {
    grid-template-columns: 1fr;
  }
}

/* V1K5I11 active recommendation remaining time */
.v1k5i11-time-text {
  color: #7dd3fc !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 14px rgba(125,211,252,.22);
}

/* V1K5I14B hide empty symbol result box */
#v1k5i1-symbol-result:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* V1K5I15 next update countdown */
.next-update-cell {
  color: #7dd3fc !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 14px rgba(125,211,252,.18);
  white-space: nowrap !important;
}

/* V1K5I16 next update beside last update */
.next-update-cell {
  color: #7dd3fc !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 14px rgba(125,211,252,.22);
  white-space: nowrap !important;
  direction: rtl !important;
}

/* V1K5J3 unified opportunities table duration column */
.duration-cell {
  color: #ffd88a !important;
  font-weight: 1000 !important;
  white-space: nowrap !important;
}

.th-duration {
  white-space: nowrap !important;
}


/* V1K5J3B unified opportunities table duration polish */
.duration-cell {
  color: #ffd88a !important;
  font-weight: 1000 !important;
  white-space: nowrap !important;
  text-shadow: 0 0 12px rgba(255,216,138,.18);
}

.th-duration {
  white-space: nowrap !important;
}

/* V1K5J4 reduce unified opportunities table horizontal scroll */
.premium-table-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
}

.premium-data-table.centered-table {
  width: 100% !important;
  min-width: 0 !important;
  table-layout: auto !important;
}

.premium-data-table.centered-table th,
.premium-data-table.centered-table td {
  padding: 9px 7px !important;
  font-size: 0.88rem !important;
  white-space: nowrap !important;
}

.premium-data-table .th-rank,
.premium-data-table .rank-cell {
  width: 42px !important;
  min-width: 42px !important;
}

.premium-data-table .th-symbol,
.premium-data-table .symbol-cell {
  width: 70px !important;
  min-width: 70px !important;
}

.premium-data-table .th-duration,
.premium-data-table .duration-cell {
  width: 72px !important;
  min-width: 72px !important;
}

.premium-data-table .th-live,
.premium-data-table .live-price-cell,
.premium-data-table .th-entry,
.premium-data-table .entry-cell,
.premium-data-table .th-target,
.premium-data-table .target-cell,
.premium-data-table .th-stop,
.premium-data-table .stop-cell {
  width: 92px !important;
  min-width: 80px !important;
}

.premium-data-table .th-diff,
.premium-data-table .buy-diff-cell {
  width: 128px !important;
  min-width: 118px !important;
}

.premium-data-table .th-time,
.premium-data-table .time-cell {
  width: 108px !important;
  min-width: 100px !important;
}

.premium-data-table .th-profit,
.premium-data-table .profit-cell {
  width: 82px !important;
  min-width: 76px !important;
}

.premium-data-table .th-eta,
.premium-data-table .eta-cell,
.premium-data-table .th-remaining,
.premium-data-table .remaining-cell {
  width: 120px !important;
  min-width: 110px !important;
}

@media (max-width: 1100px) {
  .premium-data-table.centered-table th,
  .premium-data-table.centered-table td {
    padding: 8px 6px !important;
    font-size: 0.82rem !important;
  }
}


/* === V1K5M1_CLEAN_FOLLOW_TABLE_AFTER_L3 === */
.m1-follow-scroll {
  max-height: 760px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 18px;
  width: 100%;
}

.m1-follow-table {
  width: 100%;
  table-layout: fixed;
  font-size: 12px;
}

.m1-follow-table th,
.m1-follow-table td {
  padding: 8px 5px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  line-height: 1.25;
}

.m1-follow-table .num-cell,
.m1-follow-table .rank-cell {
  direction: ltr;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 800;
}

.m1-follow-table .symbol-cell {
  font-weight: 900;
  white-space: nowrap;
}

.m1-follow-table .saved-at-cell {
  font-size: 11px;
  font-weight: 700;
}

.m1-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  white-space: nowrap;
}

.m1-good {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.m1-watch {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.13);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.m1-bad {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.m1-neutral {
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.m1-follow-table th:nth-child(1),
.m1-follow-table td:nth-child(1) { width: 4%; }

.m1-follow-table th:nth-child(2),
.m1-follow-table td:nth-child(2) { width: 8%; }

.m1-follow-table th:nth-child(3),
.m1-follow-table td:nth-child(3) { width: 9%; }

.m1-follow-table th:nth-child(4),
.m1-follow-table td:nth-child(4) { width: 8%; }

.m1-follow-table th:nth-child(5),
.m1-follow-table td:nth-child(5) { width: 9%; }

.m1-follow-table th:nth-child(6),
.m1-follow-table td:nth-child(6) { width: 9%; }

.m1-follow-table th:nth-child(7),
.m1-follow-table td:nth-child(7) { width: 8%; }

.m1-follow-table th:nth-child(8),
.m1-follow-table td:nth-child(8) { width: 10%; }

.m1-follow-table th:nth-child(9),
.m1-follow-table td:nth-child(9) { width: 9%; }

.m1-follow-table th:nth-child(10),
.m1-follow-table td:nth-child(10) { width: 8%; }

.m1-follow-table th:nth-child(11),
.m1-follow-table td:nth-child(11) { width: 18%; }

/* === V1K5M7_FOLLOW_SUMMARY_CARDS === */
.m7-follow-summary-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.m7-summary-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.38);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.m7-summary-card span {
  display: block;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.76);
  margin-bottom: 6px;
  white-space: nowrap;
}

.m7-summary-card strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #e5e7eb;
  white-space: nowrap;
}

.m7-good-card {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.09);
}

.m7-watch-card {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.09);
}

.m7-bad-card {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.09);
}

.m7-neutral-card {
  border-color: rgba(148, 163, 184, 0.25);
  background: rgba(148, 163, 184, 0.08);
}

@media (max-width: 1200px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* === V1K5M7B_FORCE_FOLLOW_SUMMARY_VISIBLE === */
.m7-follow-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
  width: 100%;
}

.m7-summary-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.42);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.m7-summary-card span {
  display: block;
  font-size: 11px;
  color: rgba(226, 232, 240, 0.78);
  margin-bottom: 6px;
  white-space: nowrap;
}

.m7-summary-card strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #e5e7eb;
  white-space: nowrap;
}

.m7-good-card {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.09);
}

.m7-watch-card {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.09);
}

.m7-bad-card {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.09);
}

.m7-neutral-card {
  border-color: rgba(148, 163, 184, 0.25);
  background: rgba(148, 163, 184, 0.08);
}

@media (max-width: 1200px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* === V1K5M8B_MERGED_PERFORMANCE_SUMMARY_CARDS === */
.m7-follow-summary-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

@media (max-width: 1300px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 800px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* === V1K5M8E_SPLIT_BEST_WORST_CARDS === */
.m7-follow-summary-grid {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

@media (max-width: 1500px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1000px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 650px) {
  .m7-follow-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
