/* ===== VARIABILE CSS ===== */
:root {
  --bg-primary: #0b0f16;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #05060a;
  --accent-blue: #002B7F;
  --accent-gold: #FCD116;
  --accent-red: #CE1126;
  --text-primary: #e6eef8;
  --text-secondary: #9aa3b2;
  --text-muted: #6b7280;
  --glass: rgba(255,255,255,0.03);
  --glass-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
  --border-hover: rgba(255,255,255,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --shadow: 0 8px 24px rgba(2,6,23,0.65);
  --shadow-hover: 0 12px 32px rgba(2,6,23,0.8);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background: linear-gradient(180deg, rgba(11,15,22,0.95), rgba(11,15,22,0.8));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__brand .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-gold), #e6c84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
  transition: width 0.3s ease;
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__cta .btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(11,15,22,0.7), rgba(26,31,46,0.8)),
    url('../images/i1.webp') center/cover no-repeat;
  filter: blur(1px);
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--text-primary), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .muted {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-blue), #1a4aa1);
  color: white;
  box-shadow: 0 4px 15px rgba(0,43,127,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,43,127,0.4);
}

.btn-secondary {
  background: var(--glass);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.btn-cta {
  background: linear-gradient(90deg, var(--accent-gold), #e6c84c);
  color: var(--bg-primary);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(252,209,22,0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252,209,22,0.4);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== FILTERS SECTION ===== */
.filters-section {
  padding: 2rem 0;
  background: var(--glass);
  border-bottom: 1px solid var(--border);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.filter-group select {
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0,43,127,0.1);
}

/* ===== CARD GRID ===== */
.card-grid {
  padding: 4rem 0;
}

.card-grid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-gold);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* ===== CASINO CARD ===== */
.casino-card {
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.01));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold), var(--accent-red));
}

.casino-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.casino-card__head {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.casino-card__logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  padding: 0.5rem;
}

.casino-card__meta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.casino-card__badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-blue), #1a4aa1);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.casino-card__bonus {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.875rem;
}

.casino-card__info-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.casino-card__bonus-info h4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.bonus-highlight {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
}

.casino-card__rtp {
  text-align: right;
}

.casino-card__rtp h4 {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.casino-card__rtp p {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.875rem;
}

.casino-card__features {
  margin: 1rem 0;
}

.feature-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--glass);
  border-radius: 50%;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

.feature-icon:hover {
  background: var(--accent-blue);
  color: white;
  transform: scale(1.1);
}

.casino-card__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pros h4, .cons h4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

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

.pros li, .cons li {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.25rem;
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  font-size: 1.125rem;
}

.star.full {
  color: var(--accent-gold);
}

.star.half {
  color: var(--accent-gold);
}

.star.empty {
  color: var(--text-muted);
}

.rating-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.casino-card__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.casino-card__social h4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.casino-card__social .social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.casino-card__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--glass);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.casino-card__social a:hover {
  background: var(--accent-blue);
  color: white;
  transform: scale(1.1);
}

.casino-card__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.casino-card__actions .btn {
  flex: 1;
  text-align: center;
}

.casino-card__meta-info {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.casino-card__meta-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.casino-card__meta-info dt {
  font-weight: 600;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: 4rem 0;
  background: var(--glass);
}

.comparison-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.section-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--glass);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tr:hover {
  background: var(--glass-hover);
}

.casino-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-info span {
  font-weight: 600;
  color: var(--text-primary);
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-display .stars {
  color: var(--accent-gold);
}

.table-legend {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.table-legend h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.table-legend ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.table-legend li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ===== GAMES SECTION ===== */
.games {
  padding: 4rem 0;
}

.games h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.game-item {
  background: var(--glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.game-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-hover);
}

.game-item h3 {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.game-item p {
  color: var(--text-secondary);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.trust-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.trust-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.125rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.trust-card {
  background: var(--glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-hover);
}

.trust-card svg {
  margin-bottom: 1rem;
}

.trust-card h3 {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.trust-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.responsible-gaming {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.responsible-gaming a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.responsible-gaming a:hover {
  transform: scale(1.05);
  border-color: var(--accent-gold);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent-blue), #1a4aa1);
  position: relative;
  overflow: hidden;
}

.newsletter::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.newsletter .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.newsletter p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  color: white;
}

.form-group input {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(252,209,22,0.2);
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.6);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

.checkbox a {
  color: var(--accent-gold);
  text-decoration: none;
}

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

.gdpr-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__section h3 {
  color: var(--accent-gold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer__section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

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

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

.social-links h4 {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent-blue);
  color: white;
  transform: scale(1.1);
}

.responsible-gaming-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.responsible-gaming-footer span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--accent-gold);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.company-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer__disclaimer p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  max-width: 400px;
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.small {
  font-size: 0.875rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
    min-height: 60vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .lead {
    font-size: 1rem;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .casino-card__pros-cons {
    grid-template-columns: 1fr;
  }
  
  .casino-card__actions {
    flex-direction: column;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .responsible-gaming {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .casino-card {
    padding: 1rem;
  }
  
  .casino-card__head {
    flex-direction: column;
    text-align: center;
  }
  
  .casino-card__info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.casino-card,
.trust-card,
.game-item {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(255,255,255,0.3);
    --text-secondary: #ffffff;
  }
}
