/* Ozoon Casino - Main Stylesheet */
/* Dark Grey Theme with Gold Accent */

:root {
  --primary: #2c2c2c;
  --primary-dark: #1a1a1a;
  --gold: #f0b429;
  --success-green: #2ecc71;
  --warning-orange: #e67e22;
  --bg: #121212;
  --surface: #1e1e1e;
  --surface2: #2a2a2a;
  --text: #f0f0f0;
  --text2: #b0b0b0;
  --text3: #6c6c6c;
  --border: #333333;
  --border-light: #2c2c2c;
  --star: #ffc107;
  --shadow: 0 2px 8px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-small: 8px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 80px;
}

/* Header */
.header {
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
}
.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 12px;
}
.search-bar {
  flex: 1;
  max-width: 600px;
  position: relative;
  display: none;
}
.search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 16px;
  outline: none;
  background: var(--surface2);
  color: var(--text);
  transition: all 0.2s;
}
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.2);
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text2);
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  font-size: 18px;
  display: none;
}
.search-clear.visible {
  display: block;
}
.search-results-count {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  display: none;
}
.search-highlight {
  background: var(--gold);
  color: #000;
  padding: 2px 0;
  border-radius: 2px;
}
.no-results-message {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  display: none;
}
.no-results-message.visible {
  display: block;
}

/* Responsive header */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }
  .logo {
    justify-content: center;
    font-size: 20px;
    width: 100%;
  }
  .search-bar {
    display: none !important;
  }
  .aff-disclaimer-btn {
    margin-left: 0;
    order: 2;
  }
}
@media (min-width: 769px) {
  .search-bar {
    display: block;
  }
  .header-container {
    align-items: center;
  }
}

/* Hero section */
.app-hero {
  padding: 24px 16px;
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
  border-bottom: 1px solid var(--border);
}
.app-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.app-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  background: var(--surface2);
  border: 2px solid var(--gold);
}
.app-info {
  flex: 1;
}
.app-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gold);
}
.app-developer {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 8px;
}
.app-developer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.app-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-stars {
  color: var(--star);
  font-size: 14px;
}
.rating-value {
  font-weight: 700;
  font-size: 14px;
}
.rating-count {
  font-size: 14px;
  color: var(--text2);
}
.app-badges {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.badge {
  background: var(--surface2);
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.badge.editors-choice {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.badge.gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.app-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.install-btn {
  flex: 1;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(240,180,41,0.3);
}
.install-btn:hover {
  background: #e0a020;
  transform: translateY(-1px);
}
.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 64px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text2);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}
.share-btn svg {
  width: 20px;
  height: 20px;
}
.install-hint {
  display: none;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 12px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text2);
}
.install-hint.show {
  display: block;
}

/* Screenshots */
.screenshots-container {
  padding: 20px 16px;
  background: var(--bg);
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.screenshots-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
}
.screenshots-scroll::-webkit-scrollbar {
  display: none;
}
.screenshot {
  height: 360px;
  width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-shrink: 0;
  object-fit: cover;
  background: var(--surface2);
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  background: var(--surface);
  position: sticky;
  top: 64px;
  z-index: 99;
  overflow-x: auto;
}
.tab {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-content {
  display: none;
  padding: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.tab-content.active {
  display: block;
}

/* Table of contents */
.toc-wrapper {
  background: var(--surface2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 20px 0;
  overflow: hidden;
}
.toc-details {
  width: 100%;
}
.toc-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  user-select: none;
  background: var(--surface2);
}
.toc-summary::-webkit-details-marker {
  display: none;
}
.toc-arrow {
  font-size: 12px;
  transition: transform 0.3s;
}
.toc-details[open] .toc-arrow {
  transform: rotate(180deg);
}
.toc-content {
  padding: 0 16px 16px;
  background: var(--surface2);
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li {
  margin-bottom: 4px;
}
.toc-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-small);
  transition: all 0.2s;
}
.toc-list a:hover {
  background: var(--border-light);
  color: var(--gold);
}
.toc-list .toc-h2 {
  font-weight: 700;
}
.toc-list .toc-h3 {
  padding-left: 24px;
  font-size: 13px;
  color: var(--text2);
}

/* Description / content */
.description {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.description h2,
.description h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 16px 0;
  scroll-margin-top: 100px;
  color: var(--gold);
}
.description h3 {
  font-size: 17px;
}
.description p {
  margin-bottom: 16px;
}
.description ul {
  margin-left: 24px;
  margin-bottom: 16px;
}
.description li {
  margin-bottom: 8px;
}

/* Game categories */
.game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.game-category-card {
  background: linear-gradient(135deg, var(--gold) 0%, #c99a1e 100%);
  color: #000;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.game-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,180,41,0.3);
  border-color: var(--gold);
}
.game-category-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.game-category-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.game-category-count {
  font-size: 12px;
  opacity: 0.9;
}

/* Promo cards */
.promo-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: "🎰";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 60px;
  opacity: 0.1;
}
.promo-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.promo-details {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text2);
}
.promo-table {
  width: 100%;
  font-size: 14px;
  margin-top: 16px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}
.promo-table td,
.promo-table th {
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
}
.promo-table th {
  background: var(--surface2);
  font-weight: 600;
  text-align: left;
}
.promo-table tr:last-child td {
  border-bottom: none;
}
.promo-code {
  background: var(--surface);
  padding: 8px 16px;
  border-radius: var(--radius-small);
  font-family: monospace;
  font-size: 14px;
  margin: 4px 0;
  border-left: 4px solid var(--gold);
  display: inline-block;
  font-weight: 700;
  color: var(--gold);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.stat-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(240,180,41,0.15);
}
.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.4;
}

