/* Parokh EA Gold — Luxury Design System */
/* system fonts for IR speed */
:root {
  --bg: #07070a;
  --bg-elevated: #0e0e14;
  --bg-card: #12121a;
  --bg-card-hover: #181822;
  --border: rgba(212, 175, 55, 0.12);
  --border-strong: rgba(212, 175, 55, 0.28);
  --gold: #FFD700;
  --gold-light: #FFE44D;
  --gold-dark: #E6C200;
  --gold-glow: rgba(255, 215, 0, 0.35);
  --text: #f5f5f7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 64px rgba(0,0,0,0.45);
  --header-h: 72px;
  --font: Tahoma, 'Segoe UI', system-ui, sans-serif;
}

[data-theme="light"] {
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --border: rgba(168, 139, 42, 0.2);
  --border-strong: rgba(168, 139, 42, 0.4);
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #B8860B;
  --gold-glow: rgba(184, 150, 12, 0.12);
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted: #86868b;
  --shadow: 0 16px 40px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body.rtl { font-family: 'Vazirmatn', 'Inter', system-ui, sans-serif; }
img { max-width: 100%; height: auto; display: block; user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.name-nowrap { white-space: nowrap; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(7,7,10,0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .header { background: rgba(255,255,255,0.85); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em;
  color: var(--text); flex-shrink: 0;
}
.logo-img { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 12px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--gold); background: var(--gold-glow); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.btn-icon:hover { border-color: var(--gold); box-shadow: 0 0 16px var(--gold-glow); }
.hamburger {
  display: none; width: 40px; height: 40px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--border); border-radius: 10px;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; transition: 0.25s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--bg-elevated); border-bottom: 1px solid var(--border);
  padding: 16px; flex-direction: column; gap: 4px; z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px; border-radius: 10px; color: var(--text-secondary); font-weight: 500;
}
.mobile-nav a:hover { background: var(--gold-glow); color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 980px; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s, border-color 0.2s;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0f !important; box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }
.btn-secondary {
  background: transparent; color: var(--text) !important;
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold) !important; background: var(--gold-glow); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* Hero */
.hero {
  min-height: 100vh; padding: calc(var(--header-h) + 48px) 0 80px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: center; width: min(1120px, 92%); margin: 0 auto;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; top: 15%; left: 50%; width: 60%; height: 50%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none; transform: translateX(-50%); z-index: 0;
}
.hero-content, .hero-visual { position: relative; z-index: 1; }
.badge {
  display: inline-block; padding: 8px 16px; border-radius: 980px;
  background: var(--gold-glow); border: 1px solid var(--border-strong);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem); font-weight: 700;
  line-height: 1.25; letter-spacing: -0.03em; margin-bottom: 18px;
  background: linear-gradient(180deg, var(--text) 30%, var(--gold-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .hero h1 {
  background: linear-gradient(180deg, #1d1d1f 40%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-content > p {
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 32px; max-width: 34em;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-frame {
  border-radius: 20px; padding: 3px;
  background: linear-gradient(145deg, var(--gold), transparent 55%, var(--gold-dark));
  box-shadow: 0 0 40px var(--gold-glow), var(--shadow);
}
.hero-frame img {
  border-radius: 17px; width: 100%; background: #000;
  border: 1px solid rgba(0,0,0,0.4);
}

/* Sections */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 12px;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: var(--border-strong); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 24px var(--gold-glow);
  background: var(--bg-card-hover);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-glow); display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px; border: 1px solid var(--border);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

.showcase-main { margin-bottom: 28px; }
.showcase-full {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); cursor: pointer;
}
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.showcase-item { text-align: center; }
.showcase-img {
  width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--border);
  cursor: pointer; transition: box-shadow 0.3s;
}
.showcase-img:hover { box-shadow: 0 0 28px var(--gold-glow); }
.showcase-item p { margin-top: 12px; color: var(--text-secondary); font-size: 0.9rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0f; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.92rem; }

.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.guide-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 0 28px var(--gold-glow);
}
.guide-icon { font-size: 1.6rem; margin-bottom: 14px; }
.guide-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.guide-card p { color: var(--text-secondary); font-size: 0.9rem; }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 40px var(--gold-glow);
}
.price-card.popular::before {
  content: attr(data-badge); position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0a0a0f; font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 980px; white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.price { font-size: 2.4rem; font-weight: 700; color: var(--gold); margin: 12px 0; letter-spacing: -0.03em; }
.price-card .desc { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 20px; }
.price-features { margin-bottom: 28px; }
.price-features li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-secondary);
  padding-inline-start: 20px; position: relative;
}
.price-features li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 700;
}
.price-card .btn { width: 100%; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden; background: var(--bg-card);
}
.faq-question {
  width: 100%; text-align: start; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; font-size: 0.98rem; gap: 12px;
}
.faq-question:hover { color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s;
  color: var(--text-secondary); font-size: 0.92rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }
