:root {
  --primary-brand: #FF4A5A;
  --primary-brand-hover: #E03E4D;
  --primary-brand-light: #FFF5F6;
  --indigo-dark: #1A2238;
  --indigo-soft: #2D3A58;
  --bg-base: #F5F7FA;
  --bg-card: #FFFFFF;
  --border-subtle: #E8ECEF;
  --text-dark: #1E2530;
  --text-light: #626D7F;
  --text-pale: #98A2B3;
  --safe-green: #00BA88;
  --gold-star: #FFB01F;
  --radius-pill: 100px;
  --radius-normal: 12px;
  --radius-box: 18px;
  --shadow-flat: 0 2px 8px rgba(26, 34, 56, 0.04);
  --shadow-hover: 0 12px 30px rgba(255, 74, 90, 0.12);
  --shadow-premium: 0 16px 36px rgba(26, 34, 56, 0.08);
  --font-family-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-system);
  background-color: var(--bg-base);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-main {
  background: var(--bg-card);
  border-bottom: 1.5px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-flat);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-shield {
  font-size: 32px;
}

.brand-title {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.5px;
  color: var(--indigo-dark);
}

.brand-title span {
  color: var(--primary-brand);
}

.navigation-bar {
  display: flex;
  gap: 28px;
}

.nav-item {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-brand);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-brand);
  border-radius: var(--radius-pill);
  transition: width 0.2s ease;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.search-container {
  width: 260px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--bg-base);
  border-radius: var(--radius-normal);
  padding: 8px 14px;
  border: 1px solid var(--border-subtle);
}

.search-bar input {
  background: transparent;
  border: none;
  color: var(--text-dark);
  outline: none;
  width: 100%;
  font-size: 13.5px;
  margin-left: 8px;
}

.search-bar input::placeholder {
  color: var(--text-pale);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--indigo-dark);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .navigation-bar, .search-container {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

.mobile-navigation {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 20px;
}

.mobile-navigation.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-navigation .nav-item {
  font-size: 15px;
}

.hero-jumbotron {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo-soft) 100%);
  color: #FFFFFF;
  padding: 70px 0;
  position: relative;
}

.hero-inner-wrapper {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 74, 90, 0.1);
  color: #FF6B7A;
  border: 1px solid rgba(255, 74, 90, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 20px;
}

.hero-jumbotron h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-jumbotron p {
  color: #B2C0D2;
  font-size: 16.5px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-search-bar {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius-normal);
  padding: 6px;
  box-shadow: var(--shadow-premium);
  max-width: 600px;
  margin: 0 auto;
}

.hero-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  background: transparent;
}