/* Live status */
.live-status-container {
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  border: 1px solid var(--border);
}
.live-status {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.status-item {
  text-align: center;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 12px;
  min-width: 140px;
  transition: all 0.3s;
  border: 2px solid var(--border);
}
.status-item.updating {
  border-color: var(--gold);
  animation: pulse 1s ease-in-out;
}
.status-online {
  color: var(--success-green);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.status-online::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
}
.status-count {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0;
}
.status-label {
  font-size: 13px;
  color: var(--text2);
  font-weight: 600;
}
.update-indicator {
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  margin-top: 12px;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Expert review */
.expert-review-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  border: 2px solid var(--border);
}
.expert-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.expert-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.expert-info {
  flex: 1;
  min-width: 200px;
}
.expert-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.expert-title {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.expert-bio {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.expert-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.expert-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}
.review-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.review-score {
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--border);
  font-weight: 600;
}
.review-score strong {
  color: var(--gold);
  font-size: 16px;
}
.expert-review-content {
  font-size: 15px;
  line-height: 1.8;
}
.expert-review-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 12px 0;
  color: var(--gold);
}
.expert-review-content p {
  margin-bottom: 16px;
}
.expert-review-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}
.expert-review-content li {
  margin-bottom: 8px;
}
.expert-verdict {
  background: var(--surface);
  border-left: 4px solid var(--gold);
  padding: 20px;
  margin-top: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
}

/* Ratings bars */
.ratings-overview {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.overall-rating {
  text-align: center;
  min-width: 140px;
}
.rating-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.rating-stars-large {
  color: var(--star);
  font-size: 24px;
  margin: 8px 0;
}
.rating-total {
  font-size: 14px;
  color: var(--text2);
}
.rating-bars {
  flex: 1;
  min-width: 250px;
}
.rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.bar-label {
  font-size: 12px;
  color: var(--text2);
  width: 60px;
  font-weight: 600;
}
.bar-container {
  flex: 1;
  height: 10px;
  background: var(--border);
  border-radius: 5px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--star);
  border-radius: 5px;
  transition: width 1s ease;
}
.bar-count {
  font-size: 12px;
  color: var(--text2);
  width: 40px;
  text-align: right;
}

/* Sister casinos */
.sister-casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.sister-casino-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
}
.sister-casino-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(240,180,41,0.12);
}
.sister-casino-card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 12px;
  object-fit: cover;
}
.sister-casino-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--gold);
}
.sister-casino-rating {
  font-size: 13px;
  color: var(--star);
  font-weight: 600;
}

/* Details table */
.details-table {
  width: 100%;
  border-collapse: collapse;
}
.details-row {
  border-bottom: 1px solid var(--border);
}
.details-row:last-child {
  border-bottom: none;
}
.details-cell {
  padding: 16px 0;
  vertical-align: top;
  font-size: 15px;
}
.details-cell:first-child {
  color: var(--text2);
  width: 140px;
  font-weight: 600;
}
.details-cell a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ */
.faq-container {
  margin: 24px 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question.active {
  color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text2);
  line-height: 1.6;
  font-size: 15px;
}
.faq-answer.active {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-toggle {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

/* Affiliate disclaimer button */
.aff-disclaimer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px 6px 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 12px;
}
.aff-disclaimer-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.aff-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.aff-disclaimer-popup {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}
.aff-disclaimer-popup.show {
  visibility: visible;
  opacity: 1;
}
.aff-close {
  float: right;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text2);
  cursor: pointer;
  line-height: 1;
}
.aff-close:hover {
  color: var(--gold);
}

/* Exit modal */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 9999;
}
.exit-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.exit-modal-box {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  margin: 20px;
  border: 2px solid var(--gold);
}
.exit-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text2);
  cursor: pointer;
  line-height: 1;
}
.exit-close:hover {
  color: var(--gold);
}
.exit-modal-box h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
}
.exit-modal-box p {
  margin-bottom: 24px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  background: var(--surface);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.disclaimer {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--surface2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.footer-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-badge {
  height: 40px;
  width: auto;
  opacity: 0.8;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-link {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--gold);
}
.copyright {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 100;
}
.cta-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 24px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.cta-primary {
  background: var(--gold);
  color: #000;
}
.cta-primary:hover {
  background: #e0a020;
  transform: translateY(-1px);
}
.cta-secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}
.cta-secondary:hover {
  background: var(--border-light);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .header-container,
  .app-hero,
  .tabs,
  .tab-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .search-bar {
    display: block;
  }
  .game-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .floating-cta {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .game-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .rating-bars {
    width: 100%;
  }
  .expert-avatar {
    width: 60px;
    height: 60px;
  }
  .promo-steps ol {
    font-size: 13px;
  }
  .app-header {
    flex-direction: column;
    text-align: center;
  }
  .app-icon {
    width: 100px;
    height: 100px;
  }
  .expert-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ratings-overview {
    flex-direction: column;
    text-align: center;
  }
  .live-status {
    flex-direction: column;
    align-items: center;
  }
  .status-item {
    width: 100%;
    max-width: 200px;
  }
  .sister-casinos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}