/* 
   geoinformatik.pro - Social Gaming Platform Core Stylesheet
   GI Geoinformatik GmbH | Morellstraße 33, 86159 Augsburg, Deutschland
*/

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

:root {
  --bg-dark: #090C15;
  --bg-card: rgba(21, 26, 46, 0.7);
  --bg-card-hover: rgba(30, 37, 65, 0.85);
  --bg-surface: #12172A;
  
  --primary-purple: #8B5CF6;
  --primary-purple-glow: rgba(139, 92, 246, 0.4);
  --cyan-accent: #06B6D4;
  --cyan-glow: rgba(6, 182, 212, 0.3);
  --amber-gold: #F59E0B;
  --amber-glow: rgba(245, 158, 11, 0.4);
  --emerald-green: #10B981;
  --rose-red: #F43F5E;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border-light: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(139, 92, 246, 0.3);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Accessibility Focus & Contrast Rules */
:focus-visible {
  outline: 2px solid var(--cyan-accent) !important;
  outline-offset: 3px !important;
}

.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;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

img, svg, video, iframe, canvas {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, span, a, button {
  overflow-wrap: break-word;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

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

a:hover {
  color: #38BDF8;
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 20, 38, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none !important;
  flex-shrink: 0;
}

.header-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-brand:hover .header-logo-img {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.5);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text span {
  background: linear-gradient(135deg, var(--cyan-accent), #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}

.nav-item {
  color: #94A3B8;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-item:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.nav-item.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.18));
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.18);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.coins-badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(217, 119, 6, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #FBBF24;
  padding: 0.38rem 0.75rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.12);
  transition: all 0.25s ease;
}

.coins-badge:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(217, 119, 6, 0.18));
  border-color: #F59E0B;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
}

.btn-lang {
  background: rgba(18, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 0.38rem 0.65rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s ease;
}

.btn-lang:hover {
  border-color: var(--primary-purple);
  color: #FFF;
  background: rgba(139, 92, 246, 0.15);
}

.btn-auth {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.42rem 0.95rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  transition: all 0.25s ease;
}

.btn-auth:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Page Disclaimer Header Bar */
.social-disclaimer-bar {
  background: linear-gradient(90deg, #1E1B4B 0%, #0F172A 50%, #1E1B4B 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  padding: 0.35rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.social-disclaimer-bar .badge-tag {
  background: var(--rose-red);
  color: white;
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Layout Main Container */
main.site-content {
  flex: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--cyan-accent), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--cyan-accent));
  color: #FFF;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.5);
  color: #FFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
  color: var(--text-main);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-accent);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Feature Cards Grid */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  width: 100%;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--primary-purple);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

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

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
  margin-bottom: 4rem;
  width: 100%;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-accent);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.25);
}

.game-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--bg-surface);
}

.game-thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

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

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9, 12, 21, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  color: var(--amber-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

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

.game-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.game-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

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

.game-provider {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
}

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

.stars {
  color: var(--amber-gold);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* FAQ Accordion */
.faq-list {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--cyan-accent);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

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

/* Slot Game Engine UI */
.game-container-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

.slot-machine {
  background: linear-gradient(180deg, #1E1035 0%, #0F091D 100%);
  border: 3px solid #8B5CF6;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.3), 0 0 25px rgba(139, 92, 246, 0.4);
}

.reels-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  background: #090611;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.reel {
  height: 180px;
  background: linear-gradient(180deg, #130B24 0%, #201438 50%, #130B24 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.symbol-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  transition: transform 0.1s ease;
}

.slot-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.control-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.bet-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.bet-btn.active, .bet-btn:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: 0 0 10px var(--primary-purple-glow);
}

.btn-spin {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #FFF;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.btn-spin:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
}

.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* MANDATORY GAME WARNING BOX */
.studio-demo-warning {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.4);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
  color: #FECDD3;
  font-size: 0.92rem;
  line-height: 1.6;
}

.studio-demo-warning strong {
  color: #FFF;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.studio-demo-tag {
  display: inline-block;
  background: var(--rose-red);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Responsible Gaming Partner Grid in Footer */
.rg-partners-section {
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}

.rg-partners-container {
  max-width: 1280px;
  margin: 0 auto;
}

.rg-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #E2E8F0;
}

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

.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.rg-card:hover {
  border-color: var(--cyan-accent);
}

.rg-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #FFF;
}

