/* Glory Casino Reviews - Main Styles */

:root {
  --color-header: #eef0f8;
  --color-primary: #3156eb;
  --color-secondary: #ed486f;
  --color-background: #f3f3f6;
  --color-text: #1a1a1a;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-star: #ffd700;
  --font-main: "Roboto", sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body.qw8x-body {
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.qp7x-header {
  background-color: var(--color-header);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.df8m-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wr5t-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bn2k-logo-link {
  display: block;
}

.vx4j-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.pl9w-review-count {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.hy6z-icon {
  flex-shrink: 0;
}

.mx8v-nav {
  flex: 1;
}

.lk4p-nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.zr7n-nav-item {
  display: block;
}

.jw2q-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

.jw2q-nav-link:hover {
  background-color: rgba(49, 86, 235, 0.1);
  color: var(--color-primary);
}

.nc5x-nav-icon {
  flex-shrink: 0;
}

.yk9m-header-actions {
  display: flex;
  gap: 12px;
}

.tp6w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  white-space: nowrap;
}

.tp6w-btn-login {
  background-color: var(--color-primary);
  color: white;
}

.tp6w-btn-login:hover {
  background-color: #2845d4;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tp6w-btn-register {
  background-color: var(--color-secondary);
  color: white;
}

.tp6w-btn-register:hover {
  background-color: #d63d5f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tp6w-btn-primary {
  background-color: var(--color-secondary);
  color: white;
}

.tp6w-btn-primary:hover {
  background-color: #d63d5f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tp6w-btn-secondary {
  background-color: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.tp6w-btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
}

.tp6w-btn-bonus {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b8a);
  color: white;
  font-size: 13px;
  padding: 8px 16px;
}

.tp6w-btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tp6w-btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.tp6w-btn-small {
  padding: 6px 12px;
  font-size: 13px;
}

.tp6w-btn-text {
  background: transparent;
  color: var(--color-primary);
  padding: 8px 16px;
}

.tp6w-btn-text:hover {
  background-color: rgba(49, 86, 235, 0.1);
}

.hv3k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.xm7p-burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hv3k-burger.active .xm7p-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hv3k-burger.active .xm7p-burger-line:nth-child(2) {
  opacity: 0;
}

.hv3k-burger.active .xm7p-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.rt8k-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.dn5w-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pq2x-hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ym4j-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(49, 86, 235, 0.9), rgba(237, 72, 111, 0.8));
}

.fv6z-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.wk3n-toc-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ls9p-toc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.bx7m-toc-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.jt4k-toc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: var(--color-background);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

.jt4k-toc-tab:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateX(4px);
}

.nq8x-casino-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.zv5m-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-border);
}

.pw7k-casino-logo {
  max-width: 200px;
  height: auto;
}

.ht2r-rating-display {
  text-align: right;
}

.xb9n-rating-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.km4p-stars {
  display: flex;
  gap: 4px;
  margin: 8px 0;
  justify-content: flex-end;
}

.ql6w-star {
  font-size: 24px;
  color: var(--color-star);
}

.ql6w-star-filled {
  color: var(--color-star);
}

.ql6w-star-half {
  background: linear-gradient(90deg, var(--color-star) 50%, #d1d5db 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yr3t-rating-count {
  font-size: 14px;
  color: var(--color-text-light);
}

.lp8v-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.wn2k-bonus-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

.wn2k-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.tx7m-bonus-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.qz4p-bonus-title {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.hv9x-bonus-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.bm5k-card-actions {
  display: flex;
  gap: 12px;
}

.bm5k-card-actions .tp6w-btn {
  flex: 1;
}

.xr9t-casino-info-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vn4k-info-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.pm7x-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.zk2w-info-item {
  padding: 12px;
  background-color: var(--color-background);
  border-radius: var(--radius-sm);
}

.ht8v-info-label {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.lq5n-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.yn7k-providers-logos,
.kp4x-payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.yn7k-providers-logos img,
.kp4x-payment-logos img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.wx3p-license-logo {
  display: block;
  margin-bottom: 4px;
}

.bx9m-more {
  font-size: 12px;
  color: var(--color-text-light);
}

.vt7n-pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.jx4m-pros-section,
.px5k-cons-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.qn8v-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.km2p-list {
  list-style: none;
}

.wr9x-list-item {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.jx4m-pros-section .wr9x-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 18px;
}

.px5k-cons-section .wr9x-list-item::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--color-error);
  font-weight: 700;
  font-size: 18px;
}

/* Main Content */
.zp4m-main {
  padding: 40px 0;
}

.vb3q-review-form-section,
.xt9r-user-reviews-section,
.yh2p-detailed-review {
  margin-bottom: 48px;
}

.nm5k-section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
  text-align: center;
}