.hero-search-button {
  background: var(--primary-brand);
  color: #FFFFFF;
  border: none;
  font-weight: 800;
  padding: 0 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-search-button:hover {
  background: var(--primary-brand-hover);
}

@media (max-width: 768px) {
  .hero-jumbotron h1 {
    font-size: 28px;
  }
  .hero-jumbotron p {
    font-size: 14px;
  }
  .hero-search-bar {
    flex-direction: column;
    gap: 8px;
    background: transparent;
    box-shadow: none;
  }
  .hero-search-bar input {
    background: var(--bg-card);
    border-radius: var(--radius-normal);
  }
  .hero-search-button {
    padding: 12px;
    border-radius: var(--radius-normal);
  }
}

.grid-layout-columns {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .grid-layout-columns {
    grid-template-columns: 1fr;
  }
}

.banner-premium-spot {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 5px solid var(--primary-brand);
  border-radius: var(--radius-normal);
  padding: 24px;
  margin-bottom: 32px;
  position: relative;
  box-shadow: var(--shadow-flat);
}

.badge-premium-flash {
  background: var(--primary-brand-light);
  color: var(--primary-brand);
  font-size: 11px;
  font-weight: 850;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 16px;
}

.premium-layout-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.premium-visual-logo {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-normal);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.premium-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-details h2 {
  font-size: 20px;
  font-weight: 850;
  color: var(--text-dark);
}

.premium-meta-subtitle {
  color: var(--text-light);
  font-size: 13.5px;
  margin-bottom: 10px;
}

.premium-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.premium-stars {
  color: var(--gold-star);
  font-size: 14px;
}

.premium-score {
  font-size: 12.5px;
  font-weight: 700;
}

.premium-badge-direct {
  background: #E6F8F3;
  color: var(--safe-green);
  font-size: 11px;
  font-weight: 850;
  padding: 2px 8px;
  border-radius: 4px;
}

.premium-buttons {
  display: flex;
  gap: 10px;
}

.btn-primary-hero {
  background: var(--primary-brand);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  transition: background 0.2s ease;
}

.btn-primary-hero:hover {
  background: var(--primary-brand-hover);
}

.btn-secondary-hero {
  background: var(--bg-base);
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  transition: background 0.2s ease;
}

.btn-secondary-hero:hover {
  background: var(--border-subtle);
}

@media (max-width: 576px) {
  .premium-layout-box {
    flex-direction: column;
    text-align: center;
  }
  .premium-indicators {
    justify-content: center;
  }
  .premium-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.catalog-section {
  margin-bottom: 35px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-heading-row h2 {
  font-size: 18px;
  font-weight: 850;
  color: var(--indigo-dark);
}

.section-more-link {
  font-size: 13px;
  color: var(--primary-brand);
  font-weight: 800;
}

.cards-grid-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .cards-grid-display {
    grid-template-columns: 1fr;
  }
}

.app-compact-card {
  background: var(--bg-card);
  border-radius: var(--radius-normal);
  border: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-flat);
}

.app-compact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 74, 90, 0.25);
}

.card-clickable-area {
  padding: 16px;
  display: flex;
  gap: 16px;
}

.card-visual-header {
  flex-shrink: 0;
}

.card-logo-holder {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-normal);
  overflow: hidden;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  color: var(--primary-brand);
  border: 1px solid var(--border-subtle);
}

.card-logo-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content-segment {
  flex-grow: 1;
  overflow: hidden;
}

.card-item-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-metadata-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.card-stars {
  color: var(--gold-star);
}

.card-summary-desc {
  font-size: 12.5px;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.card-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--border-subtle);
  background: var(--primary-brand-light);
}

.card-genre-pill {
  font-size: 10.5px;
  color: var(--text-light);
  font-weight: 700;
}

.card-direct-button {
  background: var(--primary-brand);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.card-direct-button:hover {
  background: var(--primary-brand-hover);
}

.sidebar-block-card {
  background: var(--bg-card);
  border-radius: var(--radius-normal);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-flat);
}

.sidebar-title {
  font-size: 15px;
  font-weight: 850;
  color: var(--indigo-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--primary-brand);
  padding-left: 8px;
}

.sidebar-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--border-subtle);
  transition: transform 0.2s ease;
}

.sidebar-item-row:last-child {
  border-bottom: none;
}

.sidebar-item-row:hover {
  transform: translateX(3px);
}

.rank-badge {
  font-size: 13px;
  font-weight: 850;
  color: var(--text-pale);
  width: 20px;
  text-align: center;
}

