/* Penguin Payday - Antarctica Theme CSS */
/* Цветовая палитра: ледяные синие, белые, акценты золота */

:root {
  --bg-primary: #0a1a2e;
  --bg-secondary: #162447;
  --bg-card: #1a2744;
  --text-primary: #ffffff;
  --text-secondary: #b8d4f0;
  --accent-ice: #4fc3f7;
  --accent-gold: #ffd700;
  --accent-frost: #b3e5fc;
  --border-ice: #64b5f6;
  --shadow-ice: rgba(79, 195, 247, 0.3);
  --gradient-ice: linear-gradient(135deg, #0a1a2e 0%, #162447 50%, #1a2744 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip Link для accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-ice);
  padding: 12px 20px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: "🐧";
  font-size: 1.8rem;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-ice);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-play {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 26, 46, 0.98);
  z-index: 9999;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.mobile-menu .btn-play {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* Sticky Bottom CTA Bar (Mobile Only) */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-ice);
  border-top: 2px solid var(--border-ice);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sticky-cta.visible {
  display: flex;
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.sticky-cta-icon {
  font-size: 1.5rem;
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-cta-text strong {
  font-size: 0.9rem;
  color: var(--accent-gold);
}

.sticky-cta-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.btn-sticky-cta {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: var(--gradient-ice);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 40px var(--shadow-ice);
  border: 2px solid var(--border-ice);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-ice) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.stat-card {
  background: rgba(26, 39, 68, 0.6);
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-ice);
  backdrop-filter: blur(10px);
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-gold);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent-ice);
  border-color: var(--border-ice);
}

.btn-outline:hover {
  background: rgba(79, 195, 247, 0.1);
  border-color: var(--accent-ice);
}

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

/* Section Styles */
.section {
  padding: 60px 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  text-align: center;
  color: var(--accent-ice);
  font-weight: 700;
  line-height: 1.2;
}

/* Typography - Consistent font styles for all sections */
.section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--accent-ice);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.section h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  color: var(--accent-ice);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--accent-ice);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section ul,
.section ol {
  margin: 20px 0;
  padding-left: 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section li {
  margin: 12px 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Table of Contents */
.toc {
  background: rgba(26, 39, 68, 0.6);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid var(--border-ice);
}

.toc h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.toc ol {
  list-style: none;
  counter-reset: toc-counter;
}

.toc li {
  counter-increment: toc-counter;
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
}

.toc li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--accent-gold);
  color: var(--bg-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.toc a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.toc a:hover {
  color: var(--accent-ice);
}

/* Game Overview */
.game-overview {
  background: rgba(26, 39, 68, 0.4);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-ice);
  margin: 40px 0;
}

.game-overview p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.game-overview ul,
.game-overview ol {
  margin: 20px 0;
  padding-left: 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.game-overview li {
  margin: 12px 0;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}

.game-overview li span:first-child {
  position: absolute;
  left: 0;
  color: var(--accent-ice);
  font-weight: bold;
}

.game-overview h3,
.game-overview h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--accent-ice);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.specs-table th,
.specs-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.specs-table th {
  background: rgba(79, 195, 247, 0.1);
  color: var(--accent-ice);
  font-weight: bold;
}

.specs-table tr:hover {
  background: rgba(79, 195, 247, 0.05);
}

/* Casino Cards */
.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.casino-card {
  background: rgba(26, 39, 68, 0.6);
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-ice);
  border-color: var(--accent-gold);
}

.casino-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.casino-bonus {
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.1rem;
  margin: 12px 0;
}

.casino-features {
  list-style: none;
  margin: 16px 0;
}

.casino-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.casino-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-ice);
  font-weight: bold;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-ice);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 12px;
  background: rgba(26, 39, 68, 0.9);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.testimonial {
  background: rgba(26, 39, 68, 0.6);
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  padding: 24px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-ice);
}

.rating {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-top: 4px;
}

