*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #0f1219;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #ffd600;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ffe033;
}

ul {
  list-style: none;
}

input,
textarea,
button {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.jc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.jc-site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100vw;
  padding-top: 108px;
}

@media (max-width: 768px) {
  .jc-site-wrapper {
    padding-top: 66px;
  }
}

@media (max-width: 480px) {
  .jc-site-wrapper {
    padding-top: 54px;
  }
}

.jc-section-gap {
  padding-top: 48px;
}

.jc-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.jc-section-subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.jc-header {
  background: #1a1f2e;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #2a3147;
}
.jc-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.jc-header-logo {
  flex-shrink: 0;
}

.jc-logo-link img {
  height: 84px;
  width: auto;
}

.jc-header-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.jc-nav {
  display: flex;
}

.jc-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.jc-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: #c8d4e8;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.jc-nav-link:hover,
.jc-nav-link:focus {
  background: #252d42;
  color: #fff;
}

.jc-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.jc-review-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #ffd600;
  font-weight: 600;
  white-space: nowrap;
}

.jc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.jc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c8d4e8;
  border-radius: 2px;
  transition: all 0.3s;
}
.jc-burger:hover {
  background: #252d42;
}
.jc-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jc-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.jc-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.jc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.jc-btn-login {
  background: #2563eb;
  color: #fff;
}
.jc-btn-login:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.jc-btn-register {
  background: linear-gradient(135deg, #ffd600, #f59e0b);
  color: #1a1f2e;
}
.jc-btn-register:hover {
  background: linear-gradient(135deg, #ffe033, #fbbf24);
  color: #1a1f2e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 214, 0, 0.35);
}

.jc-btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.jc-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.jc-btn-ghost {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #3a4560;
}
.jc-btn-ghost:hover {
  background: #252d42;
  color: #e2e8f0;
}

.jc-btn-primary {
  background: #2563eb;
  color: #fff;
}
.jc-btn-primary:hover {
  background: #1d4ed8;
  color: #fff;
}

.jc-btn-lg {
  padding: 13px 28px;
  font-size: 1rem;
  border-radius: 10px;
}

.jc-btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.jc-btn-full {
  width: 100%;
  margin-top: 16px;
}

.jc-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.jc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jc-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 13, 25, 0.92) 40%,
    rgba(10, 13, 25, 0.65)
  );
}

.jc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 60px 0;
}

.jc-hero-headline {
  flex: 1;
  min-width: 0;
}

.jc-hero-badge {
  display: inline-block;
  background: rgba(255, 214, 0, 0.15);
  color: #ffd600;
  border: 1px solid rgba(255, 214, 0, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.jc-hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.jc-hero-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.jc-hero-stars {
  display: flex;
  gap: 3px;
}

.jc-star {
  font-size: 1.3rem;
  color: #475569;
}
.jc-star--filled {
  color: #ffd600;
}
.jc-star--half {
  color: #ffd600;
  opacity: 0.6;
}

.jc-hero-rating-val {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.jc-hero-rating-count {
  color: #94a3b8;
  font-size: 0.875rem;
}

.jc-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.jc-info-card {
  background: rgba(26, 31, 46, 0.95);
  border: 1px solid #2a3147;
  border-radius: 16px;
  padding: 24px;
  min-width: 340px;
  max-width: 420px;
  backdrop-filter: blur(8px);
}

.jc-info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a3147;
}

.jc-info-logo {
  height: 32px;
  width: auto;
}

.jc-info-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.jc-info-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
}

.jc-info-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.jc-info-param {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jc-info-param-label {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jc-info-param-val {
  font-size: 0.875rem;
  color: #e2e8f0;
  font-weight: 600;
}

.jc-info-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffd600;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 16px;
}
.jc-info-more-btn:hover {
  opacity: 0.8;
}

.jc-info-extended {
  border-top: 1px solid #2a3147;
  padding-top: 16px;
  margin-bottom: 16px;
}

.jc-info-section {
  margin-bottom: 12px;
}

.jc-info-section-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.jc-provider-logos,
.jc-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.jc-provider-badge,
.jc-payment-badge {
  background: #252d42;
  color: #c8d4e8;
  border: 1px solid #3a4560;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.jc-pros-cons-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #151924;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #2a3147;
}

.jc-pros-header,
.jc-cons-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.jc-pros-col .jc-pros-header {
  color: #22c55e;
}
.jc-cons-col .jc-cons-header {
  color: #ef4444;
}

.jc-pros-header h3,
.jc-cons-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
}

.jc-pros-list,
.jc-cons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jc-pros-list li,
.jc-cons-list li {
  font-size: 0.9rem;
  color: #c8d4e8;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  padding-left: 28px;
}
.jc-pros-list li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: #22c55e;
  font-weight: 700;
}
.jc-cons-list li::before {
  content: "✕";
  position: absolute;
  left: 10px;
  color: #ef4444;
  font-weight: 700;
}
.jc-pros-list li {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.jc-cons-list li {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.jc-toc-block {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 16px;
  padding: 24px;
}

.jc-toc-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.jc-toc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jc-toc-tab {
  background: #1f2740;
  color: #c8d4e8;
  border: 1px solid #2a3147;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.jc-toc-tab:hover {
  background: #252d42;
  color: #ffd600;
  border-color: #ffd600;
}

.jc-bonus-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #1a3a2a, #0f2419);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.jc-bonus-banner--mid {
  margin-top: 32px;
  margin-bottom: 0;
}

.jc-bonus-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.jc-bonus-banner-text {
  flex: 1;
}
.jc-bonus-banner-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.jc-bonus-banner-text span {
  font-size: 0.875rem;
  color: #94a3b8;
}

.jc-review-form-wrap {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 16px;
  padding: 32px;
}

.jc-review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jc-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c8d4e8;
}

