/* =====================================================
   LISTACASINOADM — style3.css  (design CasinoGiusto)
   Clean white, trustworthy, high-conversion
   ===================================================== */

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

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

:root {
  --bg: #f0f2f7;
  --bg2: #ffffff;
  --card-bg: #ffffff;
  --accent: #00a762;
  --accent2: #00875a;
  --accent-glow: rgba(0, 167, 98, 0.20);
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border2: #d1d5db;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   HEADER
   ===================================================== */
.cg-header {
  background: #ffffff;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px 16px;
  text-align: center;
  position: relative;
}

.cg-header img {
  max-height: 100px;
  max-width: 380px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.cg-header-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.2px;
  margin-top: 8px;
}

.cg-header-title span {
  color: var(--accent);
}

.cg-date-line,
.cg-date-sep,
.cg-header-title .cg-date-line,
.cg-header-title .cg-date-sep {
  color: var(--text-body);
}

.cg-header-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

@media (max-width: 480px) {
  .cg-date-sep {
    display: none;
  }

  .cg-date-line {
    display: block;
    margin-top: 2px;
  }

  .cg-18-notice {
    display: none;
  }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.cg-trust-bar {
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 10px;
}

.cg-trust-bar::-webkit-scrollbar {
  display: none;
}

.cg-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.cg-trust-item .ti {
  font-size: 15px;
}

@media (max-width: 480px) {
  .cg-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: hidden;
    padding: 0;
  }

  .cg-trust-item {
    justify-content: center;
    padding: 8px 10px;
    font-size: 11px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .cg-trust-item:nth-child(2n) {
    border-right: none;
  }

  .cg-trust-item:last-child,
  .cg-trust-item:nth-last-child(2) {
    border-bottom: none;
  }
}

/* =====================================================
   MAIN CONTAINER
   ===================================================== */
.cg-wrap {
  max-width: 1250px;
  margin: 0 auto;
  padding: 24px 30px 80px;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.cg-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.cg-section-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cg-section-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================================================
   CASINO CARD
   ===================================================== */
.cg-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 190px 300px 1fr 260px;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  position: relative;
  min-height: 112px;
}

.cg-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* Rank badge */
.cg-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--text-muted);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) 0 7px 0;
  z-index: 2;
}

.cg-rank.rank-1 {
  background: #f59e0b;
}

.cg-rank.rank-2 {
  background: #9ca3af;
}

.cg-rank.rank-3 {
  background: #b45309;
}

/* Logo column */
.cg-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: #fafafa;
  border-right: 1px solid var(--border);
  align-self: stretch;
}

.cg-logo-col img {
  max-width: 140px;
  max-height: 76px;
  object-fit: contain;
}

/* Info column */
.cg-info-col {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid var(--border);
  align-self: stretch;
}

.cg-casino-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.cg-license {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.cg-dep-icons {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
}

/* Bonus column */
.cg-bonus-col {
  padding: 16px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
  border-right: 1px solid var(--border);
  align-self: stretch;
}

.cg-bonus-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.cg-bonus-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1.1;
}

.cg-bonus-ext {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

/* CTA column */
.cg-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 10px;
  background: #fafafa;
  align-self: stretch;
}

.cg-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #00c67a, #00a762);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 16px rgba(0, 198, 122, 0.30);
  transition: all 0.2s;
  white-space: nowrap;
}

