@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
  --clr-header: #004D37;
  --clr-bg: #093631;
  --clr-btn-primary: #FF5C00;
  --clr-btn-secondary: #6DDC52;
  --clr-text: #e8f5f0;
  --clr-text-muted: #a3c4b8;
  --clr-card: #0d4a3a;
  --clr-card-alt: #0a3d30;
  --clr-border: #1a6b52;
  --clr-gold: #ffd166;
  --clr-white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-btn: 0 2px 12px rgba(255,92,0,0.35);
  --transition: 0.22s ease;
  --font-main: 'Ubuntu', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--clr-btn-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-primary); }

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

h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; color: var(--clr-text); }

ul, ol { padding-left: 1.4em; margin-bottom: 1rem; }
li { margin-bottom: 0.4em; color: var(--clr-text); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem auto;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}
table th, table td {
  text-align: left;
  padding: 0.7rem 1rem;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}
table th { background: var(--clr-header); color: var(--clr-white); font-weight: 600; }
table tr:nth-child(even) { background: rgba(255,255,255,0.04); }
table tr:hover { background: rgba(109,220,82,0.08); }

blockquote {
  border-left: 4px solid var(--clr-btn-secondary);
  padding: 0.75rem 1.25rem;
  background: rgba(109,220,82,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
  font-style: italic;
  color: var(--clr-text-muted);
}

.xv3k9a-wrap { width: 100%; }
.pw8f2b-container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.65em 1.5em;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--clr-btn-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: #e85200; color: var(--clr-white); box-shadow: 0 4px 20px rgba(255,92,0,0.5); }
.btn-secondary {
  background: var(--clr-btn-secondary);
  color: #0a3d30;
  box-shadow: 0 2px 12px rgba(109,220,82,0.3);
}
.btn-secondary:hover { background: #5ac943; color: #0a3d30; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-btn-secondary);
  color: var(--clr-btn-secondary);
}
.btn-outline:hover { background: var(--clr-btn-secondary); color: #0a3d30; }
.btn-sm { padding: 0.45em 1em; font-size: 0.85rem; }
.btn-lg { padding: 0.85em 2em; font-size: 1.05rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
}
.header-logo a { display: flex; align-items: center; gap: 0.5rem; }
.header-logo img { height: 44px; width: auto; }
.header-logo .logo-text { font-size: 1.3rem; font-weight: 700; color: var(--clr-white); }

.header-nav { display: flex; align-items: center; gap: 1.5rem; flex: 1; justify-content: center; }
.header-nav a {
  color: var(--clr-text);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.3em 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.header-nav a:hover { color: var(--clr-btn-secondary); border-bottom-color: var(--clr-btn-secondary); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.online-count {
  font-size: 0.78rem;
  color: var(--clr-btn-secondary);
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin-right: 0.5rem;
}
.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-btn-secondary);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.75rem;
  animation: slideDown 0.25s ease;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.45em 0;
}
.mobile-menu a:hover { color: var(--clr-btn-secondary); }
.mobile-menu a svg { width: 18px; height: 18px; }
.mobile-menu-actions { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.mobile-menu-actions .btn { flex: 1; justify-content: center; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/playcroco-hero.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,54,49,0.92) 30%, rgba(9,54,49,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  max-width: 620px;
  padding-left: 2rem;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-btn-primary);
  color: var(--clr-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.hero-title { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--clr-white); margin-bottom: 0.75rem; }
.hero-title span { color: var(--clr-btn-primary); }
.hero-subtitle { font-size: 1.1rem; color: var(--clr-text); margin-bottom: 1.75rem; max-width: 480px; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 0.75rem; }

.breadcrumb-bar {
  background: rgba(0,77,55,0.6);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.6rem 0;
}
.breadcrumb-bar .pw8f2b-container { display: flex; align-items: center; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-btn-secondary); }
.breadcrumb .sep { color: var(--clr-border); }
.breadcrumb .current { color: var(--clr-btn-secondary); }

.main-content { padding: 2.5rem 0 4rem; }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 { color: var(--clr-white); }
.section-title p { color: var(--clr-text-muted); max-width: 560px; margin: 0.5rem auto 0; }

.bonuses-section { margin-bottom: 3rem; }
.bonuses-grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bonuses-grid::-webkit-scrollbar { height: 5px; }
.bonuses-grid::-webkit-scrollbar-track { background: var(--clr-bg); }
.bonuses-grid::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 3px; }

.bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-btn-primary), var(--clr-gold));
}
.bonus-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--clr-btn-primary);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
  border-radius: 100px;
  text-transform: uppercase;
}
.bonus-icon { font-size: 2.5rem; line-height: 1; }
.bonus-card h3 { font-size: 1.1rem; color: var(--clr-white); margin-bottom: 0; }
.bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}
.bonus-code-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.25);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
}
.bonus-code {
  font-family: monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-btn-secondary);
  letter-spacing: 0.07em;
  flex: 1;
}
.copy-code-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-muted);
  padding: 0.2em;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.copy-code-btn:hover { color: var(--clr-btn-secondary); }
