﻿:root {
  --vvgn-dark: #111113;
  --vvgn-dark-2: #1c1c1f;
  --vvgn-card: #1f1f23;
  --vvgn-card-strong: #252529;
  --vvgn-golden: #c8a15d;
  --vvgn-golden-light: #f4d79c;
  --vvgn-text: #f1f1f2;
  --vvgn-muted: #cfd0d8;
  --vvgn-border: rgba(255, 255, 255, 0.08);
  --vvgn-good: #27ae60;
  --vvgn-bad: #c0392b;
  --font-heading: "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", sans-serif;
}

html, body {
  font-family: var(--font-body);
  background-color: var(--vvgn-dark);
  color: var(--vvgn-text);
  min-height: 100%;
}

body {
  margin: 0;
  line-height: 1.6;
}

.text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

.vvgn-body {
  background: var(--vvgn-dark);
}

.vvgn-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(17, 17, 19, 0.9);
  backdrop-filter: blur(12px);
}

.vvgn-header.header-scrolled {
  background: rgba(5, 5, 6, 0.95);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.vvgn-nav {
  color: var(--vvgn-text);
}

.vvgn-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.vvgn-nav .navbar-toggler-icon {
  filter: invert(1);
}

.vvgn-nav .navbar-brand .logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vvgn-nav .navbar-brand .logo-lg {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.vvgn-nav .brand-name {
  display: block;
  font-weight: 600;
  color: var(--vvgn-text);
}

.vvgn-nav .brand-slogan {
  color: var(--vvgn-muted);
  font-size: 0.75rem;
}

.vvgn-nav .nav-link {
  color: var(--vvgn-muted);
  font-weight: 500;
}

.vvgn-nav .nav-link:hover,
.vvgn-nav .nav-link:focus {
  color: var(--vvgn-text);
}

.btn-cta {
  background: linear-gradient(135deg, var(--vvgn-golden), #f4d79c);
  color: #111;
  border-radius: 999px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(200, 161, 93, 0.3);
  color: #111;
}

.vvgn-main {
  padding-top: 2rem;
}

.hero-section {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(120deg, rgba(17, 17, 19, 0.85), rgba(6, 6, 8, 0.85)),
    url("../images/banner.jpg") center/cover no-repeat;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2.3rem);
  margin-bottom: 1.5rem;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vvgn-golden);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-cta .btn {
  min-width: 200px;
}

.hero-card {
  background: rgba(17, 17, 19, 0.85);
  border: 1px solid var(--vvgn-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.badge-golden {
  background: var(--vvgn-golden-light);
  color: var(--vvgn-golden);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-list li {
  display: flex;
  gap: 0.5rem;
  color: var(--vvgn-muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vvgn-golden);
  display: block;
}

.section-light {
  background: var(--vvgn-dark);
}

.section-dark {
  background: #0c0c0f;
  border-top: 1px solid var(--vvgn-border);
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.section-desc {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto;
}

.card-tool {
  background: var(--vvgn-card);
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card-tool:hover {
  border-color: var(--vvgn-golden-light);
  transform: translateY(-4px);
}

.card-tool h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-tool p {
  color: rgba(255, 255, 255, 0.85);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill-list span {
  border-radius: 999px;
  border: 1px solid var(--vvgn-border);
  padding: 0.2rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Mini App Cards for Homepage */
.mini-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 161, 93, 0.25);
  border-radius: 24px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mini-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(250, 202, 69, 0.05), rgba(239, 147, 0, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.mini-app-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 202, 69, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.mini-app-card:hover::before {
  opacity: 1;
}

.mini-app-card.feng-shui-card:hover {
  border-color: rgba(96, 165, 250, 0.7);
}

.mini-app-card.tuvi-card:hover {
  border-color: rgba(148, 77, 255, 0.7);
}

.mini-app-card.numerology-card:hover {
  border-color: rgba(250, 204, 21, 0.7);
}

.mini-app-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.mini-app-card:hover .mini-app-logo {
  transform: scale(1.1);
}

.mini-app-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-app-content {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mini-app-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--vvgn-golden);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mini-app-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--vvgn-text);
  font-weight: 600;
}

.mini-app-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mini-app-cta {
  font-weight: 600;
  color: var(--vvgn-golden);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.mini-app-card:hover .mini-app-cta {
  color: #fcd34d;
}

@media (min-width: 768px) {
  .mini-app-card {
    flex-direction: row;
    text-align: left;
  }
  
  .mini-app-content {
    text-align: left;
  }
  
  .mini-app-logo {
    width: 120px;
    height: 120px;
  }
}

.section-dark .vvgn-list {
  list-style: none;
  padding-left: 0;
}

.section-dark .vvgn-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.6rem;
}

.section-dark .vvgn-list li::before {
  content: "•";
  color: var(--vvgn-golden);
  position: absolute;
  left: 0;
}

.knowledge-card {
  background: var(--vvgn-card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--vvgn-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mini-stats .stat-label {
  display: block;
  color: var(--vvgn-muted);
  font-size: 0.85rem;
}

.plan-card {
  background: var(--vvgn-card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--vvgn-border);
  height: 100%;
}

.plan-card ul {
  padding-left: 1rem;
  color: var(--vvgn-muted);
}

.plan-card.highlight {
  border-color: var(--vvgn-golden-light);
  box-shadow: 0 20px 60px rgba(200, 161, 93, 0.15);
}

.vvgn-footer {
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vvgn-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.vvgn-footer a:hover {
  color: #f4d79c;
}

.vvgn-footer p,
.vvgn-footer span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  padding: 0;
}

.vvgn-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 215, 156, 0.4);
  color: var(--vvgn-text);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.vvgn-social .social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.vvgn-social .social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 215, 156, 0.15);
  font-size: 16px;
}

.vvgn-social .social-link:hover {
  border-color: var(--vvgn-golden);
  color: var(--vvgn-golden);
  box-shadow: 0 0 12px rgba(244, 215, 156, 0.25);
}

.text-muted {
  color: rgba(240, 240, 244, 0.8) !important;
}

.auth-card .text-muted {
  color: rgba(240, 240, 244, 0.85) !important;
}

.policy .lead {
  color: rgba(255, 255, 255, 0.9);
}

.policy h3 {
  color: #f4d79c;
  margin-top: 2rem;
}

.policy p {
  color: rgba(255, 255, 255, 0.95);
}

.surface-card {
  background: #1f2027;
  color: #f7f7fb;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.surface-card .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Life Path Circle */
.life-path-circle {
  display: inline-block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.05);
  border: 3px solid #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3), 0 0 40px rgba(255, 193, 7, 0.1);
  margin: 0 auto;
}

.life-path-circle .display-1 {
  margin: 0;
  line-height: 1;
}

/* Pinnacles Diagram */
.pinnacles-diagram {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.pinnacles-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(255, 193, 7, 0.2));
}

/* Pinnacle Cards */
.pinnacle-card {
  background: rgba(255, 193, 7, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pinnacle-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 193, 7, 0.08);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.pinnacle-card-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107 0%, #f4c430 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a1a;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
  position: relative;
}

.pinnacle-card-number::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #ffc107;
  opacity: 0.3;
}

.pinnacle-card-label {
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.pinnacle-card-age {
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pinnacle-card-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

.contact-page .surface-card {
  background: #fdfdfd;
  border: 1px solid rgba(15, 18, 30, 0.08);
}

.contact-page .form-label {
  font-weight: 600;
  color: #060608;
}

.contact-card input,
.contact-card textarea {
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 23, 0.15);
  background: #ffffff;
  color: #111215;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(17, 17, 23, 0.45);
}

.form-control,
.form-select {
  background: #2b2c33;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fdfdff;
}

.form-control:focus,
.form-select:focus {
  background: #35363f;
  border-color: rgba(200, 161, 93, 0.8);
  color: #ffffff;
  box-shadow: none;
}

.form-label {
  color: #f5f5fa;
  font-weight: 500;
}

.dashboard-nav-link {
  border-radius: 14px;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.dashboard-nav-link:hover,
.dashboard-nav-link.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.captcha-canvas {
  border-radius: 16px;
  background: #1d1f27;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn-captcha {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-captcha .refresh-icon {
  font-size: 1.1rem;
}

.btn-captcha.is-loading .btn-label {
  opacity: 0.4;
}

.btn-captcha.is-loading .refresh-icon {
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.dashboard-layout {
  display: flex;
  gap: 2rem;
}

.dashboard-sidebar {
  width: 230px;
  background: var(--vvgn-card);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--vvgn-border);
  height: auto;
  position: static;
  max-height: none;
}

.dashboard-nav a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dashboard-nav a.active,
.dashboard-nav a:hover {
  background: rgba(244, 215, 156, 0.12);
  color: #f4d79c;
}

.dashboard-content {
  flex: 1;
}

.text-golden {
  color: var(--vvgn-golden);
}

.auth-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  background: var(--vvgn-card);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--vvgn-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.auth-card h2 {
  margin-bottom: 0.5rem;
}

.auth-card .btn {
  padding: 0.75rem;
}

@media (max-width: 767.98px) {
  .vvgn-header {
    background: rgba(17, 17, 19, 0.98);
  }

  .vvgn-nav .navbar-brand {
    gap: 0.75rem;
  }

  .vvgn-nav .brand-text span {
    font-size: 0.9rem;
  }

  .brand-slogan {
    font-size: 0.7rem;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .card-tool {
    padding: 1.25rem;
  }
}

@media (min-width: 1400px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }
}
.user-avatar .avatar-button {
  border: none;
  background: transparent;
  padding: 0;
}

.avatar-image {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244, 215, 156, 0.5);
}

.user-menu {
  min-width: 260px;
  padding: 1rem;
}

.user-summary img {
  width: 48px;
  height: 48px;
}

.user-menu .dropdown-item {
  color: #111;
}

.profile-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.profile-toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(12, 14, 18, 0.9);
  border: 1px solid rgba(244, 215, 156, 0.4);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  color: #f4d79c;
  min-width: 300px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.profile-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.profile-toast.error {
  background: rgba(92, 12, 12, 0.92);
  border-color: rgba(255, 115, 115, 0.4);
  color: #ffe3e3;
}

.dashboard-shell .surface-card {
  background: var(--vvgn-card);
  border: 1px solid var(--vvgn-border);
  border-radius: 24px;
}

.dashboard-sidebar {
  position: static;
  top: auto;
  border-radius: 24px;
  min-height: auto;
}

.sidebar-credit {
  background: rgba(200, 161, 93, 0.15);
  color: var(--vvgn-golden);
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.dashboard-nav-link {
  border-radius: 14px;
  padding: 0.75rem 1rem;
  color: var(--vvgn-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.dashboard-nav-link:hover,
.dashboard-nav-link.active {
  color: var(--vvgn-text);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
}

.dashboard-metric-card.compact {
  padding: 1rem 1.25rem;
}

.metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vvgn-muted);
}

.metric-value {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.metric-link {
  font-size: 0.9rem;
  color: var(--vvgn-golden);
  text-decoration: none;
}

.member-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.member-card {
  border-radius: 22px;
  min-height: 220px;
}

.member-card .relationship-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.member-card .member-menu {
  font-size: 1.5rem;
  color: var(--vvgn-muted);
}

.member-card .member-menu:hover {
  color: var(--vvgn-text);
}

.member-card-body {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.member-search .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--vvgn-text);
}

.empty-state {
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.member-fieldset:disabled {
  opacity: 0.55;
}

.credit-card-info {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  color: #f3f3f7;
}

.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--vvgn-golden);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  background: linear-gradient(135deg, #fbe6af, #f4d483);
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.feature-card h4 {
  color: #111;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #333;
  margin-bottom: 0;
}

.insight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.insight-card:hover {
  background: linear-gradient(135deg, #fbe6af, #f4d483);
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.insight-card h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111;
}

.insight-card p {
  color: #333;
  margin-bottom: 0;
}

.insight-badge {
  background: #c19236;
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 1.25rem;
  font-weight: 600;
}
.credit-popup {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.credit-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.credit-popup-card {
  background: linear-gradient(135deg, #1f2027, #282a34);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  min-width: 320px;
  color: #fefefe;
  position: relative;
}

.credit-popup-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 161, 93, 0.2);
  border: 1px solid rgba(200, 161, 93, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--vvgn-golden);
  margin-bottom: 0.75rem;
}

.credit-popup h4 {
  margin-bottom: 0.25rem;
}

.credit-popup .popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.topup-card .qr-box {
  width: 240px;
  height: 240px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.topup-card .qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.instruction-list {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.instruction-list li + li {
  margin-top: 0.25rem;
}

.note-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.note-box ul {
  padding-left: 1.1rem;
}

.feng-shui-page .surface-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 16, 0.92);
}

.feng-shui-hero {
  background: radial-gradient(circle at top, rgba(120, 237, 195, 0.25), rgba(9, 12, 18, 0.95)),
    linear-gradient(135deg, rgba(5, 126, 123, 0.4), rgba(3, 59, 105, 0.4));
  border: 1px solid rgba(146, 249, 210, 0.25);
}

.feng-shui-hero-logo {
  width: 220px;
  min-height: 220px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.feng-shui-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.65));
}

.feng-shui-pill {
  background: rgba(116, 208, 197, 0.18);
  color: #9fffdc;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.9rem;
}

.feng-shui-intro {
  background: rgba(6, 10, 20, 0.92);
  border: 1px solid rgba(143, 255, 220, 0.2);
}

.feng-shui-intro-text p {
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

.feng-shui-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feng-shui-highlight-card {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feng-shui-highlight-card h6 {
  color: #9fffdc;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0;
}

.feng-shui-highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.feng-shui-note {
  padding: 1rem 1.25rem;
  border-radius: 20px;
  background: rgba(159, 255, 220, 0.08);
  border: 1px dashed rgba(159, 255, 220, 0.5);
  color: #defef1;
  line-height: 1.6;
}

.feng-shui-app-card {
  border-color: rgba(135, 244, 206, 0.35);
  background: linear-gradient(135deg, rgba(6, 34, 48, 0.9), rgba(2, 14, 23, 0.9));
}

.feng-shui-app-card:hover {
  border-color: rgba(135, 244, 206, 0.7);
}

.feng-shui-app-card .good-day-app-logo {
  width: 140px !important;
  height: 140px !important;
  padding: 1rem !important;
  border-radius: 24px !important;
  background: rgba(14, 54, 65, 0.65);
  border-color: rgba(135, 244, 206, 0.35);
}

.feng-shui-app-card .good-day-app-cta {
  color: #9fffdc;
}

.feng-shui-page {
  --feng-friendly: rgba(255, 214, 118, 0.65);
  --feng-unfriendly: rgba(99, 153, 255, 0.35);
}

.feng-shui-profile-alert {
  background: rgba(159, 255, 220, 0.12);
  color: #e6fff4;
  border-radius: 16px;
}

.current-direction-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.feng-shui-input-card .form-label {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.direction-input-group .form-range {
  accent-color: var(--vvgn-golden);
}

.direction-input-group .input-group {
  margin-top: 0.5rem;
}

.direction-wheel-wrapper {
  display: flex;
  justify-content: center;
}

.direction-wheel {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(7, 11, 18, 0.95);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
}

.direction-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.direction-wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(from 90deg, rgba(0, 0, 0, 0.12) 0deg 0.8deg, transparent 0.8deg 45deg);
  pointer-events: none;
}

.direction-wheel-pointer {
  position: absolute;
  width: 4px;
  height: 140px;
  background: #080808;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.direction-wheel-pointer::after {
  content: "";
  position: absolute;
  top: -18px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #080808;
}

.direction-wheel-center {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 4;
}

.direction-wheel-center span {
  font-size: 1.75rem;
  font-weight: 600;
}

.direction-label {
  position: absolute;
  width: 90px;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  z-index: 4;
}

.direction-label span,
.degree-mark span {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
}

.direction-label.direction-north {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.direction-label.direction-northeast {
  top: 35px;
  right: 20px;
}

.direction-label.direction-east {
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.direction-label.direction-southeast {
  bottom: 35px;
  right: 20px;
}

.direction-label.direction-south {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.direction-label.direction-southwest {
  bottom: 35px;
  left: 20px;
}

.direction-label.direction-west {
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.direction-label.direction-northwest {
  top: 35px;
  left: 20px;
}

.direction-divider {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(0, 0, 0, 0.4);
  transform-origin: center;
  z-index: 2;
}

.degree-mark {
  position: absolute;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  z-index: 2;
}

.degree-mark.degree-0 {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.degree-mark.degree-45 {
  top: 10px;
  right: -5px;
}

.degree-mark.degree-90 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.degree-mark.degree-135 {
  bottom: 10px;
  right: -5px;
}

.degree-mark.degree-180 {
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.degree-mark.degree-225 {
  bottom: 10px;
  left: -5px;
}

.degree-mark.degree-270 {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

.degree-mark.degree-315 {
  top: 10px;
  left: -5px;
}

.destiny-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 18, 0.95);
}

.destiny-direction-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  height: 100%;
}

.destiny-direction-card.positive {
  border-color: rgba(255, 214, 118, 0.45);
  background: rgba(255, 214, 118, 0.08);
}

.destiny-direction-card.negative {
  border-color: rgba(99, 153, 255, 0.45);
  background: rgba(99, 153, 255, 0.08);
}

.destiny-direction-card .direction {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.destiny-direction-card h6 {
  margin: 0;
  font-size: 1rem;
}

.destiny-direction-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.orientation-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 15, 0.95);
}

.good-day-app-card {
  border: 1px solid rgba(200, 161, 93, 0.25);
  border-radius: 28px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.good-day-app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 202, 69, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.good-day-app-logo {
  width: 140px !important;
  height: 140px !important;
  min-width: 140px !important;
  min-height: 140px !important;
  max-width: 140px !important;
  max-height: 140px !important;
  flex-shrink: 0 !important;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem !important;
}

.good-day-app-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tuvi-mini-card .good-day-app-logo {
  width: 140px !important;
  height: 140px !important;
  padding: 1rem !important;
  border-radius: 24px !important;
}

.tuvi-mini-card .good-day-app-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.numerology-mini-card .good-day-app-logo {
  width: 140px !important;
  height: 140px !important;
  padding: 1rem !important;
  border-radius: 24px !important;
}

.numerology-mini-card .good-day-app-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.good-day-app-cta {
  font-weight: 600;
  color: var(--vvgn-golden);
  white-space: nowrap;
}

.good-day-page .surface-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 21, 0.95);
}

.good-day-hero {
  background: linear-gradient(135deg, rgba(250, 202, 69, 0.08), rgba(239, 147, 0, 0.15));
}

.good-day-kicker {
  letter-spacing: 0.25rem;
  font-weight: 600;
  color: var(--vvgn-golden);
}

.good-day-selector .good-day-select {
  min-width: 260px;
  background: rgba(12, 12, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fbe4a4;
}

.good-day-alert {
  background: rgba(250, 202, 69, 0.15);
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
}

.good-day-range-form {
  margin: 0;
}

.good-day-range-form .btn {
  border-radius: 999px;
}

.good-day-select-label {
  white-space: nowrap;
}

.good-day-search {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.good-day-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.good-day-profile-grid .label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.good-day-avatar {
  width: 96px;
  height: 96px;
  background: var(--vvgn-golden-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vvgn-golden);
  overflow: hidden;
  border-radius: 50%;
}

.good-day-avatar.has-image {
  background: transparent;
  border: none;
  padding: 0;
}

.good-day-avatar.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.good-day-chart-bars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  gap: 0.75rem;
  align-items: end;
}

.good-day-chart-column {
  text-align: center;
}

.good-day-chart-bar {
  min-height: 40px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, #ffb347, #ffd66b);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #111;
  font-weight: 600;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.good-day-chart-bar span {
  margin-bottom: 0.5rem;
}

.good-day-chart-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

.good-day-chart-bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.good-day-calendar {
  overflow: hidden;
}

.good-day-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.good-day-calendar-header {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 0.25rem;
}

.good-day-calendar-day {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  min-height: 92px;
  background: rgba(255, 255, 255, 0.02);
  transition: border 0.2s ease, transform 0.2s ease;
}

.good-day-calendar-day .calendar-solar {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.good-day-calendar-day .calendar-lunar {
  font-size: 0.75rem;
}

.good-day-calendar-day.is-dim {
  opacity: 0.55;
}

.good-day-calendar-day.is-today {
  border-color: rgba(250, 202, 69, 0.8);
  box-shadow: 0 0 0 1px rgba(250, 202, 69, 0.3);
}

.good-day-calendar-day:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.good-day-calendar-day.is-selected {
  border-color: rgba(250, 202, 69, 0.8);
  box-shadow: 0 0 0 1px rgba(250, 202, 69, 0.4);
}

.good-day-calendar-day.is-selected .calendar-solar {
  color: var(--vvgn-golden);
}

.good-day-calendar-day.is-lunar-special .calendar-lunar {
  color: var(--vvgn-golden);
  font-weight: 600;
}

.good-day-calendar-day.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.good-day-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-flex;
}

.tone-excellent {
  background: linear-gradient(180deg, #ff6b6b, #c81d25);
}

.tone-good {
  background: linear-gradient(180deg, #ffd166, #f4a259);
}

.tone-slightly-bad {
  background: linear-gradient(180deg, #d4d9e6, #b7bccd);
}

.tone-bad {
  background: #8a94a8;
}

.tone-forbidden {
  background: #1d3fac;
}

.tone-neutral {
  background: #7f7f7f;
}

.good-day-chart-bar.tone-excellent {
  background: linear-gradient(180deg, #ff9076, #c81d25);
  color: #fff;
}

.good-day-chart-bar.tone-good {
  background: linear-gradient(180deg, #ffd166, #f4a259);
}

.good-day-chart-bar.tone-slightly-bad {
  background: linear-gradient(180deg, #d4d9e6, #b7bccd);
}

.good-day-chart-bar.tone-bad {
  background: linear-gradient(180deg, #94a0b8, #6b7386);
  color: #fff;
}

.good-day-chart-bar.tone-forbidden {
  background: linear-gradient(180deg, #424b7a, #1d3fac);
  color: #fff;
}

.good-day-legend {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.good-day-description ul {
  padding-left: 1.2rem;
  line-height: 1.8;
}

.good-day-detail {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.good-day-detail .detail-weekday {
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--vvgn-golden);
}

.good-day-detail .detail-date-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.detail-score-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.detail-score-ring span {
  color: #fff;
}

.detail-score-ring.tone-excellent {
  background: linear-gradient(135deg, #ff9f6e, #c81d25);
}

.detail-score-ring.tone-good {
  background: linear-gradient(135deg, #ffd166, #f4a259);
}

.detail-score-ring.tone-slightly-bad {
  background: linear-gradient(135deg, #d4d9e6, #b7bccd);
}

.detail-score-ring.tone-bad {
  background: linear-gradient(135deg, #94a0b8, #6b7386);
}

.detail-score-ring.tone-forbidden {
  background: linear-gradient(135deg, #424b7a, #1d3fac);
}

.good-hour-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.good-day-hour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.good-day-hour-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.good-day-hour-card p {
  font-weight: 600;
  color: var(--vvgn-golden);
}

.good-day-hour-card span {
  font-weight: 600;
  color: #fff;
}

.good-day-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.good-day-method-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  height: 100%;
}

.good-day-method-card h6 {
  font-weight: 600;
}

.method-score {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vvgn-golden);
}

.method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.good-day-best-days {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.best-day-progress {
  font-weight: 600;
  color: var(--vvgn-golden);
}

.best-day-placeholder {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.best-day-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.best-day-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.best-day-item .best-day-score {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.best-day-item.tone-excellent {
  border-color: #ff9f6e;
}

.best-day-item.tone-good {
  border-color: #ffd166;
}

.best-day-item.tone-slightlybad,
.best-day-item.tone-slightly-bad {
  border-color: #d4d9e6;
}

.best-day-item.tone-bad {
  border-color: #94a0b8;
}

.best-day-item.tone-forbidden {
  border-color: #424b7a;
}

.best-day-action {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.best-day-action select {
  min-width: 220px;
}

.best-day-action .text-warning {
  font-size: 0.85rem;
}

.good-day-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
}

.good-day-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.good-day-modal-dialog {
  position: relative;
  max-width: 420px;
  width: 92%;
  background: rgba(17, 17, 19, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.best-day-hours {
  margin-top: 0.35rem;
}

.best-day-hours span {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.8rem;
  color: var(--vvgn-muted);
}

.method-list span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.85rem;
}

.method-list.positive span {
  border: 1px solid rgba(200, 161, 93, 0.5);
}

.method-list.negative span {
  border: 1px solid rgba(255, 99, 99, 0.5);
}

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    position: static;
  }
}

/* Knowledge Page Styles */
.knowledge-card {
  border: 1px solid rgba(138, 180, 248, 0.3);
  background: linear-gradient(135deg, rgba(138, 180, 248, 0.05), rgba(100, 149, 237, 0.08));
}

.knowledge-card:hover {
  border-color: rgba(138, 180, 248, 0.6);
}

.knowledge-intro {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.knowledge-intro p {
  text-align: justify;
}

.playlist-header {
  border-bottom: 2px solid rgba(200, 161, 93, 0.3);
  padding-bottom: 1rem;
}

.playlist-header h4 {
  font-weight: 600;
}

.playlist-header i {
  margin-right: 0.5rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 161, 93, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: block;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.08);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-card:hover .video-play-overlay {
  opacity: 1;
}

.video-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-title a {
  color: var(--vvgn-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-title a:hover {
  color: var(--vvgn-golden);
}

.video-description {
  font-size: 0.85rem;
  color: var(--vvgn-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.video-tag {
  display: inline-block;
  background: rgba(200, 161, 93, 0.15);
  color: var(--vvgn-golden);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid rgba(200, 161, 93, 0.25);
}

.text-golden {
  color: var(--vvgn-golden);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .knowledge-intro {
    font-size: 0.95rem;
  }

  .video-card {
    margin-bottom: 1rem;
  }

  .playlist-header h4 {
    font-size: 1.25rem;
  }
}

/* Latest Videos Section Styles */
.latest-video-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 161, 93, 0.2);
}

.latest-video-card:hover {
  border-color: rgba(200, 161, 93, 0.5);
  box-shadow: 0 12px 32px rgba(200, 161, 93, 0.15);
}

.video-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--vvgn-muted);
}

.stat-item i {
  color: var(--vvgn-golden);
  font-size: 0.9rem;
}

.video-comments {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comments-header {
  font-size: 0.85rem;
  color: var(--vvgn-golden);
  margin-bottom: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.comment-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0.6rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-item:last-child {
  margin-bottom: 0;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vvgn-text);
}

.comment-date {
  font-size: 0.7rem;
  color: var(--vvgn-muted);
  margin-left: auto;
}

.comment-text {
  font-size: 0.75rem;
  color: var(--vvgn-muted);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.comment-likes {
  font-size: 0.7rem;
  color: var(--vvgn-golden);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.comment-likes i {
  font-size: 0.65rem;
}

/* Responsive adjustments for latest videos */
@media (max-width: 767.98px) {
  .video-stats {
    gap: 0.75rem;
  }

  .stat-item {
    font-size: 0.75rem;
  }

  .video-comments {
    padding: 0.6rem;
  }

  .comment-text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* Channel Statistics Section */
.channel-stats-section {
  background: linear-gradient(135deg, rgba(200, 161, 93, 0.08), rgba(200, 161, 93, 0.03));
  border: 2px solid rgba(200, 161, 93, 0.25);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(200, 161, 93, 0.1);
}

.channel-stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.channel-logo {
  flex-shrink: 0;
}

.channel-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(200, 161, 93, 0.3));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(200, 161, 93, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 20px rgba(200, 161, 93, 0.5));
  }
}

.channel-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  flex: 1;
  max-width: 650px;
}

.channel-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.channel-stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 161, 93, 0.4);
  box-shadow: 0 8px 20px rgba(200, 161, 93, 0.15);
}

.channel-stat-item i {
  font-size: 2rem;
  color: var(--vvgn-golden);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
  min-width: 0;
}

.channel-stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vvgn-golden);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.channel-stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--vvgn-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive adjustments for channel stats */
@media (max-width: 991.98px) {
  .channel-stats-container {
    gap: 2rem;
  }

  .channel-logo img {
    width: 100px;
    height: 100px;
  }

  .channel-stats-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .channel-stats-section {
    padding: 1.5rem;
  }

  .channel-stats-container {
    gap: 1.5rem;
  }

  .channel-logo img {
    width: 80px;
    height: 80px;
  }

  .channel-stat-item {
    padding: 1rem;
  }

  .channel-stat-item i {
    font-size: 1.5rem;
  }

  .channel-stat-item .stat-number {
    font-size: 1.25rem;
  }

.channel-stat-item .stat-label {
  font-size: 0.7rem;
}
}

/* ========================
   Mobile Luxury Dark Zen Home
   ======================== */
.mobile-home {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--vvgn-dark);
  color: var(--vvgn-text);
  overflow: hidden;
  font-family: var(--font-body);
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 14px 16px 6px;
  background: var(--vvgn-dark);
  border-bottom: 1px solid var(--vvgn-border);
}

.week-day {
  text-align: center;
  padding: 6px 4px;
  border-radius: 12px;
  background: var(--vvgn-card);
  box-shadow: inset 0 0 0 1px var(--vvgn-border);
  transition: all 0.2s ease;
}

.week-day.active {
  background: linear-gradient(135deg, #2a2a30, #1a1a1e);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 161, 93, 0.3);
}

.week-label {
  font-size: 12px;
  color: var(--vvgn-muted);
  margin-bottom: 2px;
}

.week-solar {
  font-size: 18px;
  font-weight: 700;
  color: var(--vvgn-text);
}

.week-day.active .week-solar {
  color: var(--vvgn-golden);
}

.week-lunar {
  font-size: 12px;
  color: var(--vvgn-muted);
  margin-top: 2px;
}

.week-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 4px auto 0;
  background: var(--vvgn-muted);
}

.dot-good { background: var(--vvgn-good); }
.dot-bad { background: var(--vvgn-bad); }
.dot-normal { background: var(--vvgn-muted); }

.expand-handle {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--vvgn-dark);
  position: relative;
}

.handle-bar {
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.handle-chevron {
  font-size: 12px;
  color: var(--vvgn-muted);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.home-content {
  flex: 1;
  position: relative;
  overflow-y: auto;
  background: radial-gradient(circle at 20% 20%, rgba(200, 161, 93, 0.08), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(244, 215, 156, 0.08), transparent 45%),
    var(--vvgn-dark);
}

.content-overlay {
  position: absolute;
  inset: 0;
  background: url("../images/banner.jpg") center/cover no-repeat;
  opacity: 0.08;
  filter: blur(4px);
}

.content-placeholder {
  position: relative;
  z-index: 1;
  padding: 32px 20px 80px;
  text-align: center;
}

.content-placeholder h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.content-placeholder .lead {
  color: var(--vvgn-muted);
  max-width: 420px;
  margin: 0 auto;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.nav-surface {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 19, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
}

.nav-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr) 80px repeat(2, 1fr);
  align-items: center;
  width: 100%;
  max-width: 540px;
  padding: 0 20px 12px;
  pointer-events: auto;
  gap: 6px;
}

.nav-item {
  background: transparent;
  border: none;
  color: #7f8c8d;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
}

.nav-item .nav-icon {
  font-size: 18px;
}

.nav-item.active {
  color: var(--vvgn-golden);
}

.nav-spacer {
  width: 80px;
}

.floating-btn {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--vvgn-golden), var(--vvgn-golden-light));
  color: #111113;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 10px 25px rgba(200, 161, 93, 0.4);
  pointer-events: auto;
}

.floating-btn .nav-icon {
  font-size: 20px;
  font-weight: 700;
}
