:root {
  --bg-deep-space: #05070f;
  --bg-glass-card: rgba(13, 17, 33, 0.75);
  --bg-glass-card-hover: rgba(22, 28, 54, 0.9);
  --border-neon-pink: rgba(255, 0, 122, 0.3);
  --border-neon-cyan: rgba(0, 242, 254, 0.3);
  --border-soft: rgba(255, 255, 255, 0.07);
  --neon-pink: #ff007a;
  --neon-cyan: #00f2fe;
  --neon-purple: #7928ca;
  --text-pure: #ffffff;
  --text-smooth: #a0aec0;
  --text-darker: #4a5568;
  --star-gold: #ffb800;
  --radius-pill: 100px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --shadow-neon-pink: 0 0 15px rgba(255, 0, 122, 0.25);
  --shadow-neon-cyan: 0 0 15px rgba(0, 242, 254, 0.25);
  --shadow-box: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --font-family-store: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family-store);
  background-color: var(--bg-deep-space);
  color: var(--text-pure);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 0, 122, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  padding-bottom: 86px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-main {
  background: rgba(5, 7, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-shield {
  font-size: 26px;
  filter: drop-shadow(0 0 8px var(--neon-pink));
}

.brand-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navigation-bar {
  display: flex;
  gap: 22px;
}

.nav-item {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-smooth);
  transition: color 0.2s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.search-container {
  width: 240px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  border: 1px solid var(--border-soft);
}

.search-bar input {
  background: transparent;
  border: none;
  color: var(--text-pure);
  outline: none;
  width: 100%;
  font-size: 13px;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .navigation-bar, .search-container {
    display: none;
  }
}

.bottom-tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 7, 15, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 68px;
  z-index: 1000;
}

@media (min-width: 769px) {
  .bottom-tab-bar {
    display: none;
  }
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-smooth);
  font-size: 10.5px;
  font-weight: 700;
  width: 20%;
  height: 100%;
}

.tab-item.active {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.5));
}

.tab-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.hero-jumbotron {
  background: linear-gradient(180deg, rgba(13, 17, 33, 0) 0%, rgba(13, 17, 33, 0.6) 100%);
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}

.hero-inner-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 0, 122, 0.1), rgba(0, 242, 254, 0.1));
  color: #ffffff;
  border: 1px solid var(--border-neon-pink);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-jumbotron h1 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 10px;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .hero-jumbotron h1 {
    font-size: 36px;
  }
}

.hero-jumbotron p {
  color: var(--text-smooth);
  font-size: 13px;
  margin-bottom: 18px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .hero-jumbotron p {
    font-size: 15px;
  }
}

.hero-search-bar {
  display: flex;
  background: var(--bg-glass-card);
  border-radius: var(--radius-m);
  padding: 4px;
  border: 1px solid var(--border-soft);
  margin: 0 16px;
}

@media (min-width: 768px) {
  .hero-search-bar {
    margin: 0 auto;
    max-width: 500px;
  }
}

.hero-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-pure);
  width: 100%;
}

.hero-search-button {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--text-pure);
  border: none;
  font-weight: 800;
  padding: 0 16px;
  border-radius: var(--radius-s);
  cursor: pointer;
  font-size: 13px;
  box-shadow: var(--shadow-neon-pink);
  white-space: nowrap;
}

.swipe-chips-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  background: rgba(5, 7, 15, 0.3);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.swipe-chips-container::-webkit-scrollbar {
  display: none;
}

.swipe-chip-item {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-soft);
  color: var(--text-smooth);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.swipe-chip-item:hover {
  border-color: var(--neon-cyan);
  color: var(--text-pure);
}

.grid-layout-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .grid-layout-columns {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 30px;
  }
}

.banner-premium-spot {
  background: linear-gradient(135deg, rgba(255, 0, 122, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
  border: 1px solid var(--neon-pink);
  border-radius: var(--radius-m);
  padding: 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-neon-pink);
}

.badge-premium-flash {
  background: var(--neon-pink);
  color: var(--text-pure);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-s);
  display: inline-block;
  margin-bottom: 12px;
}

.premium-layout-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.premium-visual-logo {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1.5px solid var(--neon-pink);
  flex-shrink: 0;
}

.premium-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-details h2 {
  font-size: 17px;
  font-weight: 850;
  color: var(--text-pure);
}

.premium-meta-subtitle {
  color: var(--text-smooth);
  font-size: 12px;
  margin-bottom: 8px;
}

.premium-indicators {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.premium-stars {
  color: var(--star-gold);
  font-size: 12px;
}

.premium-score {
  font-size: 12px;
  font-weight: 700;
}

.premium-badge-direct {
  background: var(--border-neon-cyan);
  color: var(--neon-cyan);
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.premium-buttons {
  display: flex;
  gap: 8px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--text-pure);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  font-weight: 800;
  font-size: 12.5px;
  box-shadow: var(--shadow-neon-pink);
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-pure);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 12.5px;
}