.faq-item.open .arrow { transform: rotate(180deg); }
.arrow { transition: transform 0.3s; color: var(--gold); }

.cta { padding-top: 40px; }
.cta-box {
  text-align: center; padding: 64px 32px;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border-strong); border-radius: 24px;
  box-shadow: 0 0 60px var(--gold-glow);
}
.cta-logo { width: 64px; height: 64px; margin: 0 auto 20px; }
.cta-box h2 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-box p { color: var(--text-secondary); margin-bottom: 28px; max-width: 32em; margin-left: auto; margin-right: auto; }

/* Footer */
.footer {
  border-top: 1px solid var(--border); padding: 64px 0 32px;
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin: 14px 0; max-width: 280px; }
.footer-dev { font-size: 0.85rem !important; color: var(--text-muted) !important; }
.footer h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 16px; font-weight: 600;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-secondary); font-size: 0.92rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all 0.25s;
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 16px var(--gold-glow); }
.social-icons svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
.footer-actions { display: flex; gap: 8px; }

/* Support float — real Telegram style */
.support-float {
  position: fixed; bottom: 28px; inset-inline-start: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #229ED9; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.support-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 32px rgba(34, 158, 217, 0.55); }
.support-float svg { width: 28px; height: 28px; fill: #fff; }

.back-top {
  position: fixed; bottom: 28px; inset-inline-end: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #0a0a0f; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold-light); }

/* Pages */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 40px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.03em; }
.page-content { padding: 48px 0 80px; max-width: 800px; margin: 0 auto; width: min(800px, 92%); }
.page-content h2 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--gold); }
.page-content p, .page-content li { color: var(--text-secondary); margin-bottom: 10px; line-height: 1.75; }
.page-content ul, .page-content ol { padding-inline-start: 22px; margin-bottom: 16px; }
.page-content li { list-style: disc; }
.page-content .note {
  background: var(--gold-glow); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 14px 16px; margin: 20px 0;
  color: var(--text); font-size: 0.92rem;
}

/* Auth & Dashboard */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 40px;
}
.auth-card {
  width: 100%; max-width: 420px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px;
  box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 1.45rem; text-align: center; margin-bottom: 8px; letter-spacing: -0.02em; }
