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

:root {
  /* MrQ Colors */
  --primary: hsl(226, 93%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(328, 85%, 55%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --background: hsl(220, 30%, 97%);
  --foreground: hsl(226, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --muted: hsl(220, 20%, 92%);
  --muted-foreground: hsl(220, 10%, 45%);
  --border: hsl(220, 20%, 88%);
  --cream: hsl(45, 30%, 96%);
  --destructive: hsl(0, 84%, 60%);
  
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container-max: 1280px;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), hsl(226, 93%, 52%));
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px hsla(226, 93%, 42%, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(226, 93%, 42%, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), hsl(328, 85%, 65%));
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

/* Badge */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--foreground);
  color: var(--background);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 250, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

.logo img {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 3.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
  background: var(--muted);
}

.nav-link.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 0.25rem;
}

.mobile-menu-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--foreground);
  color: var(--background);
}

.section-muted {
  background: var(--muted);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0 6rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(226, 93%, 42%, 0.1);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-disclaimer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-disclaimer a {
  color: var(--secondary);
}

.hero-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Disclaimer Banner */
.disclaimer-banner {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 1rem 0;
}

.disclaimer-banner p {
  text-align: center;
  font-size: 0.875rem;
}

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

/* Cards */
.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-lg {
  border-radius: 1.5rem;
  padding: 2rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-6 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 42rem;
}

.section-header.center p {
  margin: 0 auto;
}

/* Featured Casino */
.featured-casino {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .featured-casino {
    flex-direction: row;
    text-align: left;
  }
}

.featured-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  flex-shrink: 0;
}

.featured-logo img {
  width: 100%;
  height: auto;
}

.featured-info {
  flex: 1;
}

.featured-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-bonus {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.featured-terms {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--primary);
  color: var(--primary);
}

.featured-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.featured-cta span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Game Card */
.game-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.game-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(23, 30, 58, 0.8);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.game-info {
  padding: 0.75rem;
}

.game-info h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.game-rtp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.game-rtp span:last-child {
  font-weight: 600;
  color: var(--secondary);
}

/* Feature Card */
.feature-card {
  padding: 1.5rem;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(226, 93%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-gambling {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  text-align: center;
}

.footer-gambling h2 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.gambling-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gambling-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 12rem;
  border-radius: 0.75rem;
  background: var(--background);
  padding: 1rem;
  transition: box-shadow 0.3s;
}

.gambling-logo:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gambling-logo.no-bg {
  background: transparent;
}

.gambling-logo img {
  height: 2.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.helpline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}

.helpline:hover {
  text-decoration: underline;
}

.footer-main {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 4rem;
  width: auto;
  background: var(--background);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

.footer-column h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-18 {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--background);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 48rem;
  margin: 0 auto 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--background);
  transition: background 0.2s;
}

.cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Games Page Filter */
.filter-bar {
  position: sticky;
  top: 4rem;
  z-index: 40;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .filter-bar {
    top: 5rem;
  }
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  background: var(--muted);
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.filter-btn:hover {
  background: hsl(220, 20%, 85%);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Game Detail Card */
.game-detail-card {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
}

.game-detail-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.game-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.game-detail-content {
  padding: 1rem;
}

.game-detail-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.game-detail-provider {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.game-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.game-stat {
  background: var(--muted);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.game-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.game-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
}

.game-max-win {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.game-max-win span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
}

/* Info Cards */
.info-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
}

.info-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--muted-foreground);
}

.info-card-highlight {
  background: hsla(328, 85%, 55%, 0.1);
}

.info-card-highlight p {
  text-align: center;
  font-size: 0.875rem;
}

/* Review Card */
.review-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
  }
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .review-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--muted-foreground);
}

.review-name {
  font-family: var(--font-display);
  font-weight: 700;
}

.verified-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: hsla(328, 85%, 55%, 0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-date svg {
  width: 1rem;
  height: 1rem;
}

.review-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.review-content {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.review-pros-cons {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .review-pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.review-list {
  background: hsla(220, 20%, 92%, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
}

.review-list-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.review-list-header svg {
  width: 1rem;
  height: 1rem;
}

.review-list-header.pros svg {
  color: #16a34a;
}

.review-list-header.cons svg {
  color: #ef4444;
}

.review-list-header span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
}

.review-list ul li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

/* Article Card */
.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.article-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(226, 93%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.article-category {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(328, 85%, 55%, 0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
}

.article-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.article-card .excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex: 1;
  margin-bottom: 1rem;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.article-footer svg {
  width: 1rem;
  height: 1rem;
}

/* Contact Cards */
.contact-card {
  display: block;
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card .contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.contact-card:hover .contact-icon {
  opacity: 0.8;
}

.contact-icon.primary {
  background: hsla(226, 93%, 42%, 0.1);
}

.contact-icon.secondary {
  background: hsla(328, 85%, 55%, 0.1);
}

.contact-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-icon.primary svg {
  color: var(--primary);
}

.contact-icon.secondary svg {
  color: var(--secondary);
}

/* Responsible Gaming */
.helpline-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .helpline-banner {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
}

.helpline-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.helpline-icon svg {
  width: 2rem;
  height: 2rem;
}

.helpline-banner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.helpline-banner p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.helpline-banner a {
  font-size: 1.5rem;
  font-weight: 700;
}

.helpline-banner a:hover {
  text-decoration: underline;
}

/* Warning Signs */
.warning-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.warning-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(0, 84%, 60%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--destructive);
}

.warning-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .warning-list {
    grid-template-columns: 1fr 1fr;
  }
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.warning-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--destructive);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.warning-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Tips */
.tip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
}

.tip-number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* 18+ Section */
.age-section {
  text-align: center;
}

.age-badge-lg {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: var(--background);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.age-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.age-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto;
}

/* Utility */
.text-center {
  text-align: center;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

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

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

/* SVG Icons as inline styles */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* Age Verification Popup (18+) */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-popup.active {
  opacity: 1;
  visibility: visible;
}

.age-popup-content {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 32rem;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.age-popup.active .age-popup-content {
  transform: scale(1);
}

.age-popup-badge {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary), hsl(226, 93%, 52%));
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px hsla(226, 93%, 42%, 0.4);
}

.age-popup h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.age-popup p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-popup-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 640px) {
  .age-popup-buttons {
    flex-direction: row;
  }
}

.age-popup-btn {
  flex: 1;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.age-popup-btn-confirm {
  background: linear-gradient(135deg, var(--primary), hsl(226, 93%, 52%));
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px hsla(226, 93%, 42%, 0.3);
}

.age-popup-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(226, 93%, 42%, 0.4);
}

.age-popup-btn-exit {
  background: var(--muted);
  color: var(--foreground);
}

.age-popup-btn-exit:hover {
  background: var(--border);
}

/* Cookies Banner */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookies-banner.active {
  transform: translateY(0);
}

.cookies-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookies-banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cookies-banner-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cookies-banner-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookies-banner-text a:hover {
  color: hsl(226, 93%, 52%);
}

.cookies-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookies-banner-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookies-banner-btn-accept {
  background: linear-gradient(135deg, var(--primary), hsl(226, 93%, 52%));
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px hsla(226, 93%, 42%, 0.3);
}

.cookies-banner-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(226, 93%, 42%, 0.4);
}

.cookies-banner-btn-decline {
  background: transparent;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.cookies-banner-btn-decline:hover {
  background: var(--muted);
  color: var(--foreground);
}