.jc-form-input {
  background: #1f2740;
  border: 1px solid #2a3147;
  border-radius: 8px;
  color: #e2e8f0;
  padding: 12px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  width: 100%;
}
.jc-form-input:focus {
  border-color: #ffd600;
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.12);
}
.jc-form-input::placeholder {
  color: #475569;
}

.jc-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.jc-btn-submit {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 1rem;
}

.jc-ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.jc-rating-criterion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: #1f2740;
  border: 1px solid #2a3147;
  border-radius: 8px;
}

.jc-criterion-label {
  font-size: 0.8rem;
  color: #94a3b8;
  flex: 1;
}

.jc-star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 2px;
}
.jc-star-rating input {
  display: none;
}
.jc-star-rating label {
  font-size: 1.3rem;
  color: #334155;
  cursor: pointer;
  transition: color 0.15s;
}
.jc-star-rating input:checked ~ label,
.jc-star-rating label:hover,
.jc-star-rating label:hover ~ label {
  color: #ffd600;
}

.jc-overall-rating-preview {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: center;
}
.jc-overall-rating-preview strong {
  color: #ffd600;
  font-size: 1.1rem;
}

.jc-form-success {
  text-align: center;
  padding: 40px 24px;
}

.jc-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: #22c55e;
}

.jc-form-success h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.jc-form-success p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.jc-reviews-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.jc-filter-btn {
  background: #1f2740;
  color: #94a3b8;
  border: 1px solid #2a3147;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.jc-filter-btn:hover,
.jc-filter-btn--active {
  background: #ffd600;
  color: #1a1f2e;
  border-color: #ffd600;
}

.jc-reviews-container {
  display: grid;
  gap: 20px;
}

.jc-review-card {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}
.jc-review-card:hover {
  border-color: #3a4560;
}

.jc-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.jc-review-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jc-review-avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #2a3147;
  flex-shrink: 0;
}

.jc-review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jc-review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jc-review-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
}

.jc-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #64748b;
}
.jc-review-country img {
  border-radius: 2px;
}

.jc-review-date {
  font-size: 0.78rem;
  color: #475569;
}

.jc-review-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.jc-rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jc-rating-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffd600;
}

.jc-stars {
  display: flex;
  gap: 2px;
}