.auth-card .sub { color: var(--text-secondary); text-align: center; margin-bottom: 28px; font-size: 0.92rem; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 6px; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 14px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg-elevated);
  color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow);
}
.auth-divider { text-align: center; color: var(--text-muted); margin: 18px 0; font-size: 0.85rem; position: relative; }
.auth-note { text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }
.dash-wrap { padding: calc(var(--header-h) + 40px) 0 80px; }
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 28px; }
.dash-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.25s, box-shadow 0.25s;
}
.dash-card:hover { border-color: var(--border-strong); box-shadow: 0 0 24px var(--gold-glow); }
.dash-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.dash-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 14px; }
.license-box {
  font-family: ui-monospace, monospace; background: var(--bg-elevated);
  border: 1px dashed var(--border-strong); border-radius: 10px; padding: 12px;
  color: var(--gold); font-size: 0.88rem; word-break: break-all;
}
.profile-form { max-width: 480px; margin-top: 12px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 20px; padding: 32px 28px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow); max-height: 90vh; overflow-y: auto;
}
.modal h3 { margin-bottom: 16px; font-size: 1.2rem; }
.disclaimer-box { margin-bottom: 16px; }
.modal-close {
  display: block; width: 100%; margin-top: 12px; padding: 12px;
  color: var(--text-secondary); border-radius: 10px;
}
.modal-close:hover { background: var(--gold-glow); color: var(--gold); }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 95%; max-height: 90vh; border-radius: 12px; border: 1px solid var(--border); }
.lightbox-close {
  position: absolute; top: 20px; inset-inline-end: 24px;
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card);
  border: 1px solid var(--border); font-size: 1.2rem;
}

.settings-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.settings-layout img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); position: sticky; top: 90px; cursor: pointer; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.video-thumb {
  aspect-ratio: 16/9; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold); border-bottom: 1px solid var(--border);
}
.video-card .body { padding: 16px; }
.video-card h3 { font-size: 1rem; margin-bottom: 6px; }
.video-card p { color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--header-h) + 32px); }
  .features-grid, .steps, .guides-grid, .video-grid { grid-template-columns: 1fr; }
  .showcase-grid, .pricing-grid, .settings-layout, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .settings-layout img { position: static; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

.support-float{bottom:100px!important;}
.back-top{bottom:100px!important;}
.cta-logo{width:120px!important;height:120px!important;object-fit:contain;}
.icon-lux{width:52px;height:52px;border-radius:14px;background:linear-gradient(145deg,rgba(212,175,55,.18),rgba(212,175,55,.05));border:1px solid var(--border-strong);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.icon-lux svg{width:24px;height:24px;fill:var(--gold);}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;}
.gallery-item{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;overflow:hidden;}
.gallery-item img{width:100%;cursor:pointer;}
.support-float{bottom:100px!important;}
.back-top{bottom:100px!important;}
.cta-logo{width:120px!important;height:120px!important;object-fit:contain;}
.icon-lux{width:52px;height:52px;border-radius:14px;background:linear-gradient(145deg,rgba(212,175,55,.18),rgba(212,175,55,.05));border:1px solid var(--border-strong);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.icon-lux svg{width:24px;height:24px;fill:var(--gold);}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;}
.gallery-item{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;overflow:hidden;}
.gallery-item img{width:100%;cursor:pointer;}
.gallery-item p{padding:14px;text-align:center;color:var(--text-secondary);font-size:.9rem;}
.showcase-item{display:flex;flex-direction:column;align-items:center;}
.showcase-item p{min-height:2.6em;text-align:center;}


/* === v1.1 === */
html, body { max-width: 100%; overflow-x: hidden; }
.hero h1, .hero p, .hero-content { overflow-wrap: anywhere; word-break: break-word; max-width: 100%; }
.hero-content { min-width: 0; }
.logo span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: min(52vw, 220px);
}
@media (max-width: 960px) {
  .header-actions .btn-sm.header-login { display: none !important; }
  .logo span { max-width: min(48vw, 180px); font-size: 0.92rem; }
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  /* guides 2 columns on tablet/mobile */
  .guides-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }
}
@media (max-width: 420px) {
  .logo span { max-width: min(42vw, 140px); font-size: 0.85rem; }
  .guides-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .guide-card { padding: 18px 14px; }
  .guide-card h3 { font-size: 0.92rem; }
  .guide-card p { font-size: 0.8rem; }
}
/* desktop guides always 2x2 when 4 cards */
.guides-grid { grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
@media (min-width: 961px) {
  .guides-grid { grid-template-columns: 1fr 1fr; }
}
/* pricing cards equal height + buttons bottom aligned */
.pricing-grid { align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; height: 100%;
}
.price-card .btn { margin-top: auto; width: 100%; }
.price-features { flex: 1; }
/* showcase captions same level */
.showcase-grid { align-items: stretch; }
.showcase-item {
  display: flex; flex-direction: column; height: 100%;
}
.showcase-item .showcase-img { flex-shrink: 0; }
.showcase-item p {
  margin-top: auto; padding-top: 12px; min-height: 2.8em;
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center;
}
/* password eye */
.pass-wrap { position: relative; display: block; }
.pass-wrap input { width: 100%; padding-inline-end: 44px !important; }
.pass-eye {
  position: absolute; inset-inline-end: 10px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border: 0; background: transparent;
  cursor: pointer; font-size: 1rem; opacity: 0.75; line-height: 1;
}
.pass-eye:hover { opacity: 1; }
.auth-links { text-align: center; margin-top: 12px; font-size: 0.9rem; }
.auth-links a { color: var(--gold); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--border); padding: 10px 8px; text-align: start; vertical-align: middle;
}
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0; }
.admin-stat {
  text-align: center; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px;
}
.admin-stat .num { font-size: 1.4rem; font-weight: 700; color: var(--gold); }


