:root {
  --bg: #0A0A23;
  --card-bg: rgba(255, 255, 255, 0.02);
  --primary-start: #1E3A8A;
  --primary-end: #6D28D9;
  --primary-gradient: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  --success: #10B981;
  --muted: rgba(255, 255, 255, 0.6);
  --surface: rgba(255, 255, 255, 0.03);
  --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  --radius: 12px;
  --max-width: 1200px;
  --container-padding: 20px;
  font-family: 'Vazirmatn', 'IranSans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: dark;
}

/* Reset / Normalize (lightweight) */
* {
  box-sizing: border-box;
  font-family: 'Vazirmatn', 'IranSans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  direction: rtl;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--container-padding);
}

/* Utility */
.small {
  font-size: 0.9rem
}

.muted {
  color: var(--muted)
}

.lead {
  color: rgba(255, 255, 255, 0.92)
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 10, 35, 0.6), rgba(10, 10, 35, 0.35));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 60;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  width: 64px;
  height: 48px
}

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

.brand-name {
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase
}

/* Nav */
.nav {
  display: block
}

.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-list a {
  color: var(--muted);
  padding: 8px 6px;
  border-radius: 8px
}

.nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.02)
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700
}

.btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.06);
  outline-offset: 2px
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.12);
  transition: transform .16s ease, box-shadow .16s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.16)
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px
}

.hamburger {
  width: 22px;
  height: 2px;
  background: var(--muted);
  display: block;
  position: relative
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--muted)
}

.hamburger::before {
  top: -7px
}

.hamburger::after {
  bottom: -7px
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  right: 0;
  left: 0;
  top: 72px;
  background: rgba(10, 10, 35, 0.98);
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mobile-menu a {
  padding: 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--muted)
}

.mobile-menu a.btn-primary {
  width: 100%;
  text-align: center;
}

/* Main content spacing */
.site-main {
  padding-top: 100px
}

/* Sections */
.section-title {
  font-size: 1.25rem;
  margin: 0 0 18px 0;
  font-weight: 700;
  color: #fff;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 28px 0;
  margin-top: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.footer-links {
  display: flex;
  gap: 14px
}

.footer-links a {
  color: var(--muted)
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

a.active-page {
  font-size: large;
  color: #a87af4;
}

.faq-q {
  font-family: 'Vazirmatn', 'IranSans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Small responsive tweaks */
@media (max-width:768px) {
  .brand-sub {
    display: none
  }

  .header-inner {
    height: 64px
  }

  .menu-toggle {
    display: block
  }

  .nav {
    display: none
  }
}

.vip-style {
  background: linear-gradient(90deg, #6D28D9, #6D28D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.ltr-dir {
  direction: ltr !important;
  unicode-bidi: embed !important;
}
.rtl-dir
{
  direction: rtl !important;
  unicode-bidi: embed !important;
}
.no-text-warp{
  text-wrap: nowrap;
}

@property --a {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.nice-border {
  background: repeating-conic-gradient(from var(--a), #6D28D9 0%, #a87af4 15%, transparent 5%, transparent 30%, #6D28D9ec 50%);
  animation: nice-border 6s linear infinite;
  transition: 0.5s;
  /* padding: 1px; */
}

@keyframes nice-border {
  0% {
    --a: 0deg
  }

  100% {
    --a: 360deg
  }

}

.inside-nice-border {
  background: var(--bg) !important;
  position: relative;
}

.circle
{
  border-radius: 50% !important;
}