
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-main {
  background-color: #0b132b;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #00b4d8;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-shield {
  font-size: 28px;
  filter: drop-shadow(0 0 8px #00b4d8);
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f5d4, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.navigation-bar {
  display: flex;
  gap: 20px;
}

.nav-item {
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  color: #cbd5e1;
}

.nav-item:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.search-container {
  width: 280px;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #1c2541;
  border: 1px solid #3a506b;
  border-radius: 50px;
  padding: 6px 14px;
  gap: 8px;
}

.search-bar input {
  background: none;
  border: none;
  color: #ffffff;
  outline: none;
  font-size: 13px;
  width: 100%;
}

.search-bar input::placeholder {
  color: #6c757d;
}

.search-trigger {
  cursor: pointer;
  font-size: 14px;
}

.hero-jumbotron {
  background: radial-gradient(circle at top right, #1c2541, #0b132b);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 4px solid #00f5d4;
}

.hero-inner-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-trust-tag {
  display: inline-block;
  background-color: rgba(0, 245, 212, 0.1);
  border: 1px solid #00f5d4;
  color: #00f5d4;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-jumbotron h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-jumbotron p {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-search-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto 25px auto;
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 50px;
}

.hero-search-button {
  background: linear-gradient(135deg, #00b4d8, #00f5d4);
  color: #0b132b;
  border: none;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s;
}

.hero-search-button:hover {
  transform: scale(1.03);
}

.hero-chips-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-chips-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.hero-chips-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hot-search-chip {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  color: #e2e8f0;
}

.hot-search-chip:hover {
  background-color: #00b4d8;
  color: #0b132b;
  border-color: #00b4d8;
}

.grid-layout-columns {
  display: grid;
  grid-template-columns: 8fr 3.5fr;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.banner-premium-spot {
  background: linear-gradient(135deg, #100e17, #1d1a27);
  border: 1px solid #ff007f;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
}

.badge-premium-flash {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff0055, #ff5000);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.premium-layout-box {
  display: flex;
  gap: 25px;
  align-items: center;
}

.premium-visual-logo {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  background-color: #121214;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-details h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.premium-meta-subtitle {
  color: #a7a9be;
  font-size: 14px;
  margin-bottom: 12px;
}

.premium-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.premium-stars {
  color: #ffd166;
  font-size: 16px;
}

.premium-score {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.premium-badge-direct {
  background-color: rgba(0, 245, 212, 0.15);
  color: #00f5d4;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
}

.premium-buttons {
  display: flex;
  gap: 12px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #00f5d4, #00b4d8);
  color: #0b132b;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 245, 212, 0.5);
}

.btn-secondary-hero {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
}

.btn-secondary-hero:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.catalog-section {
  margin-bottom: 45px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-left: 5px solid #00b4d8;
  padding-left: 15px;
}

.section-heading-row h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0b132b;
}

.section-more-link {
  font-size: 13px;
  font-weight: 700;
  color: #00b4d8;
}

.cards-grid-display {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.app-compact-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.app-compact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}

.card-clickable-area {
  display: block;
}

.card-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-logo-holder {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 800;
  font-size: 18px;
  color: #00b4d8;
  border: 1px solid #e5e7eb;
}

.card-logo-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badges-holder {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.verified-pill {
  background-color: #e6fcf5;
  color: #0ca678;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.card-content-segment {
  margin-bottom: 15px;
}

.card-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-metadata-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.card-stars {
  color: #f59e0b;
  font-weight: 600;
}

.card-summary-desc {
  font-size: 12px;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  line-height: 1.6;
}

.card-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
}

.card-genre-pill {
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.card-direct-button {
  background-color: #0b132b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
}

.card-direct-button:hover {
  background-color: #00b4d8;
  color: #0b132b;
}

.sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-block-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3f4f6;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #00b4d8;
}

.sidebar-list-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.sidebar-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.rank-1 { background-color: #fef3c7; color: #d97706; }
.rank-2 { background-color: #e1f5fe; color: #0288d1; }
.rank-3 { background-color: #e8f5e9; color: #2e7d32; }

.sidebar-logo-frame {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #00b4d8;
  border: 1px solid #e5e7eb;
}

.sidebar-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-item-info {
  flex: 1;
}

.sidebar-item-title {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}

.sidebar-item-sub {
  font-size: 11px;
  color: #6b7280;
}

.sidebar-item-arrow {
  color: #00b4d8;
  font-size: 12px;
}

.sticky-sidebar-top {
  position: sticky;
  top: 90px;
}

.sidebar-pills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-trending {
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
}

.pill-trending:hover {
  background-color: #e0f2fe;
  border-color: #00b4d8;
  color: #00b4d8;
}

.info-guide-section {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 30px;
  margin-top: 20px;
}

.info-guide-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 20px;
}

.guides-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.guide-link-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background-color: #f8fafc;
}

.guide-link-card:hover {
  border-color: #00b4d8;
  background-color: #ffffff;
}

.guide-icon-box {
  font-size: 24px;
}

.guide-text-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.guide-text-box p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.app-detail-hero-section {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 30px;
  margin-bottom: 25px;
}

.detail-hero-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.detail-visual-logo {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  background-color: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 32px;
  color: #00b4d8;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.detail-visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-content {
  flex: 1;
}

.detail-display-title {
  font-size: 28px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.detail-author-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.developer-tag {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.badge-status-clean {
  background-color: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.detail-specs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.detail-stars-stars {
  color: #f59e0b;
}

.detail-rating-score {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

.specs-box {
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.detail-actions-panel {
  display: flex;
  gap: 12px;
}

.btn-main-action {
  background: linear-gradient(135deg, #00b4d8, #00f5d4);
  color: #0b132b;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.btn-main-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-sub-action {
  background-color: #f3f4f6;
  color: #374151;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 12px;
}

.btn-sub-action:hover {
  background-color: #e5e7eb;
}

.compliance-panel {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.compliance-icon-mark {
  font-size: 20px;
}

.compliance-text-box {
  font-size: 12px;
  color: #78350f;
}

.editorial-review-block {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 30px;
  margin-bottom: 30px;
}

.sub-section-title {
  font-size: 20px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 12px;
}

.content-formatted-container p {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 15px;
}

.content-formatted-container p:last-child {
  margin-bottom: 0;
}

.deployment-steps-panel {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 30px;
  margin-bottom: 30px;
}

.steps-grid-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step-card-item {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  position: relative;
}

.step-index-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0b132b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step-card-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.step-card-item p {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
}

.specs-table-container {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 30px;
  margin-bottom: 30px;
}

.technical-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.technical-specs-table tr {
  border-bottom: 1px solid #f3f4f6;
}

.technical-specs-table tr:last-child {
  border-bottom: none;
}

.technical-specs-table th {
  text-align: left;
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  width: 35%;
}

.technical-specs-table td {
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

.faq-accordions-block {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 30px;
}

.details-accordions-holder details {
  border-bottom: 1px solid #f3f4f6;
  padding: 15px 0;
}

.details-accordions-holder details:last-child {
  border-bottom: none;
}

.details-accordions-holder summary {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  cursor: pointer;
  outline: none;
}

.accordion-answer {
  font-size: 13px;
  color: #4b5563;
  margin-top: 10px;
  line-height: 1.6;
}

.text-center-panel {
  text-align: center;
}

.sidebar-brand-avatar {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  margin: 0 auto 15px auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  color: #00b4d8;
  border: 1px solid #e5e7eb;
}

.sidebar-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget-title {
  font-size: 16px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 4px;
}

.sidebar-widget-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 20px;
}

.fill-width-btn {
  display: block;
  text-align: center;
}

.sidebar-quick-assurances {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: #4b5563;
}

.sidebar-quick-assurances span {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.footer-main {
  background-color: #0b132b;
  color: #ffffff;
  padding-top: 60px;
  border-top: 4px solid #00b4d8;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr;
  gap: 40px;
}

.footer-brand-segment {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f5d4, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about-text {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-tag-wrap {
  display: flex;
  gap: 8px;
}

.footer-verified-badge {
  background-color: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.3);
  color: #00f5d4;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-link-group h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.footer-link-group a {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.footer-link-group a:hover {
  color: #00f5d4;
  transform: translateX(3px);
}

.footer-sub-bar {
  background-color: #070c1e;
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid #1c2541;
}

.terms-legal-block {
  font-size: 11px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.copyright-info {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-size: 12px;
  color: #6b7280;
}

.breadcrumb-item:hover {
  color: #00b4d8;
}

.breadcrumb-current {
  color: #1f2937;
  font-weight: 600;
}

.category-header-banner {
  background: radial-gradient(circle at top, #1c2541, #0b132b);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #ffffff;
  border-bottom: 3px solid #00f5d4;
  margin-bottom: 30px;
  margin-top: 30px;
}

.category-page-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-page-desc {
  font-size: 14px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}

.category-safety-alert {
  background-color: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.alert-icon {
  font-size: 20px;
}

.alert-body {
  font-size: 12px;
  color: #0369a1;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination-btn {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.pagination-btn:hover {
  border-color: #00b4d8;
  color: #00b4d8;
}

.pagination-btn.active {
  background-color: #0b132b;
  border-color: #0b132b;
  color: #ffffff;
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sidebar-nav-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav-pill {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  display: flex;
  justify-content: space-between;
}

.sidebar-nav-pill:hover {
  background-color: #f0fdfa;
  border-color: #00f5d4;
  color: #00b4d8;
}

.simple-page-article-box {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 40px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.simple-page-display-title {
  font-size: 32px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 10px;
}

.simple-page-lead-text {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 25px;
}

.simple-page-rule {
  border: none;
  height: 2px;
  background-color: #f3f4f6;
  margin-bottom: 30px;
}

.simple-page-article-box h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0b132b;
  margin-top: 25px;
  margin-bottom: 12px;
}

.simple-page-article-box p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 15px;
}

.simple-page-article-box ul {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #4b5563;
}

.simple-page-article-box li {
  margin-bottom: 8px;
}

.support-form-element {
  margin-top: 30px;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-input {
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 13px;
  outline: none;
  margin-bottom: 15px;
}

.form-input:focus {
  border-color: #00b4d8;
}

.form-input.text-area {
  height: 150px;
  resize: vertical;
}

.btn-form-submit {
  background-color: #0b132b;
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-form-submit:hover {
  background-color: #00b4d8;
}

@media (max-width: 1024px) {
  .grid-layout-columns {
    grid-template-columns: 1fr;
  }
  .sticky-sidebar-top {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  .navigation-bar {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .search-container {
    width: 100%;
  }
  .hero-jumbotron h1 {
    font-size: 28px;
  }
  .premium-layout-box {
    flex-direction: column;
    text-align: center;
  }
  .premium-buttons {
    flex-direction: column;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-hero-flex {
    flex-direction: column;
    text-align: center;
  }
  .detail-actions-panel {
    flex-direction: column;
  }
  .steps-grid-box {
    grid-template-columns: 1fr;
  }
  .form-row-double {
    grid-template-columns: 1fr;
  }
}