.catalog-section {
  margin-bottom: 24px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.section-heading-row h2 {
  font-size: 16.5px;
  font-weight: 900;
}

.section-more-link {
  font-size: 12px;
  color: var(--neon-cyan);
  font-weight: 800;
}

.cards-grid-display {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 576px) {
  .cards-grid-display {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cards-grid-display {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-compact-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-box);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-compact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-compact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.app-compact-card:hover::before {
  opacity: 1;
}

.card-clickable-area {
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card-logo-holder {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--neon-pink);
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
}

.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-pure);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.card-metadata-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-smooth);
}

.card-stars {
  color: var(--star-gold);
}

.card-summary-desc {
  font-size: 12px;
  color: var(--text-smooth);
  margin-top: 8px;
  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: 12px 16px;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.card-genre-pill {
  font-size: 10px;
  color: var(--neon-cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-direct-button {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(0, 242, 254, 0.03));
  color: var(--neon-cyan);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border-neon-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.08);
  transition: all 0.2s ease;
}

.card-direct-button:hover {
  background: var(--neon-cyan);
  color: var(--bg-deep-space);
  box-shadow: var(--shadow-neon-cyan);
}

.sidebar-block-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-m);
  border: 1px solid var(--border-soft);
  padding: 16px;
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}

.sidebar-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rank-badge {
  font-size: 11.5px;
  font-weight: 950;
  color: var(--text-smooth);
  width: 18px;
}

.rank-1 { color: var(--neon-pink); }
.rank-2 { color: var(--neon-cyan); }
.rank-3 { color: #a855f7; }

.sidebar-logo-frame {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: var(--neon-cyan);
  border: 1px solid var(--border-soft);
}

.sidebar-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-item-info {
  flex-grow: 1;
  overflow: hidden;
}

.sidebar-item-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-pure);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-item-sub {
  font-size: 11px;
  color: var(--text-smooth);
}

.sidebar-item-arrow {
  color: var(--neon-cyan);
  font-size: 11px;
}

.info-guide-section {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 18px;
  margin-top: 16px;
}

.info-guide-section h2 {
  font-size: 15.5px;
  font-weight: 900;
  margin-bottom: 12px;
}

.guides-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.guide-link-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-s);
  padding: 12px;
  display: flex;
  gap: 12px;
  border: 1px solid var(--border-soft);
}

.guide-icon-box {
  font-size: 20px;
}

.guide-text-box h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 2px;
}

.guide-text-box p {
  font-size: 11.5px;
  color: var(--text-smooth);
}

.footer-main {
  background: rgba(5, 7, 15, 0.95);
  color: var(--text-smooth);
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .footer-container {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand-segment {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-pure);
}

.footer-about-text {
  font-size: 12.5px;
}

.footer-tag-wrap {
  display: flex;
  gap: 8px;
}

.footer-verified-badge {
  background: var(--border-neon-pink);
  color: var(--neon-pink);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border-neon-pink);
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-group h4 {
  color: var(--text-pure);
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-link-group a {
  font-size: 12.5px;
}

.footer-sub-bar {
  border-top: 1px solid var(--border-soft);
  margin-top: 24px;
  padding-top: 16px;
}

.terms-legal-block {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: justify;
}

.copyright-info {
  font-size: 11px;
  text-align: center;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-smooth);
  margin-bottom: 12px;
}

.breadcrumb-current {
  font-weight: 700;
  color: var(--text-pure);
}

.app-detail-hero-section {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 16px;
  margin-bottom: 16px;
}

.detail-hero-flex {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 480px) {
  .detail-hero-flex {
    flex-direction: column;
    text-align: center;
  }
}

.detail-visual-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border-neon-cyan);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.detail-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-content {
  flex-grow: 1;
}

.detail-display-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-pure);
}

.detail-author-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 10px 0;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .detail-author-row {
    justify-content: center;
  }
}

.developer-tag {
  font-size: 12px;
  color: var(--text-smooth);
}

.badge-status-clean {
  background: var(--border-neon-cyan);
  color: var(--neon-cyan);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.detail-specs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .detail-specs-row {
    justify-content: center;
  }
}

.detail-stars-stars {
  color: var(--star-gold);
  font-size: 12px;
}

.detail-rating-score {
  font-size: 12px;
  font-weight: 700;
}

.specs-box {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-pure);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
}

.detail-actions-panel {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .detail-actions-panel {
    flex-direction: column;
  }
}

.btn-main-action {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--text-pure);
  padding: 10px 20px;
  border-radius: var(--radius-s);
  font-weight: 800;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: var(--shadow-neon-pink);
}