/* === v1.3 mobile + gallery + support gold === */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.support-float {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0f !important; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px var(--gold-glow); border: none;
}
.support-float svg { width: 26px; height: 26px; fill: #0a0a0f; }
.support-float:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--gold-glow); }
.back-top {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  color: var(--gold); opacity: 0; transition: opacity .25s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item { margin: 0; }
.gallery-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.gallery-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; cursor: pointer;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.video-card:hover { border-color: var(--gold); box-shadow: 0 0 24px var(--gold-glow); }
.video-thumb {
  aspect-ratio: 16 / 9; background: #0a0a0f;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold); border-bottom: 1px solid var(--border);
}
.video-card .body { padding: 16px 18px 20px; }
.video-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.video-card p { color: var(--text-secondary); font-size: 0.9rem; }

@media (max-width: 960px) {
  .header-actions .btn-sm.header-login { display: none !important; }
  .hamburger { display: flex !important; }
  .nav { display: none !important; }
  .logo span { max-width: min(46vw, 170px); font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero { grid-template-columns: 1fr !important; min-height: auto; padding-top: calc(var(--header-h) + 28px); gap: 28px; }
  .features-grid, .steps, .guides-grid { grid-template-columns: 1fr 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .gallery-grid, .video-grid { grid-template-columns: 1fr 1fr !important; }
  .showcase-grid { grid-template-columns: 1fr !important; }
  .dash-grid { grid-template-columns: 1fr !important; }
  .admin-stats { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .features-grid, .steps, .guides-grid, .footer-grid, .gallery-grid, .video-grid { grid-template-columns: 1fr !important; }
  .container { width: 94%; }
  .hero h1 { font-size: 1.45rem; }
  .support-float { bottom: 16px; inset-inline-end: 14px; width: 48px; height: 48px; }
  .back-top { bottom: 16px; inset-inline-start: 14px; }
  section { padding: 56px 0; }
}


/* === v1.4 === */
.support-float {
  position: fixed !important;
  bottom: 88px !important;
  inset-inline-end: 18px !important;
  z-index: 950 !important;
  width: 52px !important; height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) !important;
  box-shadow: 0 8px 28px var(--gold-glow) !important;
  display: flex !important; align-items: center; justify-content: center;
}
.support-float svg { width: 26px; height: 26px; fill: #0a0a0f; }
.back-top {
  position: fixed !important;
  bottom: 24px !important;
  inset-inline-end: 18px !important;
  inset-inline-start: auto !important;
  z-index: 940 !important;
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border-strong) !important;
  color: var(--gold) !important;
  opacity: 0;
  transition: opacity .25s;
  display: flex !important; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
}
.back-top.show, .back-top[style*="opacity: 1"] { opacity: 1 !important; }

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
.gallery-frame {
  width: 100%;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #000;
}
.gallery-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #0a0a0f;
}

@media (max-width: 960px) {
  .nav { display: none !important; }
  .hamburger { display: flex !important; }
  .header-actions .header-login { display: none !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero { grid-template-columns: 1fr !important; }
  .features-grid, .guides-grid, .steps { grid-template-columns: 1fr 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .dash-grid { grid-template-columns: 1fr !important; }
  .video-grid { grid-template-columns: 1fr !important; }
  .support-float { bottom: 80px !important; inset-inline-end: 14px !important; }
  .back-top { bottom: 18px !important; inset-inline-end: 14px !important; }
}
@media (max-width: 560px) {
  .gallery-grid, .features-grid, .guides-grid, .steps, .footer-grid { grid-template-columns: 1fr !important; }
  .logo span { max-width: 42vw; font-size: 0.85rem; }
  html, body { overflow-x: hidden; }
}


/* ========== v1.7 CLEAN (do not break vars) ========== */
.btn-primary {
  background: linear-gradient(135deg, #FFE44D 0%, #FFD700 45%, #E6C200 100%) !important;
  color: #1a1400 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35) !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FFF066, #FFD700) !important;
  transform: translateY(-2px);
}

.pass-wrap { position: relative; width: 100%; display: block; }
.pass-wrap input { width: 100% !important; padding-inline-end: 48px !important; box-sizing: border-box; }
.pass-eye {
  position: absolute; inset-inline-end: 12px; top: 50%; transform: translateY(-50%);
  background: transparent !important; border: 0 !important; cursor: pointer;
  font-size: 1.15rem; line-height: 1; z-index: 5; padding: 4px;
  color: #fff !important; opacity: 1 !important;
}
[data-theme="light"] .pass-eye { color: #000 !important; }

/* Support float — fixed size, never expand */
a.support-float,
.support-float {
  position: fixed !important;
  bottom: 88px !important;
  right: 16px !important;
  left: auto !important;
  z-index: 980 !important;
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #FFE44D, #FFD700, #E6C200) !important;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
  border: none !important;
  line-height: 0 !important;
  font-size: 0 !important;
  text-decoration: none !important;
}
a.support-float svg,
.support-float svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  fill: #1a1400 !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.back-top,
#back-top {
  position: fixed !important;
  bottom: 88px !important;
  left: 16px !important;
  right: auto !important;
  z-index: 980 !important;
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 50% !important;
  background: #14141c !important;
  border: 1px solid #FFD700 !important;
  color: #FFD700 !important;
  opacity: 0;
  pointer-events: none;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer;
  transition: opacity .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.back-top.visible,
.back-top.show,
#back-top.visible,
#back-top.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

html[dir="rtl"] a.support-float,
html[dir="rtl"] .support-float {
  right: auto !important;
  left: 16px !important;
}
html[dir="rtl"] .back-top,
html[dir="rtl"] #back-top {
  left: auto !important;
  right: 16px !important;
}

@media (max-width: 560px) {
  a.support-float, .support-float {
    bottom: 96px !important;
    width: 48px !important; height: 48px !important;
    max-width: 48px !important; max-height: 48px !important;
  }
  .back-top, #back-top {
    bottom: 96px !important;
    width: 44px !important; height: 44px !important;
  }
}

/* Modal above float buttons */
.modal-overlay, .modal, [class*="disclaimer"] {
  z-index: 2000 !important;
}


/* ========== v1.9 luxury gold + polish ========== */
:root, [data-theme="dark"] {
  --gold: #FFD700 !important;
  --gold-light: #FFE566 !important;
  --gold-dark: #E6C200 !important;
  --gold-deep: #C9A227 !important;
  --gold-glow: rgba(255, 215, 0, 0.45) !important;
}
[data-theme="light"] {
  --gold: #D4AF37 !important;
  --gold-light: #FFD700 !important;
  --gold-dark: #B8860B !important;
  --gold-glow: rgba(212, 175, 55, 0.25) !important;
}

/* Primary buttons — pure gold + soft shine */
.btn-primary,
a.btn-primary {
  background: linear-gradient(135deg, #FFF3A0 0%, #FFD700 40%, #E6C200 100%) !important;
  color: #1a1400 !important;
  border: none !important;
  box-shadow: 0 4px 22px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.35) !important;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s !important;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .5s;
}
.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.55), inset 0 1px 0 rgba(255,255,255,0.4) !important;
}
.btn-primary:hover::after { left: 120%; }

/* Cards soft gold edge */
.feature-card, .auth-card, .plan-card, .panel, .stat,
[class*="card"] {
  border-color: rgba(255, 215, 0, 0.22) !important;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.feature-card:hover, .plan-card:hover {
  border-color: rgba(255, 215, 0, 0.55) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 24px rgba(255, 215, 0, 0.12) !important;
  transform: translateY(-3px);
}

.logo span, .gold-text, h1 .gold { color: #FFD700 !important; }

/* Float buttons — fixed size, above footer */
a.support-float,
.support-float {
  position: fixed !important;
  bottom: 96px !important;
  right: 18px !important;
  left: auto !important;
  z-index: 980 !important;
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #FFF3A0, #FFD700, #E6C200) !important;
  box-shadow: 0 6px 22px rgba(255, 215, 0, 0.45) !important;
  border: none !important;
  line-height: 0 !important;
  font-size: 0 !important;
  text-decoration: none !important;
}
a.support-float svg,
.support-float svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  fill: #1a1400 !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.back-top,
#back-top {
  position: fixed !important;
  bottom: 96px !important;
  left: 18px !important;
  right: auto !important;
  z-index: 980 !important;
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 50% !important;
  background: #14141c !important;
  border: 1px solid #FFD700 !important;
  color: #FFD700 !important;
  opacity: 0;
  pointer-events: none;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer;
  transition: opacity .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.45);
}
.back-top.visible,
.back-top.show,
#back-top.visible,
#back-top.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

html[dir="rtl"] a.support-float,
html[dir="rtl"] .support-float {
  right: auto !important;
  left: 18px !important;
}
html[dir="rtl"] .back-top,
html[dir="rtl"] #back-top {
  left: auto !important;
  right: 18px !important;
}

@media (max-width: 560px) {
  a.support-float, .support-float {
    bottom: 100px !important;
    width: 48px !important; height: 48px !important;
    max-width: 48px !important; max-height: 48px !important;
  }
  .back-top, #back-top {
    bottom: 100px !important;
    width: 44px !important; height: 44px !important;
  }
}