.jc-rating-details-toggle {
  font-size: 0.78rem;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.jc-rating-details-toggle:hover {
  color: #3b82f6;
}

.jc-rating-details {
  margin-top: 10px;
  background: #1a1f2e;
  border: 1px solid #2a3147;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.jc-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #94a3b8;
}
.jc-rating-row span:first-child {
  flex: 1;
  min-width: 0;
}

.jc-rating-bar {
  flex: 0 0 80px;
  height: 6px;
  background: #1f2740;
  border-radius: 3px;
  overflow: hidden;
}

.jc-rating-fill {
  height: 100%;
  background: #ffd600;
  border-radius: 3px;
  transition: width 0.3s;
}

.jc-rating-row span:last-child {
  min-width: 32px;
  text-align: right;
  color: #e2e8f0;
  font-weight: 600;
}

.jc-review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #64748b;
  background: #1f2740;
  border: 1px solid #2a3147;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.jc-source-link {
  color: #2563eb;
  text-decoration: underline;
}
.jc-source-link:hover {
  color: #3b82f6;
}

.jc-review-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.jc-review-text--collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: none;
}

.jc-expand-toggle {
  display: none;
}

.jc-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: #2563eb;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
.jc-expand-btn:hover {
  color: #3b82f6;
}

.jc-expand-toggle:checked ~ .jc-review-text--collapsed {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}
.jc-expand-toggle:checked + .jc-expand-btn {
  display: none;
}

.jc-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.jc-review-pros,
.jc-review-cons {
  border-radius: 8px;
  padding: 12px;
}
.jc-review-pros {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.jc-review-cons {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.jc-review-pros .jc-pros-header,
.jc-review-cons .jc-cons-header {
  margin-bottom: 8px;
}
.jc-review-pros .jc-pros-header {
  color: #22c55e;
}
.jc-review-cons .jc-cons-header {
  color: #ef4444;
}

.jc-review-pros ul,
.jc-review-cons ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jc-review-pros li,
.jc-review-cons li {
  font-size: 0.82rem;
  color: #94a3b8;
  padding-left: 10px;
  position: relative;
}
.jc-review-pros li::before {
  content: "+ ";
  color: #22c55e;
}
.jc-review-cons li::before {
  content: "− ";
  color: #ef4444;
}

.jc-review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.jc-media-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #2a3147;
}
.jc-media-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 8px;
}

.jc-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #1f2740;
  gap: 12px;
  flex-wrap: wrap;
}

.jc-vote-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jc-vote-label {
  font-size: 0.78rem;
  color: #475569;
}

.jc-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #2a3147;
  background: #1f2740;
  color: #94a3b8;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.jc-like-btn:hover {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}
.jc-dislike-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}
.jc-like-btn.voted {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
}
.jc-dislike-btn.voted {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
}

.jc-reply-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid #2a3147;
  background: #1f2740;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
}
.jc-reply-toggle-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}

.jc-reply-form {
  background: #1a1f2e;
  border: 1px solid #2a3147;
  border-radius: 10px;
  padding: 16px;
  margin-top: 14px;
}

.jc-reply-textarea {
  width: 100%;
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 8px;
  color: #e2e8f0;
  padding: 10px 14px;
  font-size: 0.875rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 10px;
}
.jc-reply-textarea:focus {
  border-color: #ffd600;
}

.jc-reply-form-actions {
  display: flex;
  gap: 8px;
}

.jc-comparison-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

.jc-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 12px;
  overflow: hidden;
  min-width: 600px;
}

.jc-comparison-table th,
.jc-comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #1f2740;
  font-size: 0.875rem;
}

.jc-comparison-table th {
  background: #1a1f2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jc-comparison-table td {
  color: #c8d4e8;
}

.jc-comparison-table tr:last-child td {
  border-bottom: none;
}

.jc-comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.jc-col-highlight {
  background: rgba(255, 214, 0, 0.04) !important;
  border-left: 2px solid rgba(255, 214, 0, 0.3);
  border-right: 2px solid rgba(255, 214, 0, 0.3);
}
.jc-col-highlight th {
  color: #ffd600 !important;
}

.jc-table-logo {
  height: 24px;
  width: auto;
  margin-bottom: 4px;
}

.jc-rating-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
}
.jc-rating-badge--high {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.jc-rating-badge--mid {
  background: rgba(234, 179, 8, 0.12);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

.jc-comparison-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.jc-compare-card {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 12px;
  padding: 18px;
}

.jc-compare-card--highlight {
  border-color: rgba(255, 214, 0, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 214, 0, 0.04),
    rgba(21, 25, 36, 1) 60%
  );
}

.jc-compare-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a3147;
}