.rank-1 { color: #FF4D4D; }
.rank-2 { color: #FF9900; }
.rank-3 { color: #FFCC00; }

.sidebar-logo-frame {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-base);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 11px;
  color: var(--primary-brand);
  border: 1px solid var(--border-subtle);
}

.sidebar-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-item-info {
  flex-grow: 1;
  overflow: hidden;
}

.sidebar-item-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-item-sub {
  font-size: 11px;
  color: var(--text-light);
}

.sidebar-item-arrow {
  color: var(--primary-brand);
  font-weight: 800;
  font-size: 11px;
}

.sticky-sidebar-top {
  position: sticky;
  top: 100px;
}

.sidebar-pills-cloud {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pill-trending {
  background: var(--bg-base);
  color: var(--text-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.pill-trending:hover {
  background: var(--primary-brand-light);
  border-color: var(--primary-brand);
  color: var(--primary-brand);
}

.info-guide-section {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 24px;
  margin-top: 40px;
}

.info-guide-section h2 {
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 16px;
  color: var(--indigo-dark);
}

.guides-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .guides-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.guide-link-card {
  background: var(--bg-base);
  border-radius: var(--radius-normal);
  padding: 16px;
  display: flex;
  gap: 12px;
  transition: border-color 0.2s ease;
  border: 1px solid transparent;
}

.guide-link-card:hover {
  border-color: var(--primary-brand);
}

.guide-icon-box {
  font-size: 24px;
}

.guide-text-box h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.guide-text-box p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.footer-main {
  background: var(--indigo-dark);
  color: #B2C0D2;
  padding: 60px 0 20px 0;
  margin-top: 80px;
  border-top: 4px solid var(--primary-brand);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-brand-segment {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
}

.footer-about-text {
  font-size: 13px;
  line-height: 1.55;
}

.footer-tag-wrap {
  display: flex;
  gap: 8px;
}

.footer-verified-badge {
  background: rgba(255, 74, 90, 0.15);
  color: #FF6B7A;
  font-size: 11px;
  font-weight: 850;
  padding: 3px 8px;
  border-radius: 4px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-group h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-link-group a {
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-link-group a:hover {
  color: var(--primary-brand);
}

.footer-sub-bar {
  border-top: 1px solid var(--indigo-soft);
  margin-top: 40px;
  padding-top: 20px;
}

.terms-legal-block {
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: justify;
}

.copyright-info {
  font-size: 12px;
  text-align: center;
  color: var(--text-pale);
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.breadcrumb-item:hover {
  color: var(--primary-brand);
}

.breadcrumb-current {
  font-weight: 700;
  color: var(--text-dark);
}

.app-detail-hero-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 24px;
  box-shadow: var(--shadow-flat);
  margin-bottom: 24px;
}

.detail-hero-flex {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .detail-hero-flex {
    flex-direction: column;
    text-align: center;
  }
}

.detail-visual-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-normal);
  overflow: hidden;
  box-shadow: var(--shadow-flat);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 24px;
  color: var(--primary-brand);
}

.detail-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-content {
  flex-grow: 1;
}

.detail-display-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.detail-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .detail-author-row {
    justify-content: center;
  }
}

.developer-tag {
  font-size: 13px;
  color: var(--text-light);
}

.badge-status-clean {
  background: #E6F8F3;
  color: var(--safe-green);
  font-size: 11px;
  font-weight: 850;
  padding: 3px 8px;
  border-radius: 4px;
}

.detail-specs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .detail-specs-row {
    justify-content: center;
  }
}

.detail-stars-stars {
  color: var(--gold-star);
  font-size: 15px;
}

.detail-rating-score {
  font-size: 13px;
  font-weight: 700;
}

.specs-box {
  background: var(--bg-base);
  color: var(--text-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

.detail-actions-panel {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .detail-actions-panel {
    flex-direction: column;
  }
}

.btn-main-action {
  background: var(--primary-brand);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(255, 74, 90, 0.25);
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-main-action:hover {
  background: var(--primary-brand-hover);
}

.btn-sub-action {
  background: var(--bg-base);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sub-action:hover {
  background: var(--border-subtle);
}

.compliance-panel {
  background: #FFF9E6;
  border: 1px solid #FFEBA6;
  border-radius: var(--radius-normal);
  padding: 14px;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.compliance-icon-mark {
  font-size: 18px;
}

.compliance-text-box {
  font-size: 13px;
  color: #8A6D1C;
}

.editorial-review-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-flat);
}

.sub-section-title {
  font-size: 16px;
  font-weight: 850;
  color: var(--indigo-dark);
  margin-bottom: 16px;
  border-bottom: 1.5px solid var(--border-subtle);
  padding-bottom: 8px;
}

.content-formatted-container p {
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--text-light);
  text-align: justify;
}

.content-formatted-container p:last-child {
  margin-bottom: 0;
}

.deployment-steps-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-flat);
}

.steps-grid-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 992px) {
  .steps-grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid-box {
    grid-template-columns: 1fr;
  }
}

.step-card-item {
  background: var(--bg-base);
  border-radius: var(--radius-normal);
  padding: 16px;
  text-align: center;
}

.step-index-mark {
  width: 28px;
  height: 28px;
  background: var(--primary-brand);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 13px;
  margin: 0 auto 10px auto;
}

.step-card-item h4 {
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.step-card-item p {
  font-size: 11.5px;
  color: var(--text-light);
}

.specs-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-flat);
}

.technical-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.technical-specs-table tr {
  border-bottom: 1.5px solid var(--border-subtle);
}

.technical-specs-table tr:last-child {
  border-bottom: none;
}

.technical-specs-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-light);
  width: 35%;
  background: var(--bg-base);
}