/* Images: no forced crop */
img { max-width: 100%; height: auto; }
.logo-img { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; }

/* Homepage feature/showcase frames only */
.home-frame,
.features-grid img,
.showcase-grid img,
.index-gallery img,
section.features img,
.feature-shot img {
  border: 1px solid rgba(255, 215, 0, 0.55) !important;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.12), 0 8px 28px rgba(0,0,0,0.25);
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0a0f;
}


/* Pass eye */
.pass-wrap { position: relative; width: 100%; display: block; }
.pass-wrap input { width: 100% !important; padding-inline-end: 48px !important; box-sizing: border-box; }
.pass-eye {
  position: absolute; inset-inline-end: 12px; top: 50%; transform: translateY(-50%);
  background: transparent !important; border: 0 !important; cursor: pointer;
  font-size: 1.15rem; line-height: 1; z-index: 5; padding: 4px;
  color: #fff !important; opacity: 1 !important;
}
[data-theme="light"] .pass-eye { color: #000 !important; }

.modal-overlay, .modal, [class*="disclaimer"] { z-index: 2000 !important; }

/* v1.10 float buttons match */
a.support-float, .support-float {
  background: #14141c !important;
  border: 1px solid rgba(255, 215, 0, 0.65) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.45) !important;
}
a.support-float svg, .support-float svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  fill: #FFD700 !important;
}
.back-top, #back-top {
  background: #14141c !important;
  border: 1px solid rgba(255, 215, 0, 0.65) !important;
  color: #FFD700 !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.back-top svg, #back-top svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #FFD700 !important;
  stroke-width: 2.5 !important;
  fill: none !important;
}