.cg-btn:hover {
  background: linear-gradient(135deg, #00da87, #00bf72);
  box-shadow: 0 5px 18px rgba(0, 198, 122, 0.42);
  color: #fff;
  transform: scale(1.03);
}

.cg-tc {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

.cg-tc-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: center;
}

/* Group separator */
.cg-separator {
  text-align: center;
  padding: 2px 0 4px;
  color: var(--border2);
  font-size: 14px;
  letter-spacing: 6px;
  margin: 4px 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.cg-footer {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  background: #ffffff;
}

.cg-footer-adm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cg-footer-adm img {
  height: 26px;
  opacity: 0.7;
}

.cg-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
}

.cg-footer p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* =====================================================
   SMART BROWSER PROMPT
   ===================================================== */
.v2-smart-prompt {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 32px);
  max-width: 440px;
  background: rgba(17, 24, 39, 0.96);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 14px 16px;
  color: white;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 198, 122, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.v2-smart-prompt.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.v2-smart-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.v2-smart-text {
  font-size: 13px;
  line-height: 1.45;
  flex: 1;
}

.v2-smart-close {
  font-size: 22px;
  cursor: pointer;
  opacity: 0.4;
  flex-shrink: 0;
}

.v2-smart-btn {
  background: linear-gradient(135deg, #00c67a, #00a762);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}

.v2-ios-guide {
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 10002;
  display: none;
  flex-direction: column;
  align-items: flex-end;
}

.v2-ios-guide.active {
  display: flex !important;
}

.v2-ios-arrow {
  font-size: 32px;
  color: var(--accent);
  animation: bounce-arrow 1.3s ease-in-out infinite;
  margin-bottom: 10px;
  display: block;
}

.v2-ios-text {
  background: #111827;
  color: #e2e8f0;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 4px;
  border: 1px solid rgba(0, 198, 122, 0.25);
  max-width: 210px;
  text-align: right;
}

.v2-ios-text strong {
  color: var(--accent);
  font-weight: 800;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* =====================================================
   EDITORIAL / SEO CONTENT SECTION
   ===================================================== */
.cg-editorial {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 60px 20px 50px;
}

.cg-editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cg-ed-header {
  text-align: center;
  margin-bottom: 44px;
}

.cg-ed-header h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cg-ed-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.cg-ed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.cg-ed-card {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
  transition: box-shadow 0.2s;
}

.cg-ed-card:hover {
  box-shadow: var(--shadow-lg);
}

.cg-ed-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.cg-ed-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.cg-ed-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 10px;
}

.cg-ed-card p:last-child {
  margin-bottom: 0;
}

.cg-ed-disclaimer {
  background: linear-gradient(135deg, #fef3c7, #fff7e0);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 14px;
  color: #78350f;
  line-height: 1.7;
  text-align: center;
}

.cg-ed-disclaimer a {
  color: #92400e;
  font-weight: 700;
  margin-left: 6px;
}

.cg-ed-faq-header {
  margin: 44px 0 20px;
  text-align: center;
}

.cg-ed-faq-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
}

.cg-ed-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.cg-faq-item {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 11px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.cg-faq-item:hover {
  box-shadow: var(--shadow);
}

.cg-faq-item[open] {
  border-color: var(--accent);
}

.cg-faq-item summary {
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cg-faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  font-weight: 900;
}

.cg-faq-item[open] summary::after {
  content: '−';
}

.cg-faq-item p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 640px) {
  .cg-card {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
  }

  .cg-logo-col {
    grid-row: 1;
    grid-column: 1;
    padding: 12px 8px;
  }

  .cg-logo-col img {
    max-width: 58px;
    max-height: 36px;
  }

  .cg-info-col {
    grid-row: 1;
    grid-column: 2;
    padding: 10px 12px;
    border-right: none;
  }

  .cg-bonus-col {
    grid-row: 2;
    grid-column: 1 / -1;
    padding: 6px 12px 8px;
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .cg-bonus-main {
    font-size: 20px;
  }

  .cg-cta-col {
    grid-row: 3;
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    background: #f9fafb;
  }

  .cg-btn {
    font-size: 13px;
    padding: 10px;
  }

  .cg-wrap {
    padding: 14px 10px 60px;
  }

  .cg-trust-item {
    padding: 9px 14px;
    font-size: 11px;
  }

  .cg-casino-name {
    font-size: 13px;
  }

  .cg-header img {
    max-height: 72px;
  }

  .cg-ed-grid {
    grid-template-columns: 1fr;
  }

  .cg-ed-header h2 {
    font-size: 22px;
  }

  .cg-editorial {
    padding: 40px 16px 36px;
  }

  .cg-ed-card {
    padding: 20px;
  }
}