.btn-sub-action {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure);
  padding: 10px 20px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compliance-panel {
  background: rgba(255, 184, 0, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: var(--radius-s);
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
}

.compliance-icon-mark {
  font-size: 16px;
}

.compliance-text-box {
  font-size: 12px;
  color: #ffe066;
}

.editorial-review-block {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 16px;
  margin-bottom: 16px;
}

.sub-section-title {
  font-size: 14.5px;
  font-weight: 850;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.content-formatted-container p {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-smooth);
  text-align: justify;
}

.content-formatted-container p:last-child {
  margin-bottom: 0;
}

.deployment-steps-panel {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 16px;
  margin-bottom: 16px;
}

.steps-grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 481px) {
  .steps-grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-s);
  padding: 12px;
  text-align: center;
}

.step-index-mark {
  width: 24px;
  height: 24px;
  background: var(--neon-pink);
  color: var(--text-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 12px;
  margin: 0 auto 8px auto;
  box-shadow: var(--shadow-neon-pink);
}

.step-card-item h4 {
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-pure);
}

.step-card-item p {
  font-size: 11px;
  color: var(--text-smooth);
}

.specs-table-container {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 16px;
  margin-bottom: 16px;
}

.technical-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.technical-specs-table tr {
  border-bottom: 1px solid var(--border-soft);
}

.technical-specs-table tr:last-child {
  border-bottom: none;
}

.technical-specs-table th {
  text-align: left;
  padding: 10px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-smooth);
  width: 40%;
}

.technical-specs-table td {
  padding: 10px;
  font-size: 12.5px;
  color: var(--text-pure);
}

.faq-accordions-block {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 16px;
}

.details-accordions-holder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.details-accordions-holder details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-s);
}

.details-accordions-holder summary {
  padding: 12px;
  font-weight: 800;
  font-size: 12.5px;
  cursor: pointer;
  outline: none;
}

.accordion-answer {
  padding: 0 12px 12px 12px;
  font-size: 12px;
  color: var(--text-smooth);
}

.text-center-panel {
  text-align: center;
}

.sidebar-brand-avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 10px auto;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--neon-cyan);
}

.sidebar-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget-title {
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 2px;
}

.sidebar-widget-sub {
  font-size: 11px;
  color: var(--text-smooth);
  margin-bottom: 12px;
}

.fill-width-btn {
  width: 100%;
}

.sidebar-quick-assurances {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--text-smooth);
  text-align: left;
  border-top: 1px solid var(--border-soft);
  padding-top: 8px;
}

.category-header-banner {
  background: linear-gradient(135deg, rgba(13, 17, 33, 0.8) 0%, rgba(5, 7, 15, 0.95) 100%);
  border: 1px solid var(--border-soft);
  padding: 24px;
  border-radius: var(--radius-m);
  margin-bottom: 16px;
}

.category-page-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}

.category-page-desc {
  color: var(--text-smooth);
  font-size: 12.5px;
}

.category-safety-alert {
  background: var(--border-neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: var(--radius-s);
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
}

.alert-icon {
  font-size: 14px;
}

.alert-body {
  font-size: 12px;
  color: var(--neon-cyan);
}

.pagination-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.pagination-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  color: var(--text-pure);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-s);
}

.pagination-btn.active {
  background: var(--neon-cyan);
  color: var(--bg-deep-space);
  border-color: var(--neon-cyan);
}

.pagination-btn.disabled {
  color: var(--text-darker);
  cursor: not-allowed;
}

.sidebar-nav-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-nav-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 800;
}

.simple-page-article-box {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 20px;
}

.simple-page-display-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.simple-page-lead-text {
  font-size: 13.5px;
  color: var(--text-smooth);
  margin-bottom: 16px;
}

.simple-page-rule {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.simple-page-article-box h2 {
  font-size: 15px;
  font-weight: 850;
  margin-top: 20px;
  margin-bottom: 8px;
}

.simple-page-article-box p {
  font-size: 13px;
  color: var(--text-smooth);
  margin-bottom: 12px;
  text-align: justify;
}

.simple-page-article-box ul {
  margin-bottom: 12px;
  padding-left: 16px;
  color: var(--text-smooth);
  font-size: 13px;
}

.simple-page-article-box li {
  margin-bottom: 4px;
}

.support-form-element {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  color: var(--text-pure);
}

.form-input:focus {
  border-color: var(--neon-cyan);
}

.form-input.text-area {
  min-height: 120px;
  resize: vertical;
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--text-pure);
  border: none;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px;
  border-radius: var(--radius-s);
  cursor: pointer;
  box-shadow: var(--shadow-neon-pink);
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 68px;
  left: 0;
  right: 0;
  background: rgba(13, 17, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-soft);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
}

.sticky-cta-name {
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.sticky-cta-button {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--text-pure);
  font-weight: 800;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-neon-pink);
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none;
  }
}
