/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 16px; line-height: 1.6; color: #333; background-color: #ffffff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: #1559ed; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #4a7ff7; }
h1, h2, h3, h4, h5, h6 { color: #0a0e27; line-height: 1.3; margin-top: 0; }
p { margin-top: 0; }
ul, ol { padding-left: 20px; }
table { border-collapse: collapse; width: 100%; }
.wrapper { width: 100%; min-height: 100vh; overflow: hidden; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background-color: rgba(10, 14, 39, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21, 89, 237, 0.12); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header .header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header .header-logo img { height: 36px; width: auto; }
.header .header-nav { display: none; align-items: center; gap: 4px; }
.header .header-nav-list { list-style: none; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.header .header-nav-item { position: relative; }
.header .header-nav-link { display: flex; align-items: center; gap: 4px; color: #94a3b8; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: color 0.2s ease, background-color 0.2s ease; cursor: pointer; }
.header .header-nav-link:hover { color: #1559ed; background-color: rgba(21, 89, 237, 0.08); }
.header .header-nav-link .dropdown-arrow { font-size: 10px; transition: transform 0.2s ease; }
.header .header-nav-item:hover .dropdown-arrow { transform: rotate(180deg); }
.header .header-dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background-color: #1a1f3a; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 6px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4); }
.header .header-nav-item:hover .header-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.header .header-dropdown-list { list-style: none; padding: 0; margin: 0; }
.header .header-dropdown-link { display: block; padding: 10px 14px; font-size: 14px; color: #94a3b8; border-radius: 6px; transition: background-color 0.2s ease, color 0.2s ease; }
.header .header-dropdown-link:hover { background-color: rgba(21, 89, 237, 0.1); color: #1559ed; }
.header .header-cta { display: none; font-size: 13px; font-weight: 600; color: #ffffff; background: linear-gradient(135deg, #1559ed 0%, #0d47c4 100%); padding: 8px 20px; border-radius: 8px; transition: opacity 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 4px 15px rgba(21, 89, 237, 0.3); }
.header .header-cta:hover { opacity: 0.9; color: #ffffff; box-shadow: 0 6px 25px rgba(21, 89, 237, 0.5); }
.header .header-mobile-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.header .header-mobile-toggle-bar { width: 22px; height: 2px; background-color: #e0e6ed; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
@media (min-width: 768px) {
  .header .header-nav { display: flex; }
  .header .header-cta { display: inline-block; }
  .header .header-mobile-toggle { display: none; }
}
@media (min-width: 1024px) {
  .header .header-nav-link { font-size: 15px; padding: 8px 16px; }
}

/* === MOBILE MENU === */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 200; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background-color: #0f1629; z-index: 201; padding: 20px; overflow-y: auto; transition: right 0.3s ease; border-left: 1px solid rgba(21, 89, 237, 0.1); }
.mobile-menu.active { right: 0; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-menu-top img { height: 30px; width: auto; }
.mobile-menu-close { font-size: 22px; color: #94a3b8; cursor: pointer; padding: 4px; }
.mobile-menu-list { list-style: none; padding: 0; margin: 0 0 16px; }
.mobile-menu-link { display: block; font-size: 15px; color: #e0e6ed; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); transition: color 0.2s ease; }
.mobile-menu-link:hover { color: #1559ed; }
.mobile-menu-label { font-size: 11px; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 8px; padding-top: 8px; }
.mobile-menu-sub { list-style: none; padding: 0; margin: 0 0 16px; }
.mobile-menu-sub-link { display: block; font-size: 14px; color: #94a3b8; padding: 8px 0 8px 12px; border-left: 2px solid rgba(21, 89, 237, 0.2); transition: color 0.2s ease, border-color 0.2s ease; }
.mobile-menu-sub-link:hover { color: #1559ed; border-color: #1559ed; }

/* === HERO === */
.hero { padding: 96px 0 40px; position: relative; overflow: hidden; background-color: #0a0e27; color: #e0e6ed; }
.hero h1, .hero h2, .hero h3 { color: #ffffff; }
.hero::before { content: ""; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(circle, rgba(21, 89, 237, 0.08) 0%, rgba(21, 89, 237, 0.03) 40%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background-color: rgba(21, 89, 237, 0.1); border: 1px solid rgba(21, 89, 237, 0.2); border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: #1559ed; margin-bottom: 20px; }
.hero h1 { font-size: 26px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; max-width: 700px; }
.hero-description { font-size: 16px; color: #94a3b8; max-width: 620px; margin-bottom: 24px; line-height: 1.7; }
.hero-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.hero-nav-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.7); background-color: rgba(255, 255, 255, 0.05); transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease; }
.hero-nav-link:hover { border-color: rgba(21, 89, 237, 0.4); color: #ffffff; background-color: rgba(21, 89, 237, 0.1); }
.page-hero { padding: 96px 0 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); background-color: #0a0e27; color: #e0e6ed; }
.page-hero h1, .page-hero h2, .page-hero h3 { color: #ffffff; }
.page-hero .container { max-width: 1200px; }
.page-hero-breadcrumb { font-size: 13px; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; }
.page-hero-breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.page-hero-breadcrumb a:hover { color: #ffffff; }
.page-hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; max-width: 800px; }
.page-hero-description { font-size: 16px; color: rgba(255, 255, 255, 0.65); line-height: 1.7; margin-bottom: 20px; max-width: 700px; }
.page-hero-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.page-hero-nav a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.7); background-color: rgba(255, 255, 255, 0.05); transition: border-color 0.2s ease, color 0.2s ease; }
.page-hero-nav a:hover { border-color: rgba(21, 89, 237, 0.4); color: #ffffff; }
@media (min-width: 768px) {
  .hero { padding: 120px 0 48px; }
  .hero h1 { font-size: 38px; }
  .hero-description { font-size: 17px; }
  .page-hero { padding: 110px 0 40px; }
  .page-hero h1 { font-size: 36px; }
}
@media (min-width: 1024px) {
  .hero { padding: 130px 0 56px; }
  .hero h1 { font-size: 46px; }
  .page-hero h1 { font-size: 42px; }
}

/* === OPERATORS TABLE === */
.operators { padding: 40px 0 48px; }
.operators-controls { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.operators-search { width: 100%; padding: 10px 14px 10px 40px; font-size: 14px; color: #0a0e27; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; outline: none; transition: border-color 0.2s ease; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 14px center; }
.operators-search:focus { border-color: #1559ed; }
.operators-search::placeholder { color: #94a3b8; }
.operators-sort { display: flex; gap: 6px; flex-wrap: wrap; }
.operators-sort-btn { padding: 6px 12px; font-size: 12px; font-weight: 500; color: #64748b; background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; font-family: inherit; }
.operators-sort-btn:hover { color: #0a0e27; border-color: #cbd5e1; }
.operators-sort-btn.active { color: #1559ed; border-color: rgba(21, 89, 237, 0.3); background-color: rgba(21, 89, 237, 0.06); }
.operators-list, .operators-table { display: flex; flex-direction: column; gap: 12px; }
.operators-empty { text-align: center; padding: 40px 20px; color: #94a3b8; font-size: 15px; }

/* Operator Cards */
.operator-card { background-color: #ffffff; border: 4px solid #f2f4f5; border-radius: 10px; padding: 16px; transition: box-shadow 0.2s ease; box-shadow: 0 -2px 0 0 #b3d4fc; }
.operator-card:hover { box-shadow: 0 -2px 0 0 #1559ed, 0 4px 16px rgba(0, 0, 0, 0.08); }
.operator-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.operator-card-logo { width: 90px; height: 90px; border-radius: 10px; background-color: #f0f2f5; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.operator-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.operator-card-name { font-size: 18px; font-weight: 700; color: #0a0e27; flex-grow: 1; }
.operator-card-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.operator-badge { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; }
.operator-badge--live { color: #dc2626; background-color: rgba(220, 38, 38, 0.08); }
.operator-badge--rng { color: #6366f1; background-color: rgba(99, 102, 241, 0.08); }
.operator-card-bonus { background-color: rgba(21, 89, 237, 0.04); border: 1px solid rgba(21, 89, 237, 0.12); border-radius: 10px; padding: 12px 16px; margin-bottom: 14px; }
.operator-card-bonus-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #8a99a0; display: block; margin-bottom: 4px; }
.operator-card-bonus-text { font-size: 16px; color: #1559ed; font-weight: 700; }
.operator-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.operator-card-detail { background-color: #f2f4f5; border-radius: 6px; padding: 8px 10px; text-align: center; }
.detail-label, .operator-card-detail-label { font-size: 11px; font-weight: 400; color: #8a99a0; margin-bottom: 3px; display: block; }
.detail-value, .operator-card-detail-value { font-size: 14px; font-weight: 700; color: #0a0e27; display: block; }
.operator-card-terms { font-size: 11px; color: #979797; line-height: 1.5; margin-bottom: 14px; padding: 10px 14px; background-color: #f2f4f5; border-radius: 6px; }
.operator-card-actions { display: flex; gap: 8px; }
.operator-card-action { flex: 1; text-align: center; padding: 12px 14px; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.operator-card-action.primary { background: linear-gradient(135deg, #25aa1e 0%, #1e8118 68%, #197214 100%); color: #ffffff; box-shadow: 0 8px 20px rgba(29, 123, 24, 0.35); }
.operator-card-action.primary:hover { transform: translateY(-1px); color: #ffffff; background: linear-gradient(135deg, #2bc423 0%, #25aa1e 100%); box-shadow: 0 10px 25px rgba(29, 123, 24, 0.45); }
.operator-card-action.primary.disabled { cursor: default; pointer-events: none; }
.ops-card-cta-disabled { cursor: default; pointer-events: none; }
.operator-card-action.secondary { background-color: #f8fafc; border: 1px solid #e2e8f0; color: #1559ed; }
.operator-card-action.secondary:hover { background-color: #eef2ff; border-color: #1559ed; }
@media (min-width: 768px) {
  .operators { padding: 48px 0 64px; }
  .operators-controls { flex-direction: row; align-items: center; }
  .operators-search { width: 240px; }
  .operator-card { padding: 20px; }
  .operator-card-details { grid-template-columns: repeat(3, 1fr); }
  .operator-card-name { font-size: 20px; }
}

/* === CONTENT SECTIONS === */
.content-section { padding: 48px 0; }
.content-section .content-block { margin-bottom: 48px; max-width: 800px; }
.content-section .content-block:last-child { margin-bottom: 0; }
.content-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; padding-left: 16px; border-left: 3px solid #1559ed; }
.content-subtitle { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: #0a0e27; }
.content-text { font-size: 15px; color: #454545; line-height: 1.8; margin-bottom: 16px; }
.content-text strong { color: #0a0e27; }
.content-text a { color: #1559ed; text-decoration: underline; text-decoration-color: rgba(21, 89, 237, 0.3); text-underline-offset: 2px; }
.content-text a:hover { text-decoration-color: #1559ed; }
.content-card { background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.content-list { list-style: none; padding: 0; margin: 0 0 16px; }
.content-list li { padding: 8px 0; border-bottom: 1px solid #f2f4f5; font-size: 14px; color: #454545; display: flex; align-items: flex-start; gap: 10px; line-height: 1.7; }
.content-list li:last-child { border-bottom: none; }
.content-list li::before { content: "▸"; color: #1559ed; flex-shrink: 0; margin-top: 2px; }
.content-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.content-table th { text-align: left; padding: 12px 14px; background-color: rgba(21, 89, 237, 0.1); color: #0a0e27; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid rgba(21, 89, 237, 0.2); }
.content-table td { padding: 12px 14px; color: #454545; border-bottom: 1px solid #f2f4f5; }
.content-table tr:last-child td { border-bottom: none; }
.content-table td:first-child { color: #0a0e27; font-weight: 500; }
.content-section-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 24px; }
.content-callout { background-color: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.15); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.content-callout .content-text { margin-bottom: 0; }
.about-card { background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.about-card h3 { font-size: 18px; font-weight: 700; color: #0a0e27; margin-bottom: 16px; }
.about-card p { font-size: 15px; color: #454545; line-height: 1.8; margin: 0 0 12px; }
.about-card p:last-child { margin-bottom: 0; }
.author-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 32px 24px; }
.author-card-avatar { flex-shrink: 0; }
.author-card-avatar img { width: 120px; height: 120px; border-radius: 50%; }
.author-card-body { flex: 1; }
.author-card-name { font-size: 22px; font-weight: 800; color: #0a0e27; margin: 0 0 4px; }
.author-card-title { font-size: 14px; font-weight: 600; color: #1559ed; margin-bottom: 14px; }
.author-card-bio { font-size: 15px; color: #454545; line-height: 1.8; margin: 0 0 10px; }
.author-card-bio:last-child { margin-bottom: 0; }
.author-card-bio strong { color: #0a0e27; }
@media (min-width: 768px) {
  .author-card { flex-direction: row; text-align: left; padding: 32px; gap: 28px; }
  .author-card-avatar img { width: 140px; height: 140px; }
}
.pages-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
.page-link-card { display: block; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; }
.page-link-card:hover { border-color: #1559ed; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); }
.page-link-card-title { font-size: 16px; font-weight: 600; color: #0a0e27; margin-bottom: 6px; }
.page-link-card-text { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }
.content-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 20px; }
.content-grid-item { background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; }
.content-grid-item-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #0a0e27; }
.content-grid-item-text { font-size: 14px; color: #454545; line-height: 1.7; margin: 0; }
@media (min-width: 768px) {
  .content-section { padding: 56px 0; }
  .content-title { font-size: 26px; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .pages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .content-title { font-size: 28px; } }

/* === FAQ === */
.faq { padding: 48px 0; }
.faq h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 8px; overflow: hidden; transition: border-color 0.2s ease; }
.faq-item:hover { border-color: #cbd5e1; }
.faq-item.active { border-color: rgba(21, 89, 237, 0.3); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-size: 15px; font-weight: 500; color: #0a0e27; transition: color 0.2s ease; }
.faq-question::after { content: "+"; font-size: 20px; color: #94a3b8; transition: transform 0.3s ease, color 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-question::after { content: "−"; color: #1559ed; }
.faq-item.active .faq-question { color: #1559ed; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-content { padding: 0 20px 16px; font-size: 14px; color: #454545; line-height: 1.8; }
@media (min-width: 768px) { .faq h2 { font-size: 26px; } }

/* === CALCULATOR === */
.calculator { padding: 48px 0; }
.calculator-header { margin-bottom: 24px; }
.calculator-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; padding-left: 16px; border-left: 3px solid #1559ed; }
.calculator-description { font-size: 15px; color: #454545; line-height: 1.7; max-width: 700px; }
.calculator-description a { color: #1559ed; }
.calculator-tool { background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; max-width: 600px; }
.calculator-hand, .calculator-dealer { margin-bottom: 12px; }
.calculator-hand-label, .calculator-dealer-label { font-size: 13px; font-weight: 600; color: #1559ed; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.calculator-cards { display: flex; gap: 12px; margin-bottom: 16px; }
.calculator-card-select { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.calculator-card-select label { font-size: 12px; color: #64748b; }
.calculator-card-select select { padding: 8px 12px; font-size: 14px; color: #0a0e27; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; outline: none; font-family: inherit; }
.calculator-card-select select:focus { border-color: #1559ed; }
.calculator-hand-display { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; min-height: 40px; }
.calculator-visual-card { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 48px; border-radius: 6px; font-size: 16px; font-weight: 700; border: 2px solid #e2e8f0; background-color: #ffffff; }
.calculator-visual-card.black { color: #1a1a1a; }
.calculator-visual-card.red { color: #dc2626; border-color: rgba(220, 38, 38, 0.2); }
.calculator-hand-total { font-size: 14px; color: #64748b; margin-left: 8px; }
.calculator-hand-total strong { color: #0a0e27; }
.calculator-calculate { display: inline-block; padding: 10px 24px; background: linear-gradient(135deg, #1559ed 0%, #0d47c4 100%); color: #ffffff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: box-shadow 0.2s ease, transform 0.15s ease; box-shadow: 0 4px 15px rgba(21, 89, 237, 0.3); }
.calculator-calculate:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(21, 89, 237, 0.5); }
.calculator-results { margin-top: 20px; display: none; }
.calculator-results.visible { display: block; }
.calculator-results-title { font-size: 15px; font-weight: 600; color: #0a0e27; margin-bottom: 12px; }
.calculator-results-grid { display: flex; flex-direction: column; gap: 8px; }
.calculator-result-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; }
.calculator-result-item.recommended { border-color: rgba(21, 89, 237, 0.3); background-color: rgba(21, 89, 237, 0.06); }
.calculator-result-action { font-size: 14px; color: #0a0e27; font-weight: 500; }
.calculator-result-data { text-align: right; }
.calculator-result-probability { font-size: 16px; font-weight: 700; color: #0a0e27; }
.calculator-result-item.recommended .calculator-result-probability { color: #1559ed; }
.calculator-result-recommendation { font-size: 11px; color: #64748b; }
.calculator-result-item.recommended .calculator-result-recommendation { color: #1559ed; font-weight: 600; }
@media (min-width: 768px) {
  .calculator-title { font-size: 26px; }
}

/* === SIMULATOR === */
.simulator { padding: 48px 0; }
.simulator-header { margin-bottom: 24px; }
.simulator-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; padding-left: 16px; border-left: 3px solid #1559ed; }
.simulator-description { font-size: 15px; color: #454545; line-height: 1.7; max-width: 700px; }
.simulator-game { background: linear-gradient(145deg, #0d6b2f 0%, #0a5526 40%, #084a20 100%); border: 3px solid #073d1a; border-radius: 16px; padding: 24px 16px; max-width: 700px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.simulator-game::before { content: ""; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; pointer-events: none; }
.simulator-dealer, .simulator-player { margin-bottom: 20px; position: relative; z-index: 2; min-height: 100px; }
.simulator-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 8px; }
.simulator-cards { display: flex; justify-content: center; gap: 8px; min-height: 90px; flex-wrap: wrap; align-items: flex-end; }
.sim-card { width: 52px; height: 74px; border-radius: 6px; background-color: #ffffff; border: 1px solid #d0d0d0; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); animation: sim-deal 0.3s ease; }
.sim-card-value { font-size: 16px; font-weight: 700; }
.sim-card-suit { font-size: 12px; margin-top: 2px; }
.sim-card-red { color: #dc2626; }
.sim-card-black { color: #1a1a1a; }
.sim-card-hidden { background: linear-gradient(135deg, #1559ed 0%, #0d47c4 100%); border-color: #0d47c4; position: relative; }
.sim-card-hidden::after { content: ""; position: absolute; top: 4px; left: 4px; right: 4px; bottom: 4px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 3px; }
@keyframes sim-deal { from { opacity: 0; transform: translateY(-20px) rotate(-5deg); } to { opacity: 1; transform: translateY(0) rotate(0); } }
.simulator-total { display: inline-block; font-size: 13px; font-weight: 700; color: #ffffff; background-color: rgba(0, 0, 0, 0.35); padding: 4px 10px; border-radius: 12px; margin-top: 8px; }
.simulator-total.bust { background-color: rgba(220, 38, 38, 0.7); }
.simulator-total.blackjack { background-color: rgba(21, 89, 237, 0.8); }
.simulator-message { font-size: 15px; font-weight: 700; padding: 12px; margin-bottom: 12px; border-radius: 8px; text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.simulator-message.win { color: #10b981; background-color: rgba(16, 185, 129, 0.2); }
.simulator-message.lose { color: #ef4444; background-color: rgba(220, 38, 38, 0.2); }
.simulator-message.push { color: rgba(255, 255, 255, 0.7); background-color: rgba(255, 255, 255, 0.1); }
.simulator-actions { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; position: relative; z-index: 2; }
.simulator-btn { padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; color: #ffffff; transition: all 0.2s ease; min-width: 80px; text-align: center; }
.simulator-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.simulator-btn.primary { background-color: #10b981; box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4); }
.simulator-btn.primary:not(:disabled):hover { background-color: #059669; transform: translateY(-1px); }
.simulator-btn.secondary { background-color: #1559ed; box-shadow: 0 2px 8px rgba(21, 89, 237, 0.4); }
.simulator-btn.secondary:not(:disabled):hover { background-color: #0d47c4; transform: translateY(-1px); }
#sim-stand { background-color: #dc2626; box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4); }
#sim-stand:not(:disabled):hover { background-color: #b91c1c; }
#sim-double { background-color: #d97706; box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4); }
#sim-double:not(:disabled):hover { background-color: #b45309; }
.simulator-stats { display: flex; justify-content: center; gap: 24px; padding: 12px; background-color: rgba(0, 0, 0, 0.2); border-radius: 8px; position: relative; z-index: 2; }
.simulator-stat { text-align: center; }
.simulator-stat-value { font-size: 20px; font-weight: 800; color: #ffffff; }
.simulator-stat-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
@media (min-width: 768px) {
  .simulator-title { font-size: 26px; }
  .simulator-game { padding: 32px 28px; }
  .sim-card { width: 64px; height: 90px; }
  .sim-card-value { font-size: 18px; }
  .sim-card-suit { font-size: 14px; }
  .simulator-cards { gap: 8px; }
  .simulator-dealer, .simulator-player { min-height: 120px; }
  .simulator-btn { padding: 12px 28px; font-size: 15px; }
}

/* === FOOTER === */
.footer { padding: 48px 0 24px; border-top: 1px solid #e2e8f0; background-color: #0a0e27; color: #94a3b8; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { max-width: 300px; }
.footer-brand-logo { margin-bottom: 12px; }
.footer-brand-logo img { height: 32px; width: auto; }
.footer-brand-text { font-size: 14px; color: #475569; line-height: 1.7; }
.footer-links-group { display: flex; flex-direction: column; gap: 6px; }
.footer-links-title { font-size: 12px; font-weight: 600; color: #64748b; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-links-item a { font-size: 14px; color: #475569; transition: color 0.2s ease; }
.footer-links-item a:hover { color: #1559ed; }
.footer-responsible { background-color: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.12); border-radius: 10px; padding: 18px; margin-bottom: 24px; }
.footer-responsible-title { font-size: 13px; font-weight: 600; color: #f59e0b; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.footer-responsible-text { font-size: 13px; color: #64748b; line-height: 1.7; margin: 0; }
.footer-bottom { display: flex; flex-direction: column; gap: 12px; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-copyright { font-size: 12px; color: #334155; text-align: center; }
.footer-age { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background-color: rgba(239, 68, 68, 0.1); border: 2px solid rgba(239, 68, 68, 0.4); color: #ef4444; font-size: 12px; font-weight: 700; }
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* === REVIEW PAGES === */
.review { padding: 32px 0 48px; }
.review-hero-card { background-color: #ffffff; border: 4px solid #f2f4f5; border-radius: 12px; padding: 24px; margin-bottom: 32px; box-shadow: 0 -3px 0 0 #25aa1e, 0 4px 16px rgba(0, 0, 0, 0.06); }
.review-hero-top { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.review-hero-logo-wrap { width: 100px; height: 100px; border-radius: 12px; background-color: #f0f2f5; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.review-hero-logo { width: 100%; height: 100%; object-fit: contain; }
.review-hero-info { flex: 1; }
.review-hero-rank { font-size: 12px; font-weight: 700; color: #25aa1e; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.review-hero-name { font-size: 24px; font-weight: 800; color: #0a0e27; margin-bottom: 8px; }
.review-hero-bonus-label { font-size: 11px; font-weight: 600; color: #8a99a0; text-transform: uppercase; letter-spacing: 0.5px; }
.review-hero-bonus { font-size: 20px; font-weight: 800; color: #1559ed; }
.review-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }
.review-hero-stat { background-color: #f2f4f5; border-radius: 8px; padding: 12px; text-align: center; }
.review-hero-stat-value { font-size: 16px; font-weight: 800; color: #0a0e27; }
.review-hero-stat-label { font-size: 11px; color: #8a99a0; margin-top: 2px; }
.review-hero-cta { margin-bottom: 12px; }
.review-hero-btn { display: block; width: 100%; text-align: center; padding: 14px 20px; font-size: 16px; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #25aa1e 0%, #1e8118 68%, #197214 100%); border-radius: 8px; box-shadow: 0 8px 20px rgba(29, 123, 24, 0.3); cursor: default; }
.review-hero-terms { font-size: 11px; color: #979797; line-height: 1.5; text-align: center; }
.review-author { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 28px; }
.review-author-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.review-author-info { flex: 1; }
.review-author-label { font-size: 11px; color: #8a99a0; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.review-author-name { font-size: 14px; font-weight: 700; color: #0a0e27; }
.review-author-date { font-size: 12px; color: #8a99a0; white-space: nowrap; }
.review-content { max-width: 100%; }
.review-content h2 { font-size: 22px; font-weight: 700; color: #0a0e27; margin: 32px 0 14px; padding-left: 14px; border-left: 3px solid #1559ed; }
.review-content h3 { font-size: 17px; font-weight: 600; color: #0a0e27; margin: 24px 0 10px; }
.review-content p { font-size: 15px; color: #454545; line-height: 1.8; margin-bottom: 14px; }
.review-content ul { margin: 0 0 16px; padding-left: 20px; }
.review-content li { font-size: 14px; color: #454545; line-height: 1.7; margin-bottom: 6px; }
.review-content strong { color: #0a0e27; }
.review-content .review-pros-cons { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0; }
.review-content .review-pros, .review-content .review-cons { border-radius: 10px; padding: 16px 20px; }
.review-content .review-pros { background-color: rgba(37, 170, 30, 0.06); border: 1px solid rgba(37, 170, 30, 0.15); }
.review-content .review-cons { background-color: rgba(220, 38, 38, 0.04); border: 1px solid rgba(220, 38, 38, 0.12); }
.review-content .review-pros-title { font-size: 14px; font-weight: 700; color: #25aa1e; margin-bottom: 8px; }
.review-content .review-cons-title { font-size: 14px; font-weight: 700; color: #dc2626; margin-bottom: 8px; }
.review-content .review-pros ul, .review-content .review-cons ul { margin: 0; padding-left: 18px; }
.review-content .review-pros li { color: #1a5c17; }
.review-content .review-cons li { color: #7f1d1d; }
.review-back { padding: 24px 0 0; border-top: 1px solid #f2f4f5; margin-top: 32px; }
.review-back-link { font-size: 14px; font-weight: 600; color: #1559ed; }
.review-back-link:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .review { padding: 40px 0 64px; }
  .review-hero-card { padding: 28px 32px; }
  .review-hero-stats { grid-template-columns: repeat(4, 1fr); }
  .review-hero-name { font-size: 28px; }
  .review-hero-bonus { font-size: 24px; }
  .review-hero-btn { max-width: 320px; margin: 0 auto; display: block; }
  .review-content h2 { font-size: 24px; }
  .review-content .review-pros-cons { grid-template-columns: 1fr 1fr; }
}

/* === COOKIE NOTICE === */
.cookie-notice { position: fixed; bottom: -200px; left: 0; width: 100%; background-color: #ffffff; border-top: 1px solid #e2e8f0; padding: 16px 0; z-index: 300; transition: bottom 0.4s ease; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); }
.cookie-notice.visible { bottom: 0; }
.cookie-notice .container { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.cookie-notice-text { font-size: 13px; color: #454545; text-align: center; margin: 0; }
.cookie-notice-text a { color: #1559ed; }
.cookie-notice-actions { display: flex; gap: 8px; }
.cookie-notice-accept, .cookie-notice-reject { padding: 6px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.2s ease; }
.cookie-notice-accept { background: linear-gradient(135deg, #1559ed, #0d47c4); color: #ffffff; }
.cookie-notice-reject { background-color: #f8fafc; color: #64748b; border: 1px solid #e2e8f0; }
@media (min-width: 768px) {
  .cookie-notice .container { flex-direction: row; justify-content: space-between; }
  .cookie-notice-text { text-align: left; }
}

/* === WP ADMIN BAR FIX === */
body.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .header { top: 46px; } }
