/* ===================================================
   PakWin - Complete Casino Affiliate Website CSS
   Target: Pakistan | Primary: #f3bd0b | BG: #290513
   =================================================== */

/* CSS Variables */
:root {
  /* Brand Colors */
  --primary-color: #f3bd0b;
  --primary-dark: #d9a00a;
  --primary-light: #ffd93d;
  --background-color: #290513;
  --background-dark: #1a030c;
  --background-light: #3d0a1f;
  --text-color: #ffffff;
  --text-muted: #b3b3b3;
  --gradient-text-color: #390814;

  /* Gradients */
  --main-gradient: linear-gradient(99deg, #fef1b1, #dab053 34.33%, #d9b15d 82.93%, #f0d479);
  --header-gradient: linear-gradient(180deg, #cc281e, #430019 74.73%);

  /* Button Variables */
  --btn-radius: 1.06667rem;
  --btn-login-bg: linear-gradient(99deg, #fef1b1, #dab053 34.33%, #d9b15d 82.93%, #f0d479);
  --btn-register-bg: linear-gradient(99deg, #fef1b1, #dab053 34.33%, #d9b15d 82.93%, #f0d479);
  --btn-login-border: 0.01333rem solid #f3bd0b;
  --btn-register-border: 0.01333rem solid #f3bd0b;
  --btn-text-color: #380a09;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(243, 189, 11, 0.3);

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--primary-color);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--primary-color);
  text-align: center;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--text-color);
  margin-top: var(--spacing-lg);
}

h4 {
  font-size: 1.125rem;
  color: var(--primary-light);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

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

a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

ul, ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: var(--spacing-xs);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 900px;
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  background: var(--header-gradient);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 45px;
  width: auto;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: none;
  min-width: 100px;
}

.btn-login {
  background: var(--btn-login-bg);
  border: var(--btn-login-border);
  color: var(--btn-text-color);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  background: var(--background-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-register {
  background: var(--btn-register-bg);
  border: var(--btn-register-border);
  color: var(--btn-text-color);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  background: var(--background-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary {
  background: var(--main-gradient);
  color: var(--btn-text-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--background-color);
  text-decoration: none;
}

/* Hero specific button styles */
.hero .btn-primary:hover,
.hero .btn-register:hover {
  background: var(--background-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero .btn-secondary:hover {
  background: var(--primary-color);
  color: var(--background-color);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-md);
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(41, 5, 19, 0.90)), url('/img/pakwin-banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto var(--spacing-lg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero h1 {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================
   MAIN CONTENT
   =================================================== */
.main-content {
  padding: var(--spacing-xl) 0;
}

.content-section {
  margin-bottom: var(--spacing-xl);
}

/* Featured Image */
.featured-image {
  width: 100%;
  max-width: 800px;
  margin: var(--spacing-lg) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Screenshot Placeholders */
.screenshot-placeholder {
  max-width: 300px;
  margin: var(--spacing-md) auto;
  background: var(--background-light);
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  color: var(--text-muted);
}

.screenshot-placeholder img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* ===================================================
   GAME DETAILS TABLE
   =================================================== */
.game-details-table {
  width: 100%;
  margin: var(--spacing-lg) 0;
  border-collapse: collapse;
  background: var(--background-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.game-details-table tr {
  border-bottom: 1px solid rgba(243, 189, 11, 0.2);
}

.game-details-table tr:last-child {
  border-bottom: none;
}

.game-details-table td {
  padding: var(--spacing-sm) var(--spacing-md);
}

.game-details-table td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  width: 40%;
  background: rgba(243, 189, 11, 0.1);
}

/* ===================================================
   GAMES GRID
   =================================================== */
.games-section {
  padding: var(--spacing-xl) 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.game-card {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(243, 189, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--primary-color);
}

.game-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
  object-fit: contain;
}

.game-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}

.game-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.game-card > a > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* ===================================================
   PAYMENT METHODS GRID
   =================================================== */
.payment-section {
  padding: var(--spacing-xl) 0;
}

.payment-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

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

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

.payment-card {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(243, 189, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.payment-card-icon {
  width: 80px;
  height: 60px;
  margin-bottom: var(--spacing-md);
  object-fit: contain;
}

.payment-card h3 {
  color: var(--primary-color);
  margin: 0 0 var(--spacing-sm) 0;
  font-size: 1.1rem;
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===================================================
   FEATURES LIST
   =================================================== */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  list-style: none;
  margin-left: 0;
}

.features-list li {
  background: var(--background-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition-fast);
}

.features-list li:hover {
  background: rgba(243, 189, 11, 0.1);
}

.features-list li strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* ===================================================
   STEPS / HOW-TO
   =================================================== */
.steps-container {
  margin: var(--spacing-lg) 0;
}

.step {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--background-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--main-gradient);
  color: var(--gradient-text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.step-content p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ===================================================
   CTA SECTIONS
   =================================================== */
.cta-box {
  background: var(--main-gradient);
  color: var(--gradient-text-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: var(--spacing-xl) 0;
  box-shadow: var(--shadow-lg);
}

.cta-box h3 {
  color: var(--gradient-text-color);
  margin-top: 0;
  font-size: 1.5rem;
}

.cta-box p {
  color: var(--gradient-text-color);
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
}

.cta-box .btn {
  background: var(--background-color);
  color: var(--primary-color);
  border: 2px solid var(--background-color);
}

.cta-box .btn:hover {
  background: var(--background-dark);
}

/* ===================================================
   BONUSES SECTION
   =================================================== */
.bonus-card {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(243, 189, 11, 0.2);
  transition: var(--transition-fast);
}

.bonus-card:hover {
  border-color: var(--primary-color);
}

.bonus-card h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.testimonial-card {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
  margin: var(--spacing-xl) 0;
}

.faq-item {
  background: var(--background-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border: 1px solid rgba(243, 189, 11, 0.2);
}

.faq-question {
  padding: var(--spacing-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(243, 189, 11, 0.1);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--spacing-md);
  max-height: 500px;
}

/* ===================================================
   AUTHOR BOX
   =================================================== */
.author-box {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  border: 1px solid rgba(243, 189, 11, 0.3);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--main-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gradient-text-color);
  flex-shrink: 0;
}

.author-info h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.author-role {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.author-bio {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* ===================================================
   RESPONSIBLE GAMING NOTICE
   =================================================== */
.responsible-gaming-notice {
  background: rgba(243, 189, 11, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.responsible-gaming-notice p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.age-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--background-color);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-right: var(--spacing-xs);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--background-dark);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xxl);
  border-top: 1px solid rgba(243, 189, 11, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(243, 189, 11, 0.2);
}

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

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

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--spacing-xs);
}

.footer-18plus {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(243, 189, 11, 0.1);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================================================
   LEGAL PAGES
   =================================================== */
.legal-page {
  padding: var(--spacing-xl) 0;
}

.legal-page h1 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--primary-color);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--spacing-xl);
}

.legal-content ul {
  list-style-type: disc;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: var(--spacing-lg) 0;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--spacing-sm);
  background: var(--background-light);
  border: 1px solid rgba(243, 189, 11, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(243, 189, 11, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===================================================
   BLOG / ARTICLE PAGES
   =================================================== */
.article-header {
  padding: var(--spacing-xl) 0;
  text-align: center;
  background: var(--background-light);
  margin-bottom: var(--spacing-xl);
}

.article-header h1 {
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
}

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

.article-featured-image {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: var(--spacing-xl);
}

.article-content h3 {
  margin-top: var(--spacing-lg);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: var(--spacing-sm) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.breadcrumbs span {
  margin: 0 var(--spacing-xs);
}

/* Internal Links Highlight */
.internal-link {
  color: var(--primary-color);
  border-bottom: 1px dotted var(--primary-color);
}

.internal-link:hover {
  border-bottom-style: solid;
}

/* ===================================================
   UTILITIES
   =================================================== */
.text-center {
  text-align: center;
}

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.hidden {
  display: none;
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

/* Tablet */
@media (max-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

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

  .hero {
    min-height: 400px;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  body {
    line-height: 1.8;
  }

  p {
    font-size: 1rem;
    line-height: 1.8;
  }

  li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .header-container {
    padding: 0 var(--spacing-sm);
  }

  .header-logo img {
    height: 35px;
  }

  .header-buttons {
    gap: var(--spacing-xs);
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    min-width: auto;
  }

  .hero {
    min-height: 350px;
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .hero-logo {
    width: 120px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .payment-grid-3,
  .payment-grid-2 {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .step-number {
    margin: 0 auto var(--spacing-sm);
  }

  .step-content p {
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .footer-links a {
    font-size: 1rem;
  }

  .cta-box {
    padding: var(--spacing-lg);
  }

  .cta-box p {
    font-size: 1rem;
  }

  .game-details-table td {
    display: block;
    width: 100%;
  }

  .game-details-table td:first-child {
    width: 100%;
    border-bottom: none;
    padding-bottom: var(--spacing-xs);
  }

  .game-details-table {
    font-size: 0.95rem;
  }

  .game-details-table td {
    padding: var(--spacing-xs) var(--spacing-sm);
    display: table-cell;
    width: auto;
  }

  .game-details-table td:first-child {
    width: 45%;
    white-space: nowrap;
  }

  .game-card p,
  .payment-card p {
    font-size: 0.95rem;
  }

  .author-bio {
    font-size: 1rem;
  }

  .responsible-gaming-notice p {
    font-size: 0.95rem;
  }
}

/* CTA Buttons Mobile Fix */
@media (max-width: 768px) {
  .cta-box .btn,
  .hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
  }

  .btn-primary {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  body {
    line-height: 1.8;
  }

  p, li {
    font-size: 1rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .game-card,
  .payment-card {
    padding: var(--spacing-md);
  }

  .game-card-icon,
  .payment-card-icon {
    width: 60px;
    height: 60px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-box,
  .hero-buttons {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
