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

:root {
  --bg: #07070a;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.04);
  --bg-nav: rgba(7, 7, 10, 0.85);
  --accent: #ff6b00;
  --accent-rgb: 255, 107, 0;
  --accent-hover: #ff8522;
  --gold: #f5a623;
  --gold-gradient: linear-gradient(135deg, #ff7a00 0%, #f5a623 100%);
  --gold-glow: 0 0 20px rgba(255, 122, 0, 0.35);
  --gold-glow-hover: 0 0 30px rgba(255, 122, 0, 0.5);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --green: #10b981;
  --green-bg: rgba(16, 185, 129, 0.1);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --border-focus: rgba(255, 107, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-title: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: #ffffff;
  line-height: 1.25;
  text-wrap: balance;
}

/* Focus indicator style */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--border-focus);
}

/* Accessibility features */
.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;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s ease;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-title-wrap {
  margin-bottom: 40px;
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin-top: 10px;
}

/* Grid helper */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  color: #000000;
  box-shadow: var(--gold-glow-hover);
  opacity: 0.95;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background-color: rgba(245, 166, 35, 0.08);
  color: #ffffff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 46px;
  font-size: 1.15rem;
}

/* Glass Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  background-color: var(--bg-card-hover);
  border-color: rgba(245, 166, 35, 0.25);
  transform: translateY(-4px);
}

/* HEADER */
header {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--gold);
}

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

nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease;
}

nav a:hover, nav a.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-nav {
  background: var(--gold-gradient) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 18px !important;
}

.btn-nav:hover {
  color: #000000 !important;
  opacity: 0.9;
}

/* Mobile Navigation Toggle Button */
.mob-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.mob-btn span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Open states for mobile nav icon */
.mob-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
  opacity: 0;
}

.mob-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mob-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 24px;
  gap: 10px;
  overflow-y: auto;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border);
}

.mob-nav a:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.mob-nav .btn-nav {
  margin-top: 15px;
  text-align: center;
  padding: 16px 20px !important;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 16px 0 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span.separator {
  user-select: none;
}

.breadcrumb span.current {
  color: #ffffff;
}

/* HERO SECTION */
.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span.highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 750px;
  backdrop-filter: blur(10px);
}

.hero-stat {
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PROMO CALLOUT */
.promo-box {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(245, 166, 35, 0.03) 100%);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.promo-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-icon {
  font-size: 2.2rem;
}

.promo-text h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.promo-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.promo-code-wrap {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 4px 4px 4px 16px;
}

.promo-code {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-right: 16px;
}

.btn-copy {
  background-color: var(--gold);
  color: #000000;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-copy:hover {
  background-color: #ffd060;
}

/* CASINO EVALUATION */
.rating-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 30px;
}

.rating-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.rating-summary {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.rating-stars {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.rating-big {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.rating-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.rating-pros-list {
  margin: 24px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-pro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.rating-pro-item span.icon {
  color: var(--green);
  font-weight: bold;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-bar-label {
  width: 160px;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.rating-bar-bg {
  flex: 1;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 10px;
}

.rating-bar-value {
  width: 32px;
  text-align: right;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

/* TOP CASINO BLOCK */
.comparison-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
}

table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 750px;
}

table.comparison-table th {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 2px solid var(--border);
  padding: 16px 20px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: left;
}

table.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: middle;
}

table.comparison-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.01);
}

table.comparison-table tr.highlight td {
  background-color: rgba(255, 107, 0, 0.03);
}

table.comparison-table tr.highlight:hover td {
  background-color: rgba(255, 107, 0, 0.05);
}

/* INFO BLOCKS */
.info-row {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.pro-box, .con-box {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}

.pro-box h3, .con-box h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-box h3 { color: var(--green); }
.con-box h3 { color: var(--red); }

.pro-con-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pro-con-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.pro-con-item span.bullet {
  flex-shrink: 0;
  margin-top: 2px;
}

.pro-con-item.pro span.bullet { color: var(--green); }
.pro-con-item.con span.bullet { color: var(--red); }

.pro-con-item p {
  color: var(--text-muted);
}

/* POPULAR GAMES SECTION */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/11;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-img {
  transform: scale(1.05);
}

/* Gradient overlay on games */
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 1;
}

.game-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.game-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.game-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.game-play-btn {
  background-color: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.9;
  transition: opacity 0.2s, background-color 0.2s;
}

.game-card:hover .game-play-btn {
  opacity: 1;
  background-color: var(--accent-hover);
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.game-badge.hit {
  background: linear-gradient(135deg, #ef4444 0%, #ff7a00 100%);
  color: #ffffff;
}

/* STEPS WIDGET */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.step-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* FAQ WIDGET */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: rgba(255, 107, 0, 0.3);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.02rem;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-a {
  display: block;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */
footer {
  background-color: #040406;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-logo span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-disclaimer span.icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links ul a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ADMIN PANEL STYLING */
.admin-container {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 24px;
}

.admin-card {
  background: rgba(15, 15, 25, 0.75);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.admin-header {
  text-align: center;
  margin-bottom: 30px;
}

.admin-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.admin-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.15);
}

.admin-info-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.admin-info-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

.admin-info-box span {
  word-break: break-all;
  font-family: monospace;
}

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

.animate-fade {
  animation: fadeIn 0.4s ease forwards;
}

/* Media Queries */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .rating-grid { grid-template-columns: 1fr; gap: 30px; }
  .rating-summary { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-info { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  nav { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 60px 0 40px; }
  .hero-btns { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stat { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(3) { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 12px; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding-bottom: 12px; margin-bottom: 12px; }
  .hero-stat:last-child { border-bottom: none !important; padding-bottom: 0; margin-bottom: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-info { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promo-box { padding: 20px; }
  .rating-card { padding: 24px; }
  .rating-bar-label { width: 120px; }
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .game-card:hover {
    transform: none !important;
  }
  
  .card:hover {
    transform: none !important;
  }
}