.jc-compare-card-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.jc-compare-card-name img {
  height: 20px;
  width: auto;
}

.jc-compare-card-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jc-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  padding: 4px 0;
}

.jc-compare-row-label {
  color: #64748b;
  flex-shrink: 0;
}

.jc-compare-row-val {
  color: #e2e8f0;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.jc-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jc-advantage-card {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.25s;
}
.jc-advantage-card:hover {
  border-color: #3a4560;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.jc-adv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(255, 214, 0, 0.1),
    rgba(37, 99, 235, 0.1)
  );
  border: 1px solid #2a3147;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ffd600;
}

.jc-advantage-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.jc-advantage-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

.jc-review-content-block {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 16px;
  overflow: hidden;
}

.jc-review-content-meta {
  padding: 20px 24px;
  border-bottom: 1px solid #2a3147;
  background: #1a1f2e;
}

.jc-review-content-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jc-author-avatar-placeholder {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.jc-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
}
.jc-author-info span {
  font-size: 0.78rem;
  color: #64748b;
}

.jc-review-content-body {
  padding: 28px 32px;
}

.jc-review-content-body h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}

.jc-review-content-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px;
}

.jc-review-content-body p {
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.jc-review-content-body ul,
.jc-review-content-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.75;
}
.jc-review-content-body li {
  margin-bottom: 6px;
}
.jc-review-content-body ul li {
  list-style: disc;
}
.jc-review-content-body ol li {
  list-style: decimal;
}

.jc-review-content-body strong {
  color: #e2e8f0;
  font-weight: 600;
}

.jc-review-content-body a {
  color: #2563eb;
  text-decoration: underline;
}

.jc-review-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  border: 1px solid #2a3147;
  border-radius: 8px;
  overflow: hidden;
}
.jc-review-content-body th {
  background: #1a1f2e;
  padding: 10px 14px;
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px solid #2a3147;
  text-align: left;
}
.jc-review-content-body td {
  padding: 10px 14px;
  color: #c8d4e8;
  border-bottom: 1px solid #1f2740;
  font-size: 0.875rem;
}

.jc-review-content-body blockquote {
  border-left: 3px solid #ffd600;
  padding: 12px 16px;
  background: #1a1f2e;
  border-radius: 0 8px 8px 0;
  margin-bottom: 14px;
  font-style: italic;
  color: #94a3b8;
}

.jc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jc-faq-item {
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.jc-faq-item.is-open {
  border-color: #3a4560;
}

.jc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s;
}
.jc-faq-question:hover {
  color: #ffd600;
}

.jc-faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.jc-faq-item.is-open .jc-faq-icon {
  transform: rotate(180deg);
}

.jc-faq-answer {
  display: none;
  padding: 0 20px 18px;
}
.jc-faq-item.is-open .jc-faq-answer {
  display: block;
}
.jc-faq-answer p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}

.jc-footer {
  background: #0d1018;
  border-top: 1px solid #1f2740;
  padding: 48px 0 24px;
}

.jc-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.jc-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
}

.jc-footer-logo-link img {
  height: 78px;
  width: auto;
  margin-bottom: 12px;
}

.jc-footer-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}

.jc-footer-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.jc-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jc-footer-nav a {
  font-size: 0.85rem;
  color: #475569;
  transition: color 0.2s;
}
.jc-footer-nav a:hover {
  color: #94a3b8;
}

.jc-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jc-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #64748b;
  transition: all 0.2s;
}
.jc-trust-badge:hover {
  border-color: #3a4560;
  color: #94a3b8;
}

.jc-footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #1f2740;
  gap: 20px;
  flex-wrap: wrap;
}

.jc-footer-legal p {
  font-size: 0.78rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 6px;
}

.jc-footer-legal-sm {
  font-size: 0.72rem;
  color: #1e2a3a;
}

.jc-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #334155;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #475569;
  flex-shrink: 0;
}

.jc-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #1a1f2e, #12172a);
  border-top: 1px solid #2a3147;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.jc-sticky-widget.is-visible {
  transform: translateY(0);
}

.jc-widget-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.jc-widget-text {
  flex: 1;
  min-width: 0;
}

.jc-widget-bonus {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.jc-widget-sub {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}

.jc-widget-btn {
  white-space: nowrap;
}

.jc-widget-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #252d42;
  color: #64748b;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.2s;
}
.jc-widget-close:hover {
  background: #3a4560;
  color: #e2e8f0;
}