/* Review Form */
.zx8k-review-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.vn7m-form-description {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 16px;
}

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

.bm9x-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

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

.px7w-form-label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}

.lk2m-form-input,
.lk2m-form-textarea {
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  transition: var(--transition);
}

.lk2m-form-input:focus,
.lk2m-form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(49, 86, 235, 0.1);
}

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

.yn4p-ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.wk7x-rating-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qm3n-rating-label {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
}

.vt8k-star-rating {
  display: flex;
  gap: 4px;
  cursor: pointer;
}

.vt8k-star-rating .ql6w-star {
  font-size: 24px;
  color: #d1d5db;
  transition: var(--transition);
}

.vt8k-star-rating .ql6w-star:hover,
.vt8k-star-rating .ql6w-star.active {
  color: var(--color-star);
}

.xm9k-success-message {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-success);
}

.xm9k-success-message h3 {
  font-size: 24px;
  color: var(--color-success);
  margin: 16px 0 8px;
}

.xm9k-success-message p {
  color: var(--color-text-light);
  font-size: 16px;
}

/* User Reviews */
.mb-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mb-review-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mb-review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.mb-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.mb-review-author-info {
  display: flex;
  gap: 12px;
  flex: 1;
}

.mb-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
}

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

.mb-review-author {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.mb-review-country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-light);
}

.mb-review-country img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.mb-review-date {
  font-size: 13px;
  color: var(--color-text-light);
}

.mb-review-rating {
  text-align: right;
}

.mb-rating-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.mb-rating-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

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

.mb-star {
  font-size: 18px;
  color: #d1d5db;
}

.mb-star-filled {
  color: var(--color-star);
}

.mb-rating-details-btn {
  margin-top: 8px;
  padding: 4px 12px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.mb-rating-details-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.mb-rating-details {
  margin-top: 12px;
  padding: 12px;
  background: var(--color-background);
  border-radius: var(--radius-sm);
}

.mb-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
}

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

.mb-detail-stars .mb-star {
  font-size: 14px;
}

.mb-review-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.mb-review-source {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.mb-review-source a {
  color: var(--color-primary);
  text-decoration: none;
}

.mb-review-source a:hover {
  text-decoration: underline;
}

.mb-review-body {
  margin-bottom: 16px;
}

.mb-review-text {
  line-height: 1.7;
  color: var(--color-text);
}

.mb-review-text-collapsed {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.mb-review-text-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(transparent, white);
}

.mb-review-expand {
  margin-top: 8px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.mb-review-expand:hover {
  background: var(--color-primary);
  color: white;
}

.mb-review-pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--color-background);
  border-radius: var(--radius-sm);
}

.mb-review-pros h5,
.mb-review-cons h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mb-review-pros ul,
.mb-review-cons ul {
  list-style: none;
}

.mb-pro-item,
.mb-con-item {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.5;
}

.mb-pro-item {
  color: var(--color-success);
}

.mb-con-item {
  color: var(--color-error);
}

.mb-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.mb-review-votes {
  display: flex;
  gap: 12px;
}

.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.mb-vote-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.mb-vote-count {
  font-weight: 600;
}

.mb-reply-btn {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.mb-reply-btn:hover {
  background: var(--color-primary);
  color: white;
}

.mb-reply-form {
  margin-top: 16px;
  padding: 16px;
  background: var(--color-background);
  border-radius: var(--radius-sm);
}

.mb-reply-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  resize: vertical;
  margin-bottom: 12px;
}

