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

:root { --glossy-accent: #22d3ee; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #fff;
  background-color: #020617;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% -10%, rgba(139,92,246,0.28), transparent 60%),
    radial-gradient(ellipse 60% 45% at 90% 5%, rgba(6,182,212,0.20), transparent 60%),
    radial-gradient(ellipse 65% 55% at 50% 105%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(217,70,239,0.12), transparent 60%);
  background-attachment: fixed, fixed, fixed, fixed;
  background-repeat: no-repeat;
  position: relative;
}
html.glossy-theme-custom body {
  background-color: color-mix(in srgb, var(--glossy-accent) 8%, #020617);
  background-image:
    radial-gradient(ellipse 70% 50% at 15% -10%, color-mix(in srgb, var(--glossy-accent) 48%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 45% at 90% 5%, color-mix(in srgb, var(--glossy-accent) 36%, transparent), transparent 60%),
    radial-gradient(ellipse 65% 55% at 50% 105%, color-mix(in srgb, var(--glossy-accent) 32%, transparent), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, color-mix(in srgb, var(--glossy-accent) 24%, transparent), transparent 60%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 10% 15%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 25% 60%, #fff, transparent),
    radial-gradient(1.8px 1.8px at 40% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 55% 80%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1.2px 1.2px at 85% 55%, #fff, transparent),
    radial-gradient(1.8px 1.8px at 95% 85%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.2px 1.2px at 5% 90%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 65% 5%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 30% 95%, rgba(255,255,255,0.8), transparent);
  background-repeat: repeat;
  background-size: 260px 260px;
  opacity: 0.55;
  animation: glossy-stars-twinkle 6s ease-in-out infinite alternate;
}
@keyframes glossy-stars-twinkle {
  from { opacity: 0.35; }
  to { opacity: 0.7; }
}
a { text-decoration: none; color: inherit; }

/* ===================== HEADER ===================== */
.glossy-header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(15,23,42,0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.glossy-header-wrap button { background: none; border: none; cursor: pointer; font-family: inherit; }
.glossy-nav { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.glossy-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.glossy-logo { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.glossy-logo-icon { width: 68px; height: 68px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.glossy-logo-icon span { font-weight: 700; color: #fff; font-size: 14px; }
.glossy-logo-text { font-weight: 700; font-size: 20px; color: #fff; }
.glossy-logo-text .cyan, .glossy-footer-logo-text .cyan { color: var(--glossy-accent, #22d3ee); }
.glossy-nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .glossy-nav-links { display: flex; } }
.glossy-nav-links a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: #cbd5e1; border-radius: 8px; transition: all 0.2s; }
.glossy-nav-links a:hover { color: #fff; background: rgba(51,65,85,0.5); }
.glossy-nav-links a.active { color: var(--glossy-accent, #22d3ee); background: color-mix(in srgb, var(--glossy-accent, #22d3ee) 12%, transparent); }
.glossy-nav-right { display: flex; align-items: center; gap: 10px; }

.glossy-dropdown { position: relative; }
.glossy-dropdown-trigger { display: flex; align-items: center; gap: 6px; padding: 8px 16px; font-size: 14px; font-weight: 500; color: #cbd5e1; border-radius: 8px; background: none; border: none; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.glossy-dropdown-trigger:hover { color: #fff; background: rgba(51,65,85,0.5); }
.glossy-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 160px; background: #0f172a; border: 1px solid #1e293b; border-radius: 12px; padding: 8px; margin-top: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); z-index: 20; }
.glossy-dropdown:hover .glossy-dropdown-menu { display: block; }
.glossy-dropdown-menu a { display: block; padding: 8px 12px; font-size: 14px; color: #cbd5e1; border-radius: 8px; }
.glossy-catalog-menu { grid-template-columns: repeat(2, 1fr); gap: 8px; min-width: 260px; padding: 10px; }
.glossy-catalog-item.glossy-catalog-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 10px; text-align: center; background: rgba(148,163,184,0.06); border: 1px solid #1e293b; border-radius: 12px; transition: border-color 0.15s, transform 0.15s; }
.glossy-catalog-item:hover { border-color: var(--glossy-accent, #22d3ee); transform: translateY(-2px); }
.glossy-catalog-item img { width: 32px; height: 32px; object-fit: contain; }
.glossy-catalog-item span { color: #fff; font-weight: 700; font-size: 12.5px; }
.glossy-dropdown-menu a:hover { color: #fff; background: rgba(51,65,85,0.5); }

.glossy-search { display: none; align-items: center; gap: 8px; background: rgba(15,23,42,0.6); border: 1px solid #1e293b; border-radius: 999px; padding: 8px 16px; flex: 1; max-width: 360px; margin: 0 16px; color: #64748b; }
.glossy-search input { background: none; border: none; outline: none; color: #fff; font-size: 14px; width: 100%; font-family: inherit; }
.glossy-search input::placeholder { color: #64748b; }
@media (min-width: 1024px) { .glossy-search { display: flex; } }

.glossy-icon-btn { display: none; width: 38px; height: 38px; border-radius: 50%; align-items: center; justify-content: center; color: #cbd5e1; background: rgba(51,65,85,0.3); transition: all 0.2s; flex-shrink: 0; }
.glossy-icon-btn:hover { color: #fff; background: rgba(51,65,85,0.6); }
@media (min-width: 768px) { .glossy-icon-btn { display: flex; } }

.glossy-orders-btn { display: none; align-items: center; gap: 6px; padding: 10px 16px; font-size: 14px; font-weight: 600; color: #cbd5e1; background: rgba(51,65,85,0.3); border-radius: 12px; transition: all 0.2s; white-space: nowrap; }
.glossy-orders-btn:hover { color: #fff; background: rgba(51,65,85,0.6); }
@media (min-width: 900px) { .glossy-orders-btn { display: flex; } }

.glossy-avatar-circle { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; display: inline-block; flex-shrink: 0; vertical-align: middle; background: #1a2132; }
.glossy-avatar-circle.lg { width: 44px; height: 44px; }
.glossy-avatar-circle.nav { width: 40px; height: 40px; }

.glossy-avatar-btn { display: none; padding: 0; background: none; border: none; cursor: pointer; border-radius: 50%; line-height: 0; transition: box-shadow 0.2s; }
@media (min-width: 768px) { .glossy-avatar-btn { display: inline-flex; } }
.glossy-avatar-btn:hover { box-shadow: 0 0 0 2px rgba(34,211,238,0.5); }

.glossy-user-dropdown .glossy-dropdown-menu { left: auto; right: 0; min-width: 240px; padding: 8px; }
.glossy-user-dropdown:hover .glossy-dropdown-menu { display: none; }
.glossy-user-dropdown.open .glossy-dropdown-menu { display: block; }
.glossy-user-menu-header { display: flex; align-items: center; gap: 12px; padding: 10px 12px 14px; border-bottom: 1px solid #1e293b; margin-bottom: 8px; }
.glossy-user-menu-name { color: #fff; font-weight: 700; font-size: 14px; }
.glossy-user-menu-email { color: #64748b; font-size: 12px; margin-top: 2px; }
.glossy-user-menu-level { background: rgba(148,163,184,0.08); border: 1px solid #232b3d; border-radius: 10px; padding: 8px 10px; margin: 10px 0; }
.glossy-user-menu-level-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.glossy-user-menu-level-left { display: flex; align-items: center; gap: 8px; color: #e2e8f0; font-size: 12.5px; font-weight: 700; }
.glossy-user-menu-level-left img { width: 20px; height: 20px; object-fit: contain; }
.glossy-user-menu-level-badge { border: 1px solid; border-radius: 999px; padding: 3px 10px; font-size: 10.5px; font-weight: 800; }
.glossy-user-menu-level-bar { height: 5px; border-radius: 999px; background: rgba(148,163,184,0.15); overflow: hidden; margin-top: 8px; }
.glossy-user-menu-level-bar-fill { height: 100%; border-radius: 999px; }
.glossy-user-menu-level-sub { color: #64748b; font-size: 11px; margin-top: 6px; }
.glossy-user-menu a { display: flex; align-items: center; gap: 10px; }
.glossy-user-menu-label { color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 12px 6px; }
.glossy-dropdown-divider { height: 1px; background: #1e293b; margin: 6px 4px; }

.glossy-theme-toggle-row { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 8px 12px; background: none; border: none; cursor: pointer; border-radius: 8px; color: #cbd5e1; font-size: 14px; transition: background 0.15s; }
.glossy-theme-toggle-row:hover { background: rgba(51,65,85,0.4); }
.glossy-theme-label { display: flex; align-items: center; gap: 10px; }
.glossy-theme-right { display: flex; align-items: center; gap: 8px; }
.glossy-theme-auto-label { color: #64748b; font-size: 12px; }
.glossy-theme-switch { position: relative; width: 34px; height: 20px; border-radius: 999px; background: #334155; transition: background 0.2s; flex-shrink: 0; }
.glossy-theme-switch .glossy-theme-switch-knob { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform 0.2s; }
.glossy-theme-switch.on { background: #3b82f6; }
.glossy-theme-switch.on .glossy-theme-switch-knob { transform: translateX(14px); }
.glossy-theme-chevron { transition: transform 0.2s; color: #64748b; }
.glossy-theme-swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; padding: 10px 12px 6px; }
.glossy-theme-swatches[hidden] { display: none; }
.glossy-theme-swatch { width: 28px; height: 28px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.15s; }
.glossy-theme-swatch:hover { transform: scale(1.1); }
.glossy-theme-swatch-check { opacity: 0; }
.glossy-theme-swatch.active .glossy-theme-swatch-check { opacity: 1; }

.glossy-currency-trigger { display: none; align-items: center; gap: 6px; padding: 7px 12px; font-size: 13px; font-weight: 600; color: #cbd5e1; background: rgba(51,65,85,0.3); border: none; border-radius: 999px; cursor: pointer; font-family: inherit; transition: all 0.2s; white-space: nowrap; }
@media (min-width: 640px) { .glossy-currency-trigger { display: flex; } }
.glossy-currency-trigger:hover { color: #fff; background: rgba(51,65,85,0.6); }
.glossy-currency-flag svg { width: 20px; height: 20px; border-radius: 50%; display: block; object-fit: cover; }
.glossy-currency-code { color: #fff; }
.glossy-currency-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); margin: 0 2px; }
.glossy-currency-dropdown .glossy-dropdown-menu { left: auto; right: 0; display: none; flex-direction: row; gap: 4px; padding: 14px; min-width: 400px; }
.glossy-currency-dropdown:hover .glossy-dropdown-menu { display: none; }
.glossy-currency-dropdown.open .glossy-dropdown-menu { display: flex; }
.glossy-catalog-dropdown:hover .glossy-dropdown-menu { display: grid; }
.glossy-currency-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.glossy-currency-col:first-child { border-right: 1px solid #1e293b; padding-right: 12px; }
.glossy-currency-col:last-child { padding-left: 2px; }
.glossy-currency-col-title { color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 10px 8px; }
.glossy-currency-menu form { margin: 0; }
.glossy-currency-option { display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 10px; background: none; border: none; border-radius: 8px; color: #cbd5e1; font-size: 13px; font-family: inherit; cursor: pointer; text-align: left; white-space: nowrap; }
.glossy-currency-option:hover { color: #fff; background: rgba(51,65,85,0.5); }
.glossy-currency-option.active { color: #fff; font-weight: 700; background: var(--glossy-accent, #2563eb); }
.glossy-currency-option-label { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.glossy-currency-option-code { color: #64748b; font-weight: 400; font-size: 11px; flex-shrink: 0; }
.glossy-currency-option.active .glossy-currency-option-code { color: rgba(255,255,255,0.75); }
@media (max-width: 480px) { .glossy-currency-dropdown .glossy-dropdown-menu { flex-direction: column; min-width: 220px; } .glossy-currency-col:first-child { border-right: none; border-bottom: 1px solid #1e293b; padding-right: 0; padding-bottom: 8px; } }

.glossy-notif-badge { position: absolute; top: -2px; right: -2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: #f87171; color: #fff; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #0f172a; }
.glossy-notif-dropdown .glossy-dropdown-menu { left: auto; right: 0; width: 385px; max-width: 90vw; max-height: 440px; padding: 0; display: none; flex-direction: column; overflow: hidden; }
.glossy-notif-dropdown:hover .glossy-dropdown-menu { display: none; }
.glossy-notif-dropdown.open .glossy-dropdown-menu { display: flex; }

.glossy-notif-menu-header { color: #fff; font-weight: 700; font-size: 14px; padding: 14px 16px; border-bottom: 1px solid #1e293b; flex-shrink: 0; }
.glossy-notif-list { overflow-y: auto; padding: 6px; }
.glossy-notif-list::-webkit-scrollbar { width: 6px; }
.glossy-notif-list::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 999px; }

.glossy-notif-item { display: block; position: relative; padding: 10px 30px 10px 10px; border-radius: 10px; }
.glossy-notif-item + .glossy-notif-item { margin-top: 2px; }
.glossy-notif-item:hover { background: rgba(148,163,184,0.06); }
.glossy-notif-item.unread { background: rgba(245,158,11,0.16); }
.glossy-notif-item-heading { display: flex; align-items: center; gap: 10px; }
.glossy-notif-item-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.glossy-notif-item-headtext { flex: 1; min-width: 0; }
.glossy-notif-item-close { position: absolute; top: 10px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: rgba(148,163,184,0.12); border: none; color: #94a3b8; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.15s; }
.glossy-notif-item:hover .glossy-notif-item-close { opacity: 1; }
.glossy-notif-item-close:hover { background: rgba(239,68,68,0.2); color: #f87171; }
.glossy-notif-item-label { color: #64748b; font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 2px; }
.glossy-notif-item-title { color: #fff; font-weight: 700; font-size: 13px; }
.glossy-notif-item-message { color: #94a3b8; font-size: 12px; margin-top: 4px; margin-left: 38px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.glossy-notif-item-time { position: absolute; top: 10px; right: 32px; color: #64748b; font-size: 11px; font-weight: 600; white-space: nowrap; }
.glossy-notif-empty { padding: 30px 12px; text-align: center; color: #64748b; font-size: 13px; }
.glossy-notif-confirm-overlay { display: none; position: absolute; inset: 0; background: rgba(9,12,20,0.7); border-radius: 14px; align-items: center; justify-content: center; z-index: 20; }
.glossy-notif-confirm-overlay.open { display: flex; }
.glossy-notif-confirm-box { background: #161c2c; border: 1px solid rgba(148,163,184,0.15); border-radius: 12px; padding: 18px; width: 85%; max-width: 260px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.glossy-notif-confirm-text { color: #fff; font-weight: 600; font-size: 14px; text-align: center; margin-bottom: 14px; }
.glossy-notif-confirm-actions { display: flex; gap: 10px; }
.glossy-notif-confirm-cancel, .glossy-notif-confirm-delete { flex: 1; border: none; border-radius: 8px; padding: 9px 0; font-size: 13px; font-weight: 600; cursor: pointer; }
.glossy-notif-confirm-cancel { background: rgba(148,163,184,0.15); color: #cbd5e1; }
.glossy-notif-confirm-cancel:hover { background: rgba(148,163,184,0.25); }
.glossy-notif-confirm-delete { background: rgba(239,68,68,0.18); color: #f87171; }
.glossy-notif-confirm-delete:hover { background: rgba(239,68,68,0.28); }
.glossy-notif-empty-tab { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 46px 20px; }
.glossy-notif-empty-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(148,163,184,0.08); color: #64748b; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.glossy-notif-empty-title { color: #fff; font-weight: 700; font-size: 14px; }
.glossy-notif-empty-subtitle { color: #64748b; font-size: 12.5px; margin-top: 6px; }

.glossy-notif-close { background: rgba(148,163,184,0.12); border: none; width: 24px; height: 24px; border-radius: 50%; color: #94a3b8; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-left: auto; }
.glossy-notif-close:hover { background: rgba(148,163,184,0.22); color: #fff; }
.glossy-notif-menu-header { display: flex; align-items: center; justify-content: space-between; }

.glossy-notif-tabs { display: flex; gap: 4px; padding: 8px 10px; border-bottom: 1px solid #1e293b; flex-shrink: 0; }
.glossy-notif-tab { flex: 1; padding: 7px 10px; background: none; border: none; border-radius: 8px; color: #94a3b8; font-size: 12.5px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.15s; }
.glossy-notif-tab:hover { color: #fff; background: rgba(148,163,184,0.08); }
.glossy-notif-tab.active { background: rgba(148,163,184,0.14); color: #fff; }

.glossy-notif-group + .glossy-notif-group { margin-top: 6px; }
.glossy-notif-group-label { color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 10px 4px; }

.glossy-auth-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--glossy-accent, #2563eb), color-mix(in srgb, var(--glossy-accent, #2563eb) 70%, white)) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600;
  border-radius: 12px !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--glossy-accent, #2563eb) 30%, transparent) !important;
  display: none;
  cursor: pointer;
  border: none !important;
  text-decoration: none !important;
  letter-spacing: 1px;
}
@media (min-width: 768px) { .glossy-auth-btn { display: inline-block; } }
.glossy-auth-btn:hover { background: linear-gradient(135deg, var(--glossy-accent, #2563eb), var(--glossy-accent, #2563eb)) !important; transform: translateY(-2px) !important; box-shadow: 0 6px 25px color-mix(in srgb, var(--glossy-accent, #2563eb) 40%, transparent) !important; }
.glossy-auth-btn:active { transform: scale(0.97) !important; }
.glossy-auth-btn.logged-in { background: linear-gradient(135deg, #1ec98d, #15b37a) !important; box-shadow: 0 4px 15px rgba(30, 201, 141, 0.3) !important; }
.glossy-auth-btn.logged-in:hover { background: linear-gradient(135deg, #1ec98d, #1ec98d) !important; box-shadow: 0 6px 25px rgba(30, 201, 141, 0.4) !important; }

.glossy-mobile-toggle { display: block; padding: 8px; color: #fff !important; transition: color 0.3s; }
.glossy-mobile-toggle:hover { color: var(--glossy-accent, #22d3ee); }
.glossy-mobile-toggle svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .glossy-mobile-toggle { display: none; } }
.glossy-mobile-menu { max-height: 0; overflow: hidden; padding: 0; border-top: none; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s ease, border 0.3s ease; }
.glossy-mobile-menu.open { max-height: 500px; padding: 16px 0; border-top: 1px solid #334155; }
.glossy-mobile-menu a { display: block; padding: 12px 16px; font-size: 16px; font-weight: 500; color: #cbd5e1; border-radius: 8px; transition: all 0.2s; }
.glossy-mobile-menu a:hover { color: #fff; background: rgba(51,65,85,0.5); }
.glossy-mobile-divider { height: 1px; background: #334155; margin: 8px 16px; }
.glossy-mobile-login { display: block; padding: 12px 16px; margin: 8px 16px; background: linear-gradient(135deg, var(--glossy-accent, #2563eb), color-mix(in srgb, var(--glossy-accent, #2563eb) 70%, white)) !important; color: #fff !important; font-size: 16px; font-weight: 600; border-radius: 12px; text-align: center; }
.glossy-mobile-user { display: block; padding: 12px 16px; margin: 8px 16px; color: #8a9bb5; font-size: 14px; font-weight: 500; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); text-align: center; }
.glossy-mobile-user .logout-link { color: #8a9bb5; font-size: 13px; margin-left: 10px; padding: 6px 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: transparent; font-weight: 600; cursor: pointer; }

/* ===================== PAGE CONTENT (glossy-wrap) ===================== */
.glossy-wrap { padding-top: 64px; background: #020617; } /* offset for fixed header; flat color so it doesn't fight the hero image fade */
html.glossy-theme-custom .glossy-wrap { background: color-mix(in srgb, var(--glossy-accent) 8%, #020617); }
.glossy-wrap .container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.glossy-wrap section { position: relative; }

.glossy-hero { min-height: 900px; display: flex; align-items: flex-start; overflow: hidden; position: relative; }
.glossy-hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, transparent 65%, #020617 100%), radial-gradient(ellipse at 50% 0%, rgba(11,19,48,0.75) 0%, rgba(5,8,16,0.45) 45%, transparent 85%), linear-gradient(180deg, color-mix(in srgb, var(--glossy-accent, #22d3ee) 7%, transparent) 0%, transparent 60%), linear-gradient(rgba(5,8,16,0.35), rgba(5,8,16,0.55)), url('/assets/img/hero-bg.png') center center/cover no-repeat; }
.glossy-hero-ambient-1 { position: absolute; top: -20%; left: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%); filter: blur(40px); }
.glossy-hero-ambient-2 { position: absolute; top: -15%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--glossy-accent, #22d3ee) 10%, transparent) 0%, transparent 70%); filter: blur(40px); }

.glossy-hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 4% 20%, #fff, transparent),
    radial-gradient(1px 1px at 9% 65%, #fff, transparent),
    radial-gradient(2px 2px at 14% 15%, #fff, transparent),
    radial-gradient(1px 1px at 19% 45%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 24% 78%, #fff, transparent),
    radial-gradient(1px 1px at 29% 25%, #fff, transparent),
    radial-gradient(2px 2px at 34% 55%, #fff, transparent),
    radial-gradient(1px 1px at 39% 12%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 44% 40%, #fff, transparent),
    radial-gradient(1px 1px at 49% 85%, #fff, transparent),
    radial-gradient(1px 1px at 54% 22%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 59% 60%, #fff, transparent),
    radial-gradient(1px 1px at 64% 8%, #fff, transparent),
    radial-gradient(2px 2px at 69% 48%, #fff, transparent),
    radial-gradient(1px 1px at 74% 78%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 79% 18%, #fff, transparent),
    radial-gradient(1px 1px at 84% 58%, #fff, transparent),
    radial-gradient(2px 2px at 89% 30%, #fff, transparent),
    radial-gradient(1px 1px at 94% 68%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 97% 10%, #fff, transparent),
    radial-gradient(1px 1px at 7% 92%, #fff, transparent),
    radial-gradient(1px 1px at 17% 5%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 27% 35%, #fff, transparent),
    radial-gradient(1px 1px at 37% 68%, #fff, transparent),
    radial-gradient(2px 2px at 47% 15%, #fff, transparent),
    radial-gradient(1px 1px at 57% 90%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 67% 32%, #fff, transparent),
    radial-gradient(1px 1px at 77% 60%, #fff, transparent),
    radial-gradient(1px 1px at 87% 8%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 92% 85%, #fff, transparent);
  background-repeat: no-repeat;
  opacity: 0.85;
  animation: glossyStarsTwinkle 4s ease-in-out infinite alternate;
}
@keyframes glossyStarsTwinkle { 0% { opacity: 0.6; } 100% { opacity: 1; } }

.glossy-hero-shooting { position: absolute; width: 22px; height: 22px; opacity: 0; }
.glossy-hero-shooting-icon { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 8px rgba(191,219,254,0.9)); }
.glossy-hero-shooting-trail { position: absolute; top: 50%; margin-top: -4px; right: 50%; width: 80px; height: 8px; transform-origin: right center; clip-path: polygon(0% 50%, 100% 0%, 100% 100%); background: linear-gradient(90deg, transparent 0%, rgba(191,219,254,0.25) 55%, rgba(224,240,255,0.9) 100%); filter: blur(1px); }
.glossy-hero-shooting.dir1 .glossy-hero-shooting-trail { transform: rotate(35deg); }
.glossy-hero-shooting.dir2 .glossy-hero-shooting-trail { transform: rotate(145deg); }

.glossy-hero-shooting-1 { top: 6%; left: 8%; animation: glossyShootingStar1 5.5s linear infinite; animation-delay: 0.5s; }
.glossy-hero-shooting-2 { top: 5%; right: 8%; animation: glossyShootingStar2 5.5s linear infinite; animation-delay: 3s; }
.glossy-hero-shooting-3 { top: 12%; left: 18%; width: 18px; height: 18px; animation: glossyShootingStar1 5.5s linear infinite; animation-delay: 5.6s; }
.glossy-hero-shooting-4 { top: 4%; right: 18%; width: 26px; height: 26px; animation: glossyShootingStar2 5.5s linear infinite; animation-delay: 2s; }
.glossy-hero-shooting-5 { top: 9%; left: 14%; width: 20px; height: 20px; animation: glossyShootingStar1 5.5s linear infinite; animation-delay: 4.2s; }
.glossy-hero-shooting-6 { top: 8%; right: 14%; width: 24px; height: 24px; animation: glossyShootingStar2 5.5s linear infinite; animation-delay: 1.2s; }
.glossy-hero-shooting-7 { top: 3%; right: 20%; width: 18px; height: 18px; animation: glossyShootingStar2 5.5s linear infinite; animation-delay: 3.4s; }
@keyframes glossyShootingStar1 {
  0% { opacity: 0; transform: translate(0, 0); }
  2% { opacity: 1; }
  15% { opacity: 0; transform: translate(150px, 105px); }
  100% { opacity: 0; }
}
@keyframes glossyShootingStar2 {
  0% { opacity: 0; transform: translate(0, 0); }
  2% { opacity: 1; }
  15% { opacity: 0; transform: translate(-150px, 105px); }
  100% { opacity: 0; }
}

.glossy-hero-planet-glow { display: none; position: absolute; left: 50%; bottom: -30px; width: 1300px; height: 340px; transform: translateX(-50%); background: radial-gradient(ellipse at 50% 100%, rgba(34,211,238,0.55) 0%, rgba(59,130,246,0.26) 40%, transparent 75%); filter: blur(35px); }
.glossy-hero-planet { display: none;
  position: absolute; left: 50%; bottom: -1440px; width: 1600px; height: 1600px; border-radius: 50%; transform: translateX(-50%);
  background: radial-gradient(circle at 42% 8%, #2d5686 0%, #123157 22%, #0c1a30 40%, #050b16 65%, #030509 100%);
  box-shadow: inset 60px 90px 160px rgba(0,0,0,0.6);
}
.glossy-hero-planet::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(147,197,253,0.65), 0 -8px 55px rgba(96,165,250,0.75), 0 -2px 18px rgba(224,242,254,0.5);
  -webkit-mask: linear-gradient(to bottom, #000 0%, transparent 6%);
  mask: linear-gradient(to bottom, #000 0%, transparent 6%);
}
.glossy-hero-planet::after {
  content: '';
  position: absolute; top: 1.2%; left: 30%; width: 45%; height: 2%; border-radius: 50%;
  background:
    radial-gradient(1.5px 1.5px at 10% 40%, rgba(251,191,36,0.9), transparent),
    radial-gradient(1px 1px at 25% 60%, rgba(251,191,36,0.7), transparent),
    radial-gradient(2px 2px at 40% 30%, rgba(251,191,36,0.9), transparent),
    radial-gradient(1px 1px at 55% 55%, rgba(251,191,36,0.6), transparent),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(251,191,36,0.85), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(251,191,36,0.6), transparent);
  filter: blur(0.3px);
}

.glossy-hero-content { position: relative; width: 100%; min-width: 0; max-width: 1280px; margin: 0 auto; padding: 190px 16px 80px; text-align: center; z-index: 1; }
.glossy-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: color-mix(in srgb, var(--glossy-accent, #06b6d4) 10%, transparent); border: 1px solid color-mix(in srgb, var(--glossy-accent, #06b6d4) 20%, transparent); border-radius: 999px; color: var(--glossy-accent, #22d3ee); font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.glossy-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.1; }
.glossy-hero h1 .gradient { background: linear-gradient(to right, var(--glossy-accent, #22d3ee), color-mix(in srgb, var(--glossy-accent, #22d3ee) 60%, #3b82f6)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.glossy-hero p { font-size: clamp(16px, 2vw, 20px); color: #94a3b8; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.glossy-btn-group { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 640px) { .glossy-btn-group { flex-direction: row; flex-wrap: wrap; } }
.glossy-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: linear-gradient(to right, var(--glossy-accent, #06b6d4), color-mix(in srgb, var(--glossy-accent, #06b6d4) 70%, black)); color: #fff; font-weight: 700; border: none; border-radius: 999px; transition: all 0.15s; cursor: pointer; }
.glossy-btn-primary:hover { filter: brightness(1.08); }
.glossy-hero-btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: linear-gradient(to right, #14b8a6, #6366f1); color: #fff; font-weight: 700; border: none; border-radius: 999px; transition: all 0.15s; cursor: pointer; box-shadow: 0 8px 24px rgba(99,102,241,0.35); }
.glossy-hero-btn:hover { filter: brightness(1.08); transform: translateY(-4px); box-shadow: 0 14px 28px rgba(99,102,241,0.45); }
.glossy-hero-btn::after { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-25deg); transition: left 0.6s ease; }
.glossy-hero-btn:hover::after { left: 125%; }
.glossy-hero-card-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; max-width: 720px; margin: 20px auto 0; }
.glossy-hero-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 20px 16px; background: rgba(15,23,42,0.6); border: 1px solid #1e293b; border-radius: 16px; text-decoration: none; transition: border-color 0.15s, transform 0.15s, background 0.15s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.glossy-hero-card:hover { border-color: var(--glossy-accent, #06b6d4); transform: translateY(-4px); background: rgba(15,23,42,0.85); }
.glossy-hero-card-imgwrap { height: 68px; display: flex; align-items: center; justify-content: center; }
.glossy-hero-card-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--glossy-accent, #06b6d4) 16%, transparent); color: var(--glossy-accent, #06b6d4); }
.glossy-hero-card-title { color: #fff; font-weight: 800; font-size: 15px; }
.glossy-hero-card-sub { color: var(--glossy-accent, #06b6d4); font-size: 12px; font-weight: 700; }
.glossy-btn-primary:focus, .glossy-btn-primary:focus-visible { outline: none; }
.glossy-btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: #1e293b; color: #fff; font-weight: 600; border-radius: 12px; border: 1px solid #334155; transition: all 0.3s; }
.glossy-btn-secondary:hover { background: #334155; border-color: #475569; }
.glossy-btn-diamantes { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: linear-gradient(to right, #2563eb, #8b5cf6); color: #fff; font-weight: 700; border: none; border-radius: 999px; transition: all 0.15s; cursor: pointer; }
.glossy-btn-diamantes:hover { filter: brightness(1.08); }
.glossy-btn-followers { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: linear-gradient(to right, #8b5cf6, #ec4899); color: #fff; font-weight: 700; border: none; border-radius: 999px; transition: all 0.15s; cursor: pointer; }
.glossy-btn-followers:hover { filter: brightness(1.08); }

.glossy-stats { margin-top: -40px; position: relative; z-index: 2; }
.glossy-stats-card { background: rgba(15,23,42,0.8); backdrop-filter: blur(20px); border: 1px solid rgba(51,65,85,0.5); border-radius: 16px; padding: 32px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.glossy-stats-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .glossy-stats-grid { grid-template-columns: repeat(3, 1fr); } }
.glossy-stat { display: flex; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .glossy-stat:not(:last-child) { border-right: 1px solid #334155; } }
.glossy-stat-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(59,130,246,0.2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.glossy-stat-icon svg { width: 24px; height: 24px; color: var(--glossy-accent, #22d3ee); }
.glossy-stat-icon.green { background: linear-gradient(135deg, rgba(30,201,141,0.25), rgba(6,182,212,0.15)); }
.glossy-stat-icon.green svg { color: #1ec98d; }
.glossy-stat-icon.yellow { background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(234,179,8,0.15)); }
.glossy-stat-icon.yellow svg { color: #f59e0b; }
.glossy-stat-icon.blue { background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(37,99,235,0.15)); }
.glossy-stat-icon.blue svg { color: #60a5fa; }
.glossy-stat-value { font-size: 28px; font-weight: 700; color: #fff; }
.glossy-stat-label { font-size: 14px; color: #94a3b8; }

.glossy-section-title { text-align: center; margin-bottom: 48px; }
.glossy-section-title h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.glossy-section-title p { color: #94a3b8; max-width: 640px; margin: 0 auto; }

.glossy-categories { padding: 80px 0; }
.glossy-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1024px) { .glossy-cat-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.glossy-cat-card { position: relative; overflow: hidden; border-radius: 16px; background: rgba(15,23,42,0.5); border: 1px solid #1e293b; transition: all 0.3s; display: block; }
.glossy-cat-card:hover { border-color: color-mix(in srgb, var(--glossy-accent, #06b6d4) 50%, transparent); transform: scale(1.05); }
.glossy-cat-card-inner { position: relative; padding: 24px; }
.glossy-cat-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--glossy-accent, #06b6d4), color-mix(in srgb, var(--glossy-accent, #06b6d4) 70%, #2563eb)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: transform 0.3s; }
.glossy-cat-card:hover .glossy-cat-icon { transform: scale(1.1); }
.glossy-cat-icon svg { width: 28px; height: 28px; color: #fff; }
.glossy-cat-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.glossy-cat-card p { font-size: 14px; color: #94a3b8; }
.glossy-cat-more { margin-top: 16px; display: flex; align-items: center; gap: 4px; color: var(--glossy-accent, #22d3ee); font-size: 14px; font-weight: 500; opacity: 0; transition: opacity 0.3s; }
.glossy-cat-card:hover .glossy-cat-more { opacity: 1; }

.glossy-why { padding: 80px 0; }
.glossy-why h2 .cyan { color: var(--glossy-accent, #22d3ee); }
.glossy-why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .glossy-why-grid { grid-template-columns: repeat(2, 1fr); } }
.glossy-why-card { background: rgba(15,23,42,0.5); border: 1px solid #1e293b; border-radius: 16px; padding: 24px; transition: all 0.3s; display: flex; gap: 16px; }
.glossy-why-card:hover { border-color: color-mix(in srgb, var(--glossy-accent, #06b6d4) 30%, transparent); background: rgba(15,23,42,0.8); }
.glossy-why-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, color-mix(in srgb, var(--glossy-accent, #06b6d4) 20%, transparent), color-mix(in srgb, var(--glossy-accent, #3b82f6) 20%, transparent)); border: 1px solid color-mix(in srgb, var(--glossy-accent, #06b6d4) 30%, transparent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.glossy-why-card:hover .glossy-why-icon { background: linear-gradient(135deg, var(--glossy-accent, #06b6d4), color-mix(in srgb, var(--glossy-accent, #06b6d4) 70%, #2563eb)); }
.glossy-why-icon svg { width: 24px; height: 24px; color: var(--glossy-accent, #22d3ee); transition: color 0.3s; }
.glossy-why-card:hover .glossy-why-icon svg { color: #fff; }
.glossy-why-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.glossy-why-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; }

.glossy-how { padding: 80px 0; }
.glossy-how-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .glossy-how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .glossy-how-grid { grid-template-columns: repeat(4, 1fr); } }
.glossy-how-card { position: relative; background: rgba(15,23,42,0.5); border: 1px solid #1e293b; border-radius: 16px; padding: 24px; transition: all 0.3s; }
.glossy-how-card:hover { border-color: rgba(6,182,212,0.3); }
.glossy-how-num { font-size: 48px; font-weight: 800; color: #1e293b; margin-bottom: 16px; transition: color 0.3s; }
.glossy-how-card:hover .glossy-how-num { color: rgba(6,182,212,0.2); }
.glossy-how-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.glossy-how-card p { font-size: 14px; color: #94a3b8; }

.glossy-reviews { padding: 80px 0; }
.glossy-reviews-header { text-align: center; margin-bottom: 48px; }
.glossy-reviews-stars { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.glossy-reviews-stars svg { width: 24px; height: 24px; color: #facc15; fill: #facc15; }
.glossy-reviews-score { font-size: 28px; font-weight: 800; color: #fff; }
.glossy-reviews-count { color: #94a3b8; }
.glossy-reviews-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.glossy-reviews-link { display: inline-flex; align-items: center; gap: 8px; color: var(--glossy-accent, #22d3ee); transition: color 0.3s; }
.glossy-reviews-link:hover { color: #67e8f9; }
.glossy-reviews-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.glossy-reviews-track { display: flex; gap: 16px; width: max-content; animation: glossy-reviews-scroll 40s linear infinite; }
.glossy-reviews-marquee:hover .glossy-reviews-track { animation-play-state: paused; }
@keyframes glossy-reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.glossy-review-card { flex: 0 0 260px; background: rgba(15,23,42,0.5); border: 1px solid #1e293b; border-radius: 12px; padding: 16px; }
.glossy-review-stars { display: flex; gap: 4px; margin-bottom: 8px; }
.glossy-review-stars svg { width: 16px; height: 16px; }
.glossy-review-stars .filled { color: #facc15; fill: #facc15; }
.glossy-review-card p { font-size: 14px; color: #cbd5e1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.glossy-review-verified { margin-top: 8px; display: flex; align-items: center; gap: 4px; font-size: 12px; color: #4ade80; }
.glossy-review-verified svg { width: 12px; height: 12px; }

.glossy-faq { padding: 80px 0; }
.glossy-faq .container { max-width: 896px; }
.glossy-faq-list { display: flex; flex-direction: column; gap: 16px; }
.glossy-faq-item { background: rgba(15,23,42,0.5); border: 1px solid #1e293b; border-radius: 12px; overflow: hidden; }
.glossy-faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 24px; cursor: pointer; list-style: none; font-weight: 600; color: #fff; }
.glossy-faq-item summary::-webkit-details-marker { display: none; }
.glossy-faq-item summary svg { width: 20px; height: 20px; color: #94a3b8; flex-shrink: 0; transition: transform 0.3s; }
.glossy-faq-item[open] summary svg { transform: rotate(90deg); }
.glossy-faq-answer { padding: 0 24px 24px; color: #94a3b8; }
.glossy-faq-discord { margin-top: 32px; text-align: center; }
.glossy-faq-discord p { color: #94a3b8; margin-bottom: 16px; }
.glossy-discord-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #4f46e5; color: #fff; font-weight: 500; border-radius: 8px; transition: background 0.3s; }
.glossy-discord-btn:hover { background: #6366f1; }

.glossy-social-icons { display: flex; gap: 10px; }
.glossy-social-icon-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: #cbd5e1; transition: transform 0.2s; }
.glossy-social-icon-btn svg { width: 18px; height: 18px; }
.glossy-social-icon-btn img { width: 70%; height: 70%; object-fit: cover; border-radius: 50%; }
.glossy-social-icon-btn:hover { transform: scale(1.1); }

.glossy-cta { padding: 80px 0; overflow: hidden; position: relative; }
.glossy-cta-bg { position: absolute; inset: 0; background: #020617; }
.glossy-cta-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1000px; height: 600px; background: radial-gradient(ellipse at center, rgba(6,182,212,0.1), transparent); filter: blur(80px); }
.glossy-cta-content { position: relative; max-width: 896px; margin: 0 auto; padding: 0 16px; text-align: center; }
.glossy-cta-content h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; margin-bottom: 24px; }
.glossy-cta-content p { font-size: clamp(16px, 2vw, 20px); color: #cbd5e1; margin-bottom: 32px; }
.glossy-cta-features { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: 14px; color: #94a3b8; }
.glossy-cta-features div { display: flex; align-items: center; gap: 8px; }
.glossy-cta-features svg { width: 16px; height: 16px; color: var(--glossy-accent, #22d3ee); }

/* ===================== FOOTER ===================== */
.glossy-footer-wrap { background: #0f172a; border-top: 1px solid #1e293b; color: #fff; }
html.glossy-theme-custom .glossy-footer-wrap { background: color-mix(in srgb, var(--glossy-bg-accent, transparent) 6%, #0f172a); }
.glossy-footer-inner { max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.glossy-footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .glossy-footer-grid { grid-template-columns: 2fr auto auto auto; gap: 56px; } }
.glossy-footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .glossy-footer-brand { grid-column: span 1; } }
.glossy-footer-brand p { color: #94a3b8; font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.glossy-footer-col h3 { color: #fff; font-weight: 600; margin-bottom: 16px; font-size: 16px; }
.glossy-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.glossy-footer-col a { color: #94a3b8; font-size: 14px; transition: color 0.3s; }
.glossy-footer-col a:hover { color: var(--glossy-accent, #22d3ee); }
.glossy-footer-payments { margin-top: 48px; padding-top: 32px; border-top: 1px solid #1e293b; }
.glossy-footer-payments p { color: #64748b; font-size: 14px; margin-bottom: 16px; }
.glossy-payment-list { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.glossy-payment-item { height: 32px; padding: 0 12px; background: #1e293b; border-radius: 4px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.glossy-payment-item span { color: #94a3b8; font-size: 12px; font-weight: 500; }
.glossy-footer-disclaimer { margin-top: 32px; padding-top: 32px; border-top: 1px solid #1e293b; text-align: center; }
.glossy-footer-disclaimer p { color: #64748b; font-size: 12px; }
.glossy-footer-disclaimer .copyright { color: #475569; font-size: 12px; margin-top: 8px; }

/* ===================== AUTH MODAL ===================== */
#authOverlay { display: none; position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 99999; align-items: center; justify-content: center; }
#authOverlay.show { display: flex; }
.auth-box { background: #0f172a; border: 1px solid #1e293b; border-radius: 16px; padding: 40px; width: 100%; max-width: 480px; position: relative; }
.auth-close { position: absolute; top: 16px; right: 16px; color: #94a3b8; cursor: pointer; font-size: 20px; background: none; border: none; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.auth-tab { flex: 1; text-align: center; padding: 10px; border-radius: 10px; cursor: pointer; color: #94a3b8; font-weight: 600; background: transparent; border: none; }
.auth-tab.active { background: #1e293b; color: #fff; }
.auth-input { width: 100%; padding: 12px 14px; margin-bottom: 12px; background: #1a2132; border: 1px solid #2b3347; border-radius: 10px; color: #fff; font-size: 14px; }
.auth-input::placeholder { color: #64748b; }
.modal-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--glossy-accent, #2563eb), color-mix(in srgb, var(--glossy-accent, #2563eb) 70%, white)); border: none; border-radius: 12px; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; box-shadow: 0 4px 12px color-mix(in srgb, var(--glossy-accent, #2563eb) 25%, transparent); }
.modal-btn:hover { background: linear-gradient(135deg, var(--glossy-accent, #2563eb), var(--glossy-accent, #2563eb)); }
.auth-separator { text-align: center; color: #64748b; font-size: 12px; margin-bottom: 12px; }
.auth-error { color: #ff4444; margin-bottom: 10px; font-size: 13px; }
.auth-success { color: #1ec98d; margin-bottom: 10px; font-size: 13px; }
.oauth-icons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.oauth-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; background: #1a2132; border: 1px solid #2b3347; border-radius: 12px; color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; flex: 1; min-width: 140px; transition: all 0.25s ease; }
.oauth-btn:hover { border-color: #4098ff; background: #162b4d; transform: translateY(-2px); }
.oauth-btn img { width: 20px; height: 20px; }

.auth-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 22px; }
.auth-logo-img { width: 30px; height: 30px; border-radius: 7px; object-fit: cover; }
.auth-logo-text { font-weight: 800; font-size: 18px; color: #fff; letter-spacing: 0.3px; }
.auth-logo-text .cyan { color: var(--glossy-accent, #22d3ee); }

.auth-back-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; color: #94a3b8; font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 18px; }
.auth-back-btn:hover { color: #fff; }
.auth-forgot-icon { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--glossy-accent, #2563eb) 18%, transparent); color: var(--glossy-accent, #2563eb); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.auth-forgot-title { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.auth-forgot-subtitle { color: #94a3b8; font-size: 13px; margin-bottom: 20px; }

.auth-field { margin-bottom: 14px; text-align: left; }
.auth-field label { display: block; color: #cbd5e1; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.auth-input-wrap { position: relative; display: flex; align-items: center; }
.auth-input-wrap .auth-input-icon { position: absolute; left: 14px; color: #64748b; pointer-events: none; }
.auth-input-wrap input.auth-input { padding-left: 40px; padding-right: 40px; margin-bottom: 0; }
.auth-toggle-pass { position: absolute; right: 12px; background: none; border: none; color: #64748b; cursor: pointer; display: flex; align-items: center; padding: 0; }
.auth-toggle-pass:hover { color: #cbd5e1; }
.auth-forgot-row { text-align: right; margin: -4px 0 16px; }
.auth-forgot-row a { color: var(--glossy-accent, #3b82f6); font-size: 12.5px; font-weight: 600; text-decoration: none; }
.auth-forgot-row a:hover { text-decoration: underline; }