/* notif bell */
.notif-wrap { position: relative; display: inline-flex; }
.notif-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.45); background: transparent;
  color: #FFD700; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.notif-badge {
  position: absolute; top: 2px; inset-inline-end: 2px;
  min-width: 16px; height: 16px; border-radius: 8px;
  background: #e11; color: #fff; font-size: 10px; line-height: 16px; text-align: center;
  padding: 0 4px; display: none;
}
.notif-badge.show { display: block; }
.notif-panel {
  display: none; position: absolute; top: 48px; inset-inline-end: 0;
  width: min(320px, 90vw); max-height: 360px; overflow: auto;
  background: #12121a; border: 1px solid rgba(255,215,0,0.25); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5); z-index: 1200; padding: 8px 0;
}
.notif-panel.open { display: block; }
.notif-item {
  padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: .88rem; color: #e5e5e5;
}
.notif-item:last-child { border-bottom: 0; }
.notif-item time { display: block; font-size: .75rem; opacity: .55; margin-top: 4px; }
.notif-empty { padding: 16px; text-align: center; opacity: .6; font-size: .9rem; }

/* v1.10 FINAL image overrides — no crop */
.hero-visual img,
.showcase-img,
.gallery-item img,
[data-lightbox],
.features-grid img,
.showcase-grid img,
section.features img,
.feature-shot img,
.home-shots img,
.shots img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  height: auto !important;
  max-height: none !important;
}
.features-grid img,
.showcase-grid img,
section.features img,
.feature-shot img,
.home-shots img,
.shots img {
  border: 1px solid rgba(255, 215, 0, 0.55) !important;
  border-radius: 12px !important;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.12), 0 8px 28px rgba(0,0,0,0.25) !important;
}