.jc-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.jc-modal[hidden] {
  display: none !important;
}

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

.jc-modal-box {
  position: relative;
  background: #151924;
  border: 1px solid #2a3147;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.jc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #2a3147;
}
.jc-modal-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.jc-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #1f2740;
  color: #64748b;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.jc-modal-close:hover {
  background: #252d42;
  color: #e2e8f0;
}

.jc-modal-body {
  padding: 20px 24px;
}

.jc-modal-params {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jc-modal-param {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #1a1f2e;
  border-radius: 8px;
  border: 1px solid #2a3147;
}
.jc-modal-param span {
  font-size: 0.85rem;
  color: #64748b;
}
.jc-modal-param strong {
  font-size: 0.85rem;
  color: #e2e8f0;
  text-align: right;
}

.jc-wp-data,
.jc-seo-meta {
  display: none !important;
}
div[id^="wp-"] {
  display: none;
}
.entry-content {
  display: none;
}
.wp-block {
  display: none;
}
.elementor-invisible {
  visibility: hidden;
}
.et_pb_module {
  opacity: 0;
}
.woocommerce-notices-wrapper {
  display: none;
}

@keyframes jcFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes jcPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.jc-review-card {
  animation: jcFadeInUp 0.4s ease both;
}
.jc-advantage-card:hover .jc-adv-icon {
  animation: jcPulse 0.5s ease;
}

@media (max-width: 1024px) {
  .jc-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .jc-info-card {
    min-width: 100%;
    max-width: 100%;
  }
  .jc-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jc-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .jc-burger {
    display: flex;
  }
  .jc-nav {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #1a1f2e;
    border-bottom: 1px solid #2a3147;
    padding: 16px;
    z-index: 99;
  }
  .jc-nav.is-open {
    display: flex;
  }
  .jc-nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .jc-nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .jc-header-right {
    gap: 8px;
  }
  .jc-review-count {
    display: none;
  }

  .jc-hero {
    min-height: auto;
  }
  .jc-hero-content {
    padding: 40px 0;
  }
  .jc-hero-title {
    font-size: 1.75rem;
  }
  .jc-hero-btns {
    flex-direction: column;
  }
  .jc-hero-btns .jc-btn {
    width: 100%;
    justify-content: center;
  }

  .jc-pros-cons-block {
    grid-template-columns: 1fr;
  }
  .jc-info-params {
    grid-template-columns: 1fr 1fr;
  }
  .jc-form-row {
    grid-template-columns: 1fr;
  }
  .jc-ratings-grid {
    grid-template-columns: 1fr;
  }
  .jc-review-header {
    flex-direction: column;
  }
  .jc-review-rating-block {
    align-items: flex-start;
  }
  .jc-review-pros-cons {
    grid-template-columns: 1fr;
  }
  .jc-advantages-grid {
    grid-template-columns: 1fr;
  }
  .jc-footer-top {
    grid-template-columns: 1fr;
  }
  .jc-footer-trust-col {
    grid-column: auto;
  }

  .jc-section-title {
    font-size: 1.4rem;
  }
  .jc-review-form-wrap {
    padding: 20px;
  }
  .jc-review-content-body {
    padding: 20px;
  }

  .jc-widget-inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .jc-widget-text {
    width: calc(100% - 44px);
  }
  .jc-btn-submit {
    width: 100%;
    justify-content: center;
  }

  .jc-toc-tabs {
    gap: 6px;
  }
  .jc-toc-tab {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .jc-bonus-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .jc-bonus-banner .jc-btn {
    width: 100%;
    justify-content: center;
  }
  .jc-comparison-mobile {
    display: flex;
  }
}

@media (max-width: 480px) {
  .jc-header-inner {
    padding: 10px 0;
  }
  .jc-logo-link img {
    height: 34px;
  }
  .jc-btn {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .jc-btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .jc-hero-title {
    font-size: 1.4rem;
  }
  .jc-info-card {
    padding: 16px;
  }
  .jc-pros-cons-block {
    padding: 18px;
  }

  .jc-compare-card {
    padding: 14px;
  }
  .jc-compare-row {
    font-size: 0.78rem;
  }
}