.technical-specs-table td {
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-dark);
}

@media (max-width: 576px) {
  .technical-specs-table th {
    width: 40%;
    padding: 8px;
  }
  .technical-specs-table td {
    padding: 8px;
  }
}

.faq-accordions-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 24px;
  box-shadow: var(--shadow-flat);
}

.details-accordions-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.details-accordions-holder details {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-normal);
}

.details-accordions-holder summary {
  padding: 14px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  outline: none;
}

.accordion-answer {
  padding: 0 14px 14px 14px;
  font-size: 13px;
  color: var(--text-light);
}

.text-center-panel {
  text-align: center;
}

.sidebar-brand-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-normal);
  overflow: hidden;
  margin: 0 auto 12px auto;
  box-shadow: var(--shadow-flat);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 24px;
  color: var(--primary-brand);
}

.sidebar-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget-title {
  font-size: 16px;
  font-weight: 850;
  margin-bottom: 2px;
}

.sidebar-widget-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.fill-width-btn {
  width: 100%;
}

.sidebar-quick-assurances {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  text-align: left;
  border-top: 1.5px solid var(--border-subtle);
  padding-top: 10px;
}

.category-header-banner {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #101524 100%);
  color: #FFFFFF;
  padding: 35px;
  border-radius: var(--radius-box);
  margin-bottom: 24px;
}

.category-page-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}

.category-page-desc {
  color: #B2C0D2;
  font-size: 13.5px;
}

.category-safety-alert {
  background: var(--primary-brand-light);
  border: 1px solid rgba(255, 74, 90, 0.15);
  border-radius: var(--radius-normal);
  padding: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.alert-icon {
  font-size: 16px;
}

.alert-body {
  font-size: 13px;
  color: var(--primary-brand);
}

.pagination-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pagination-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled) {
  border-color: var(--primary-brand);
  color: var(--primary-brand);
}

.pagination-btn.active {
  background: var(--primary-brand);
  border-color: var(--primary-brand);
  color: #FFFFFF;
}

.pagination-btn.disabled {
  color: var(--text-pale);
  cursor: not-allowed;
}

.sidebar-nav-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-pill {
  background: var(--bg-base);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-normal);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.sidebar-nav-pill:hover {
  background: var(--primary-brand-light);
  border-color: var(--primary-brand);
  color: var(--primary-brand);
  transform: translateX(3px);
}

.simple-page-article-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-box);
  padding: 35px;
}

.simple-page-display-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.simple-page-lead-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.simple-page-rule {
  border: 0;
  border-top: 1.5px solid var(--border-subtle);
  margin-bottom: 20px;
}

.simple-page-article-box h2 {
  font-size: 18px;
  font-weight: 850;
  margin-top: 24px;
  margin-bottom: 10px;
}

.simple-page-article-box p {
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 14px;
  text-align: justify;
}

.simple-page-article-box ul {
  margin-bottom: 14px;
  padding-left: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.simple-page-article-box li {
  margin-bottom: 6px;
}

.support-form-element {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin-top: 20px;
}

.form-row-double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 576px) {
  .form-row-double {
    grid-template-columns: 1fr;
  }
}

.form-input {
  background: var(--bg-base);
  border: 1.5px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  outline: none;
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--primary-brand);
}

.form-input.text-area {
  min-height: 140px;
  resize: vertical;
}

.btn-form-submit {
  background: var(--primary-brand);
  color: #FFFFFF;
  border: none;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-form-submit:hover {
  background: var(--primary-brand-hover);
}