/* ===== v1.11 ===== */
/* Gallery no crop */
.gallery-frame {
  aspect-ratio: auto !important;
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 215, 0, 0.5) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #0a0a0f !important;
}
.gallery-frame img,
.gallery-item img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}

/* Homepage equal frames */
.home-shots,
.shots-row,
.feature-shots,
.showcase-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  align-items: stretch !important;
}
@media (max-width: 700px) {
  .home-shots, .shots-row, .feature-shots, .showcase-grid {
    grid-template-columns: 1fr !important;
  }
}
.home-shots > *,
.shots-row > *,
.feature-shots > *,
.showcase-grid > .gallery-item,
.showcase-grid > figure {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
}
.home-shots img,
.shots-row img,
.feature-shots img,
.showcase-grid img {
  width: 100% !important;
  height: 280px !important;
  object-fit: contain !important;
  background: #0a0a0f !important;
  border: 1px solid rgba(255, 215, 0, 0.55) !important;
  border-radius: 12px !important;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.1) !important;
}

/* Feature icons modern */
.feature-card .icon,
.features .icon,
.feature-icon,
.f-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  background: rgba(255, 215, 0, 0.06) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFD700 !important;
  font-size: 1.25rem !important;
  margin-bottom: 12px !important;
}
.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  background: #12121a !important;
  padding: 22px 18px !important;
  transition: border-color .25s, box-shadow .25s;
}
.feature-card:hover {
  border-color: rgba(255, 215, 0, 0.45) !important;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.08) !important;
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.plan-card {
  background: #12121a;
  border: 1px solid rgba(255,215,0,0.22);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.plan-card.featured {
  border-color: rgba(255,215,0,0.65);
  box-shadow: 0 0 28px rgba(255,215,0,0.12);
}
.plan-card h3 { color: #FFD700; margin-bottom: 8px; font-size: 1.05rem; }
.plan-card .price { font-size: 1.35rem; font-weight: 700; margin: 10px 0; }
.plan-card ul { text-align: right; font-size: .88rem; line-height: 1.7; opacity: .9; margin: 12px 0; padding-right: 18px; }
.plan-card .btn { width: 100%; margin-top: 8px; }

/* Auth nav state */
.nav-user-link { color: #FFD700 !important; border-color: rgba(255,215,0,.5) !important; }


/* v1.12 notif mobile + social + gallery */
.notif-panel {
  position: fixed !important;
  top: calc(var(--header-h, 64px) + 8px) !important;
  inset-inline-end: 10px !important;
  inset-inline-start: auto !important;
  width: min(320px, calc(100vw - 20px)) !important;
  max-width: calc(100vw - 20px) !important;
  max-height: min(60vh, 360px) !important;
  z-index: 3000 !important;
  right: 10px;
  left: auto;
}
html[dir="rtl"] .notif-panel {
  left: 10px !important;
  right: auto !important;
  inset-inline-end: auto !important;
  inset-inline-start: 10px !important;
}
.notif-wrap { position: relative; z-index: 3001; }
@media (max-width: 640px) {
  .notif-panel {
    top: calc(var(--header-h, 56px) + 6px) !important;
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    inset-inline-start: 8px !important;
    inset-inline-end: 8px !important;
    left: 8px !important;
    right: 8px !important;
  }
}
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,215,0,0.35);
  background: rgba(255,215,0,0.06);
}
.social-icons a svg { width: 18px; height: 18px; fill: #FFD700; }
.gallery-frame, .gallery-frame img, .gallery-item img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  height: auto !important;
  max-height: none !important;
}


/* v1.13 icon dim/hover glow */
.social-icons a,
.btn-icon,
.support-float,
.feature-card .icon,
.feature-icon,
.f-icon,
.notif-btn {
  opacity: 0.55 !important;
  filter: grayscale(0.15) brightness(0.9);
  transition: opacity .25s, filter .25s, transform .25s, box-shadow .25s, border-color .25s !important;
}
.social-icons a:hover,
.btn-icon:hover,
.support-float:hover,
.feature-card:hover .icon,
.feature-card:hover .feature-icon,
.notif-btn:hover {
  opacity: 1 !important;
  filter: none;
}
.social-icons a {
  background: transparent !important;
  border-color: rgba(255,215,0,0.25) !important;
}
.social-icons a:hover {
  border-color: rgba(255,215,0,0.75) !important;
  box-shadow: 0 0 14px rgba(255,215,0,0.25);
}
.social-icons a svg { fill: #FFD700 !important; opacity: 1; }

/* footer column titles */
.footer h4,
.footer-grid h4 {
  font-weight: 800 !important;
  font-size: 1rem !important;
  color: #FFD700 !important;
  letter-spacing: 0.02em;
}

/* power / auth icon button */
.btn-power,
a.btn-power {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,215,0,0.45);
  background: transparent;
  color: #FFD700;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .25s, box-shadow .25s;
}
.btn-power:hover { opacity: 1; box-shadow: 0 0 12px rgba(255,215,0,0.3); }
.btn-power svg { width: 18px; height: 18px; stroke: #FFD700; fill: none; stroke-width: 2; }

a.nav-login-graphic {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,215,0,0.45);
  color: #FFD700; text-decoration: none;
  opacity: 0.7;
}
a.nav-login-graphic:hover { opacity: 1; }
a.nav-login-graphic svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
