/* Modern Cyber Gaming Design System - OnlineGameLand AU */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0b0f19;
  --bg-card: #131a29;
  --bg-card-hover: #192236;
  --border-color: #212c40;
  --border-highlight: #f59e0b;
  
  --primary-cyan: #38bdf8;
  --primary-magenta: #f43f5e;
  --primary-purple: #3b82f6;
  --accent-gold: #fbbf24;
  --accent-green: #34d399;
  
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --glow-cyan: 0 4px 20px rgba(56, 189, 248, 0.15);
  --glow-gold: 0 4px 20px rgba(251, 191, 36, 0.15);
  --glow-magenta: 0 4px 20px rgba(244, 63, 94, 0.15);

  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--primary-cyan);
  color: #000;
  padding: 0.6rem 1.2rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
  font-family: var(--font-heading);
}

.skip-link:focus {
  top: 10px;
  outline: 2px solid #fff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(251, 191, 36, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: var(--accent-gold);
  font-weight: 800;
}

.gold-gradient-text {
  color: var(--accent-gold);
  font-weight: 800;
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #ffffff;
}

/* Top Notice Bar - Clean & Subtle */
.top-notice-bar {
  background: rgba(10, 14, 23, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 0.45rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.top-notice-bar span {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Sleek & Clean Header System */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0e1422;
  border-bottom: 1px solid var(--border-color);
  padding: 0.6rem 0;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(121, 40, 202, 0.2));
  border: 1px solid rgba(0, 242, 255, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Clean Desktop Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

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

.nav-links a.active {
  color: #ffffff;
  background: rgba(0, 242, 255, 0.12);
  border: 1px solid rgba(0, 242, 255, 0.3);
  font-weight: 600;
}

/* Header Action Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.coin-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.coin-icon {
  width: 18px;
  height: 18px;
  background: var(--accent-gold);
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, #00f2ff, #7928ca);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-cyan);
  color: #fff;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ff9900);
  color: #000;
  font-weight: 800;
  border-radius: var(--radius-full);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-gold);
  color: #000;
}

.btn-magenta {
  background: linear-gradient(135deg, var(--primary-magenta), #c70039);
  color: #fff;
}

.btn-magenta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Mobile Drawer Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: #0e1422;
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  z-index: 99;
}

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

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-menu-links a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* Hero Section with Generated BG Image */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,9,14,0.4) 0%, rgba(7,9,14,0.9) 100%), url('../images/hero_bg.webp') no-repeat center center;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.4rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.badge-au {
  border-color: rgba(0, 242, 255, 0.3);
  color: var(--primary-cyan);
}

.badge-18 {
  border-color: rgba(255, 0, 127, 0.3);
  color: var(--primary-magenta);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-preview {
  width: 100%;
  max-width: 480px;
  background: #131a29;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--glow-cyan);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-card-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-card-preview:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), var(--glow-cyan);
}

.preview-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.preview-pill-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}

.preview-pill-item:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 242, 255, 0.08);
}

/* What Are Social Games Section */
.social-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.social-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-info-card:hover {
  border-color: var(--primary-magenta);
  box-shadow: var(--glow-magenta);
  transform: translateY(-4px);
}

.social-info-card .card-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 0, 127, 0.1);
  border: 1px solid rgba(255, 0, 127, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-magenta);
  margin-bottom: 1.25rem;
}

.social-info-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.social-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Games Grid Section */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan);
  background: var(--bg-card-hover);
}

.game-thumb {
  width: 100%;
  height: 195px;
  position: relative;
  overflow: hidden;
  background: #05070a;
}

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

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

.game-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0b0f19;
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.game-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.game-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Features Grid - Dynamic Showcase Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: left;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-box:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.feature-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  margin: 0;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-cyan);
}

.feature-box h3, .feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Responsible Gaming Banner */
.rg-banner {
  background: linear-gradient(135deg, rgba(16, 22, 38, 0.9), rgba(10, 14, 23, 0.95));
  border: 1px solid rgba(255, 0, 127, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.rg-text {
  max-width: 700px;
}

.rg-text h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

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

.rg-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rg-phone {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold);
}

/* Footer */
.footer {
  background: rgba(5, 7, 11, 0.98);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0;
  max-width: 320px;
  font-size: 0.85rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 900px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 9, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: linear-gradient(145deg, #101524, #0b0e18);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--glow-cyan), 0 25px 60px rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: rgba(255, 0, 127, 0.12);
  border: 2px solid var(--primary-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-magenta);
}

.modal-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.modal-box p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: rgba(14, 18, 30, 0.95);
  border: 1px solid var(--primary-cyan);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--glow-cyan), 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.875rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(255, 255, 255, 0.06);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Page Standard Header */
.page-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(0, 242, 255, 0.03) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

.content-body {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 4rem;
}

.content-body h2 {
  font-size: 1.5rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--primary-cyan);
}

.content-body p, .content-body ul {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.content-body ul {
  padding-left: 1.5rem;
}

.content-body li {
  margin-bottom: 0.5rem;
}

/* Responsive Breakpoints & Mobile Header Optimization */
@media (max-width: 1080px) {
  .nav-links {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-badges, .hero-cta {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
    text-align: center;
  }

  .header {
    padding: 0.5rem 0;
  }

  .nav-wrapper {
    gap: 0.5rem;
  }

  .logo-img {
    height: 34px;
    max-width: 140px;
  }

  .coin-counter {
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
    gap: 0.3rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  .page-header {
    padding: 2rem 0 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .content-body {
    padding: 1.5rem 1.25rem;
    margin-bottom: 2.5rem;
  }

  .content-body h2 {
    font-size: 1.25rem;
  }

  .social-info-grid, .features-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .rg-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .rg-contact {
    align-items: center;
    width: 100%;
  }

  .rg-contact .btn {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .header-actions .btn {
    display: none !important;
  }

  .coin-label {
    display: none !important;
  }

  .logo-img {
    height: 30px;
    max-width: 125px;
  }

  .mobile-nav-toggle {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .faq-card {
    padding: 1.25rem 1rem !important;
  }

  .faq-card h3 {
    font-size: 1rem !important;
    gap: 0.5rem !important;
  }

  .faq-card h3 svg {
    width: 18px !important;
    height: 18px !important;
  }

  .faq-card p {
    font-size: 0.85rem !important;
  }

  .hero-card-preview {
    padding: 1.5rem 1.25rem;
  }

  .preview-pill-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .preview-pill-item {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .preview-pill-grid {
    grid-template-columns: 1fr;
  }

  .coin-counter {
    font-size: 0.72rem;
    padding: 0.2rem 0.45rem;
  }

  .logo-img {
    height: 26px;
    max-width: 105px;
  }
}

/* FAQ Section Styles */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.faq-card:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.faq-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
}

.faq-card h3 svg {
  color: var(--primary-cyan);
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
  height: 20px;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
}