.mb-reply-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

/* FAQ Section */
.wn7k-faq-section {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.qx4m-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vt8n-faq-item {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pk2w-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--color-background);
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.pk2w-faq-question:hover {
  background: var(--color-primary);
  color: white;
}

.pk2w-faq-question:hover .ym5k-faq-icon {
  stroke: white;
}

.ym5k-faq-icon {
  flex-shrink: 0;
  transition: var(--transition);
}

.pk2w-faq-question[aria-expanded="true"] .ym5k-faq-icon {
  transform: rotate(180deg);
}

.lx9p-faq-answer {
  padding: 20px;
  background: white;
  line-height: 1.7;
  color: var(--color-text);
}

.lx9p-faq-answer p {
  margin-bottom: 12px;
}

.lx9p-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Review CTA Banner */
.xn7k-review-cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 32px 0;
}

.pm4w-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zt8m-cta-icon {
  font-size: 64px;
}

.vk2n-cta-text {
  flex: 1;
}

.qx5p-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.lm9w-cta-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.tp6w-btn-widget {
  background: white;
  color: var(--color-primary);
  font-weight: 700;
  padding: 14px 32px;
  font-size: 16px;
}

.tp6w-btn-widget:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Author Section */
.wm8k-author-section {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.px7n-author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.vt4m-author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-border);
  flex-shrink: 0;
}

.qk9x-author-info {
  flex: 1;
}

.lp2w-author-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.yn5k-author-bio {
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
}

.bx7m-author-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.jt9k-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-background);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.jt9k-social-link:hover {
  background: var(--color-primary);
  color: white;
}

/* Text Content */
.xj9k2-text-content {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.xj9k2-text-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--color-text);
}

.xj9k2-text-content h2:first-child {
  margin-top: 0;
}

.xj9k2-text-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--color-text);
}

.xj9k2-text-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--color-text);
}

.xj9k2-text-content ul,
.xj9k2-text-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.xj9k2-text-content li {
  line-height: 1.7;
  margin-bottom: 8px;
}

.xj9k2-text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.xj9k2-text-content th,
.xj9k2-text-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.xj9k2-text-content th {
  background: var(--color-background);
  font-weight: 600;
}

.xj9k2-text-content tr:hover {
  background: rgba(49, 86, 235, 0.05);
}

.xj9k2-text-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.xj9k2-text-content a:hover {
  text-decoration: underline;
}

/* Screenshots Section */
.zn4k-screenshots-section {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.qx5p-subsection-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}

.pm7x-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.wk8n-screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.wk8n-screenshot-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vt2m-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.lq9k-screenshot-caption {
  padding: 12px;
  background: var(--color-background);
  text-align: center;
  font-size: 14px;
  color: var(--color-text);
}

/* Video Section */
.xp7k-video-section {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.yn4m-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

/* Footer */
.qm8x-footer {
  background-color: var(--color-header);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.vn4k-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.px7m-footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wt5k-footer-logo {
  max-width: 150px;
  height: auto;
}

.lq9n-footer-text {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.6;
}

.ym2k-footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.bx7n-footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jw9k-footer-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.jw9k-footer-link:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.kp8x-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vn4m-trust-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
}

.vn4m-trust-logo:hover {
  opacity: 1;
}

.zt9k-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.lm5x-copyright,
.wn7k-legal {
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Sticky Widget */
.xm9k-sticky-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b8a);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.vt7n-widget-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qk4m-widget-text {
  color: white;
}

.pm8x-widget-bonus {
  font-size: 18px;
  font-weight: 700;
}

.yn5k-widget-subtitle {
  font-size: 13px;
  opacity: 0.9;
}

/* Unused styles for uniqueness */
.zx9k-unused-1 {
  display: none;
}
.qw7m-unused-2 {
  visibility: hidden;
}
.vt3n-unused-3 {
  opacity: 0;
}
.lk8p-unused-4 {
  position: absolute;
  left: -9999px;
}
.ym5x-unused-5 {
  clip: rect(0, 0, 0, 0);
}