.copy-code-btn svg { width: 16px; height: 16px; }
.bonus-terms { font-size: 0.78rem; color: var(--clr-text-muted); }
.bonus-card .btn { margin-top: auto; width: 100%; justify-content: center; }

.pros-cons-section { margin-bottom: 3rem; }
.pros-cons-grid {
  display: flex;
  gap: 1.25rem;
}
.pros-col, .cons-col {
  flex: 1;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.pros-col { border-top: 3px solid var(--clr-btn-secondary); }
.cons-col { border-top: 3px solid #e05252; }
.pros-col h3 { color: var(--clr-btn-secondary); display: flex; align-items: center; gap: 0.4em; margin-bottom: 1rem; }
.cons-col h3 { color: #e05252; display: flex; align-items: center; gap: 0.4em; margin-bottom: 1rem; }
.pros-col h3 svg, .cons-col h3 svg { width: 20px; height: 20px; }
.pros-list, .cons-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.93rem;
  color: var(--clr-text);
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li svg { color: var(--clr-btn-secondary); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.cons-list li svg { color: #e05252; flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }

.demo-section { margin-bottom: 3rem; }
.demo-wrapper {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.demo-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
}
.demo-header h3 { margin: 0; color: var(--clr-white); }
.demo-meta { font-size: 0.82rem; color: var(--clr-text-muted); display: flex; gap: 1rem; flex-wrap: wrap; }
.demo-meta span { display: flex; align-items: center; gap: 0.3em; }
.demo-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.demo-frame-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-note {
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-align: center;
  border-top: 1px solid var(--clr-border);
}

.review-section { margin-bottom: 3rem; }
.review-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
}

.review-box h2, .review-box h3, .review-box h4 { color: var(--clr-white); }
.review-box p { color: var(--clr-text); }
.review-box a { color: var(--clr-btn-secondary); }
.review-box a:hover { color: var(--clr-btn-primary); }
.review-box ul, .review-box ol { color: var(--clr-text); }
.review-box li { color: var(--clr-text); }
.review-box table th { background: var(--clr-header); }
.review-box strong { color: var(--clr-white); }
.review-box h2 { font-size: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); }
.review-box h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.review-box h3 { font-size: 1.2rem; margin-top: 1.25rem; }
.review-box h4 { font-size: 1rem; margin-top: 1rem; color: var(--clr-btn-secondary); }
.review-box img { border-radius: var(--radius-sm); margin: 1rem 0; }

.faq-section { margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--clr-btn-secondary); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--clr-white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-btn-secondary); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-icon { background: var(--clr-btn-secondary); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; color: var(--clr-text-muted); }
.faq-item.is-open .faq-icon svg { color: #0a3d30; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.is-open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--clr-text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer-inner a { color: var(--clr-btn-secondary); }

.author-section { margin-bottom: 3rem; }
.author-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-btn-secondary);
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name { font-size: 1.2rem; font-weight: 700; color: var(--clr-white); margin-bottom: 0.15rem; }
.author-title { font-size: 0.88rem; color: var(--clr-btn-secondary); margin-bottom: 0.75rem; }
.author-bio { font-size: 0.92rem; color: var(--clr-text); line-height: 1.65; margin-bottom: 1rem; }
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
}
.author-meta span { display: flex; align-items: center; gap: 0.35em; }
.author-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.author-link {
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.3em 0.8em;
  transition: color var(--transition), border-color var(--transition);
}
.author-link:hover { color: var(--clr-btn-secondary); border-color: var(--clr-btn-secondary); }
.author-link svg { width: 14px; height: 14px; }

.site-footer {
  background: var(--clr-header);
  border-top: 2px solid var(--clr-border);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand { flex: 0 0 220px; }
.footer-logo-link{display: block; width: fit-content;}
.footer-brand .footer-logo img { height: 42px;width: auto; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.84rem; color: var(--clr-text-muted); line-height: 1.6; }
.footer-country {
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-nav { flex: 1; min-width: 140px; }
.footer-nav h4 {
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav li a { font-size: 0.86rem; color: var(--clr-text-muted); }
.footer-nav li a:hover { color: var(--clr-btn-secondary); }

.footer-trust { flex: 0 0 280px; }
.footer-trust h4 {
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.35em 0.75em;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35em;
}
.trust-badge svg { width: 14px; height: 14px; }

.footer-payments { flex: 0 0 100%; }
.footer-payments h4 {
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.payment-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.4em 0.9em;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.footer-socials { display: flex; gap: 0.6rem; margin-top: 0.75rem; flex-wrap: wrap; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--clr-btn-secondary); color: #0a3d30; }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-providers h4 {
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.provider-logos { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.provider-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.4em 0.9em;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 0.75rem;
}
.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.footer-email a { color: var(--clr-text-muted); }
.footer-email a:hover { color: var(--clr-btn-secondary); }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--clr-header);
  border-top: 2px solid var(--clr-btn-primary);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.sticky-widget.is-hidden { transform: translateY(100%); }
.widget-text { flex: 1; }
.widget-code {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(0,0,0,0.3);
  border: 1px dashed var(--clr-btn-secondary);
  border-radius: var(--radius-sm);
  padding: 0.3em 0.8em;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-btn-secondary);
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background var(--transition);
}
.widget-code:hover { background: rgba(109,220,82,0.1); }
.widget-label { font-size: 0.82rem; color: var(--clr-text-muted); display: block; margin-bottom: 0.2rem; }
.widget-bonus { font-size: 0.9rem; color: var(--clr-white); font-weight: 600; }
.widget-actions { display: flex; align-items: center; gap: 0.6rem; }
.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-muted);
  padding: 0.25em;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.widget-close:hover { color: var(--clr-white); }
.widget-close svg { width: 18px; height: 18px; }

.info-page { padding: 3rem 0; }
.info-page h1 { margin-bottom: 1.5rem; }
.info-page .content-inner {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
}
.info-page .content-inner h2 { font-size: 1.4rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); }
.info-page .content-inner h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.info-page .content-inner p { color: var(--clr-text); }
.info-page .content-inner a { color: var(--clr-btn-secondary); }

.xv3k9a-wrap { display: none; }
.pw8f2b-hidden { display: none; }
.bg9m3c-spacer { height: 1px; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  .burger-btn { display: flex; }
  .pros-cons-grid { flex-direction: column; }
  .bonus-card { flex: 0 0 280px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-links { justify-content: center; }
  .author-meta { justify-content: center; }
  .footer-top { flex-direction: column; }
  .footer-brand { flex: unset; }
  .footer-trust { flex: unset; min-width: 0; }
  .sticky-widget { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .widget-actions { justify-content: space-between; }
  .review-box {padding: 28px;}
  .author-card {padding: 28px;}
}

@media (max-width: 600px) {
  .hero-content { padding: 3rem 1.25rem; max-width: 100%; }
  .header-actions .btn { display: none; }
  .header-actions .btn.btn-signup-mobile { display: inline-flex; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .demo-meta {display: none;}
  .review-box {padding: 24px;}
  .author-card {padding: 24px;}
}
@media (max-width: 480px) {
  .review-box {padding: 20px;}
  .author-card {padding: 20px;}
}
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.wp-content-placeholder { display: none; }
.elementor-section { pointer-events: none; position: absolute; opacity: 0; height: 0; overflow: hidden; }
.wpml-ls-legacy-list-horizontal { display: none; }
.wpcf7-form-control-wrap { display: none; }