.rg-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.rg-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Site Footer */
.site-footer {
  background: #06080E;
  color: var(--text-muted);
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: #FFF;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-owner-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-column h4 {
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-links a:hover {
  color: #FFF;
}

.footer-warnings-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.8rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Modals System (Age Gate & Auth) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 13, 0.92);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  position: relative;
}

.modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

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

.btn-modal-yes {
  background: linear-gradient(135deg, var(--emerald-green), #059669);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  flex: 1;
}

.btn-modal-no {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid var(--rose-red);
  color: #FECDD3;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  flex: 1;
}

.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 10px var(--primary-purple-glow);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #FFF;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-surface);
  border-left: 4px solid var(--cyan-accent);
  color: #FFF;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: slideIn 0.3s ease;
}

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

/* Google Play Store Page References */
.app-header-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.app-icon-lg {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
}

.app-details {
  flex: 1;
}

.app-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.app-developer {
  color: var(--cyan-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.app-meta-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.8rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFF;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Mobile Toggle Button & Responsive Navigation Drawer */
.mobile-toggle-btn {
  display: none;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 0.2rem;
}

.mobile-toggle-btn:active {
  transform: scale(0.95);
  background: rgba(139, 92, 246, 0.3);
}

/* Hide drawer user section by default on desktop */
.drawer-user-section {
  display: none !important;
}

.coins-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 850px) {
  .coins-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Header adaptation for all screens below 1400px */
@media (max-width: 1400px) {
  .header-container {
    padding: 0.5rem 0.8rem;
    gap: 0.5rem;
  }
  .nav-links {
    gap: 0.15rem;
  }
  .nav-item {
    font-size: 0.78rem;
    padding: 0.35rem 0.45rem;
  }
  .header-actions {
    gap: 0.4rem;
  }
  .coins-badge {
    padding: 0.35rem 0.6rem;
    font-size: 0.76rem;
  }
  .btn-lang, .btn-auth {
    padding: 0.35rem 0.55rem;
    font-size: 0.76rem;
  }
  .logo-text {
    font-size: 1.08rem;
  }
  .header-logo-img {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 1200px) {
  .nav-item {
    font-size: 0.74rem;
    padding: 0.3rem 0.38rem;
  }
  .logo-text {
    font-size: 1rem;
  }
  .header-actions {
    gap: 0.3rem;
  }
}

@media (max-width: 1080px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: flex !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(139, 92, 246, 0.4);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    display: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }

  .nav-links.mobile-active {
    display: flex !important;
  }

  .nav-links .nav-item {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .drawer-user-section {
    display: flex !important;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.6rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
  }

  .drawer-user-section .coins-badge {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .drawer-user-section .btn-auth {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .header-container {
    padding: 0.5rem 0.8rem;
  }

  .btn-auth span {
    font-size: 0.8rem;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .reels-container {
    gap: 0.4rem;
  }
  .symbol-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .hero-section {
    padding: 1.8rem 0;
    gap: 1.2rem;
  }
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .coins-grid {
    grid-template-columns: 1fr;
  }
  .iframe-slot-wrapper iframe {
    height: 380px !important;
  }
  .slot-cabinet-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.6rem 0.8rem;
  }
  .slot-cabinet-controls {
    width: 100%;
    justify-content: space-between;
  }
  .modal-content {
    width: 93% !important;
    padding: 1.2rem !important;
    margin: 1rem auto !important;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .reels-container {
    grid-template-columns: repeat(5, 1fr);
  }
  .reel {
    height: 110px;
  }
  .symbol-icon {
    font-size: 1.6rem;
  }
  .app-header-card {
    flex-direction: column;
    text-align: center;
  }
  .coins-badge {
    padding: 0.3rem 0.5rem;
    font-size: 0.76rem;
  }
  .btn-lang {
    padding: 0.3rem 0.45rem;
    font-size: 0.76rem;
  }
  .btn-auth {
    padding: 0.35rem 0.55rem;
    font-size: 0.76rem;
  }
}

/* Vector Icon & Step Badge Utilities */
.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--cyan-accent);
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple), var(--cyan-accent));
  color: #FFF;
  font-weight: 900;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 0 16px var(--primary-purple-glow);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.coin-showcase-badge {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem auto;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.btn-icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Official Demo Slot Iframe Cabinet Styles */
.official-demo-cabinet {
  background: #0F172A;
  border: 2px solid rgba(139, 92, 246, 0.45);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(139, 92, 246, 0.2);
  overflow: hidden;
  margin: 1.5rem 0 2.5rem 0;
}

.iframe-slot-wrapper {
  position: relative;
  width: 100%;
  background: #000000;
}

.iframe-slot-wrapper iframe {
  width: 100%;
  height: 650px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .iframe-slot-wrapper iframe {
    height: 480px;
  }
}

/* Commercial Grade Real Slot Cabinet Styles */
.real-slot-cabinet {
  background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(139, 92, 246, 0.15);
  overflow: hidden;
  margin: 1.5rem 0;
}

.slot-cabinet-header {
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slot-live-status {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #38BDF8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.slot-cabinet-controls {
  display: flex;
  gap: 0.5rem;
}

.btn-cabinet-tool {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cabinet-tool:hover {
  background: rgba(139, 92, 246, 0.25);
  color: #FFF;
  border-color: #8B5CF6;
}

.slot-cabinet-viewport {
  position: relative;
  background: radial-gradient(circle at center, #1E293B 0%, #090D16 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.slot-reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  width: 100%;
  max-width: 780px;
}

.slot-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slot-cell {
  height: 85px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.slot-win-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.95));
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.8);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.slot-win-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slot-cabinet-dashboard {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dash-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dash-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}

.dash-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #FBBF24;
}

.win-text {
  color: #10B981;
}

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

.btn-step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-step:hover {
  background: var(--primary-purple);
}

.dash-action-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-dash-sub {
  background: rgba(18, 23, 42, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #CBD5E1;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-dash-sub:hover {
  border-color: var(--cyan-accent);
  color: #FFF;
}

.btn-dash-main {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.55rem 1.6rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
}

.btn-dash-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);
}

/* Google Play Store Style App Page Components */
.app-header-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.app-icon-lg {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.app-details {
  flex-grow: 1;
}

.app-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.app-developer {
  color: var(--cyan-accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-meta-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  width: fit-content;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #F59E0B;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Horizontal Screenshots Gallery Slider */
.screenshots-gallery-section {
  margin-bottom: 2.5rem;
}

.screenshots-scroll-container {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem 0.2rem 1.2rem 0.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshots-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.screenshots-scroll-container::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 4px;
}

.screenshots-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 4px;
}

.screenshot-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-accent);
}

.screenshot-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.screenshot-caption {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Google Play Ratings & Reviews Breakdown */
.ratings-breakdown-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rating-big-score {
  text-align: center;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
}

.rating-stars-lg {
  color: #F59E0B;
  font-size: 1.2rem;
  margin: 0.3rem 0;
}

.rating-count-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rating-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-bar-track {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  border-radius: 4px;
}

/* App Info Table Grid */
.app-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.app-info-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.app-info-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.app-info-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .app-header-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  .app-meta-stats {
    justify-content: center;
    width: 100%;
  }
  .ratings-breakdown-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .screenshot-card {
    flex: 0 0 280px;
  }
}

/* Store Badge Component (Google Play Integration like tsombanoglou.uk) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000000;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.store-badge:hover {
  background: #1E293B;
  border-color: #38BDF8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.store-badge__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-badge__txt small {
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  color: #94A3B8;
  text-transform: uppercase;
}

.store-badge__txt b {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Featured 2-Game Collection Cards (tsombanoglou.uk Style) */
.games-featured-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 2rem 0 4rem 0;
}

.games-featured-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.games-featured-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-3px);
}

.games-featured-card.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.game-card-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.game-card-tag.hot {
  background: rgba(139, 92, 246, 0.2);
  color: #A78BFA;
  border: 1px solid #8B5CF6;
}

.game-card-tag.browser {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
  border: 1px solid #F59E0B;
}

.game-facts {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.game-facts li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.game-facts li::before {
  content: '•';
  color: var(--cyan-accent);
  font-size: 1.3rem;
  font-weight: 900;
}

.games-featured-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
}

.games-featured-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .games-featured-card, .games-featured-card.reverse {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }
}