.testimonial blockquote {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Calculator */
.calculator-container {
  background: rgba(26, 39, 68, 0.6);
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

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

.input-group label {
  color: var(--text-secondary);
  font-weight: 500;
}

.input-group input {
  padding: 12px;
  border: 1px solid var(--border-ice);
  border-radius: 8px;
  background: rgba(10, 26, 46, 0.6);
  color: var(--text-primary);
  font-size: 1rem;
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent-ice);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

.calculator-result {
  background: rgba(10, 26, 46, 0.6);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border-ice);
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.result-item:last-child {
  border-bottom: none;
}

.result-label {
  color: var(--text-secondary);
}

.result-value {
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.result-warning {
  color: var(--accent-ice);
}

/* FAQ */
/* Step Cards / Feature Cards */
.step-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.step-card,
.feature-card {
  background: rgba(26, 39, 68, 0.6);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-ice);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-ice);
  border-color: var(--accent-gold);
}

.step-number {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-weight: bold;
}

.step-card h3,
.feature-card h3 {
  color: var(--accent-ice);
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

.step-card p,
.feature-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* Warning Box */
.warning-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.warning-box--critical {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
}

.warning-box p,
.warning-box ul {
  color: var(--text-secondary);
  margin: 12px 0;
  line-height: 1.8;
}

.warning-box h3 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.warning-box--critical h3 {
  color: #ff6b6b;
}

.warning-box ul {
  margin-left: 24px;
}

.warning-box li {
  margin: 8px 0;
  line-height: 1.8;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(26, 39, 68, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.data-table th {
  background: rgba(79, 195, 247, 0.1);
  color: var(--accent-ice);
  font-weight: 600;
  font-size: 1rem;
}

.data-table td {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.data-table tr:hover {
  background: rgba(79, 195, 247, 0.05);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

/* Step by Step Guide */
.step-by-step-guide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.step-item {
  background: rgba(26, 39, 68, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-ice);
}

.step-item h3 {
  color: var(--accent-ice);
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

.step-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Interface List */
.interface-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.interface-list li {
  background: rgba(26, 39, 68, 0.4);
  padding: 16px 20px;
  margin: 12px 0;
  border-radius: 8px;
  border-left: 3px solid var(--accent-ice);
  color: var(--text-secondary);
  line-height: 1.8;
}

.interface-list li strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Disclaimer Text */
.disclaimer-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 20px;
  opacity: 0.8;
}

.last-updated {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 181, 246, 0.2);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 39, 68, 0.6);
  border: 1px solid var(--border-ice);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(79, 195, 247, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Verdict */
.verdict {
  background: rgba(26, 39, 68, 0.6);
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border-ice);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-info strong {
  font-size: 1.2rem;
  color: var(--accent-ice);
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pros-cons-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.pros h4,
.cons h4 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.pros h4 {
  color: var(--accent-ice);
}

.cons h4 {
  color: #ff6b6b;
}

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

.pros li,
.cons li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-ice);
  font-weight: bold;
}

.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

.final-rating {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(100, 181, 246, 0.2);
}

.rating-score {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 12px;
}

.rating-summary {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-ice);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-about p {
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-ice);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.trust-badges img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.trust-badges img:hover {
  opacity: 1;
}

.disclaimer {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.disclaimer p {
  color: var(--text-secondary);
  margin: 8px 0;
}

.disclaimer a {
  color: var(--accent-ice);
  text-decoration: none;
}

.disclaimer a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: var(--text-secondary);
  padding-top: 20px;
  border-top: 1px solid rgba(100, 181, 246, 0.2);
  font-size: 0.9rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: rgba(26, 39, 68, 0.4);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0 40px;
  font-size: 0.9rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--accent-ice);
  font-weight: bold;
}

.breadcrumb-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: var(--accent-ice);
}

.breadcrumb-item.active {
  color: var(--accent-gold);
}

/* Related Articles Section */
.related-articles {
  background: rgba(26, 39, 68, 0.6);
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  padding: 40px;
  margin: 60px 0;
}

.related-articles h2 {
  color: var(--accent-ice);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 30px;
  text-align: center;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.related-article-card {
  background: rgba(10, 26, 46, 0.6);
  border: 1px solid var(--border-ice);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-ice);
  border-color: var(--accent-gold);
}

.related-article-card h3 {
  color: var(--accent-ice);
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.related-article-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.related-article-card h3 a:hover {
  color: var(--accent-gold);
}

.related-article-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.related-article-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-ice);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.related-article-card .read-more:hover {
  color: var(--accent-gold);
}

.related-article-card .read-more::after {
  content: " →";
  transition: transform 0.3s;
}

.related-article-card:hover .read-more::after {
  transform: translateX(4px);
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 26, 46, 0.98);
  border-top: 2px solid var(--border-ice);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  backdrop-filter: blur(10px);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  color: var(--accent-ice);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.cookie-consent-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-text a {
  color: var(--accent-ice);
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-consent-text a:hover {
  color: var(--accent-gold);
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.btn-cookie-decline {
  background: rgba(26, 39, 68, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-ice);
}

.btn-cookie-decline:hover {
  background: rgba(26, 39, 68, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 181, 246, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .specs-table {
    font-size: 0.9rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 8px;
  }

  .casinos-grid,
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-consent-text {
    min-width: auto;
  }

  .cookie-consent-text h3 {
    font-size: 1.1rem;
  }

  .cookie-consent-text p {
    font-size: 0.9rem;
  }

  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    width: 100%;
    padding: 14px 24px;
  }

  .testimonials-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .calculator-inputs {
    grid-template-columns: 1fr;
  }

  .pros-cons-table {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-sticky-cta,
  .btn-play,
  .btn {
    display: none;
  }
}
