/* Robocat Casino - Design System */
:root {
  /* Colors */
  --bg-primary: hsl(250, 25%, 5%);
  --bg-secondary: hsl(250, 20%, 8%);
  --bg-card: hsl(250, 18%, 12%);
  --bg-card-hover: hsl(250, 18%, 16%);
  
  --text-primary: hsl(0, 0%, 95%);
  --text-secondary: hsl(250, 10%, 70%);
  --text-muted: hsl(250, 10%, 50%);
  
  --accent-gold: hsl(45, 100%, 50%);
  --accent-gold-light: hsl(45, 100%, 60%);
  --accent-gold-dark: hsl(45, 100%, 40%);
  
  --accent-purple: hsl(280, 80%, 55%);
  --accent-purple-light: hsl(280, 80%, 65%);
  
  --accent-cyan: hsl(180, 100%, 50%);
  --accent-green: hsl(145, 80%, 45%);
  --accent-red: hsl(0, 80%, 55%);
  
  --border-color: hsl(250, 20%, 20%);
  --border-gold: hsl(45, 100%, 50%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
  --gradient-purple: linear-gradient(135deg, hsl(280, 80%, 55%), hsl(260, 80%, 45%));
  --gradient-dark: linear-gradient(180deg, hsl(250, 25%, 8%), hsl(250, 25%, 3%));
  --gradient-hero: linear-gradient(180deg, rgba(10, 10, 20, 0.3) 0%, rgba(10, 10, 20, 0.9) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-purple: 0 0 20px rgba(180, 100, 255, 0.3);
  
  /* Typography */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Transitions */
  --transition-fast: 0.15s 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;
  scroll-padding-top: 80px;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-sm) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo img {
  width: 100px;
  height: 60px;
  border-radius: var(--radius-md);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.nav {
  display: none;
}

.nav.active {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
  background: rgba(255, 215, 0, 0.1);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-left: var(--spacing-md);
}

.lang-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  padding: var(--spacing-lg);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.mobile-nav-link {
  display: block;
  padding: var(--spacing-md);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-card-hover);
  color: var(--accent-gold);
}

.mobile-lang-switcher {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
}

/* CTA Button in Header */
.header-cta {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  color: var(--bg-primary);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  color: var(--bg-primary);
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.badge-icon {
  font-size: 1rem;
}

.badge-updated {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.section-title span {
  color: var(--accent-gold);
}

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.toc-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.toc-link {
  color: var(--text-secondary);
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  border-left: 2px solid var(--border-color);
  transition: all var(--transition-fast);
}

.toc-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  padding-left: var(--spacing-lg);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-fast);
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--accent-gold);
}

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

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.pros-list,
.cons-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.pros-list {
  border: 1px solid var(--accent-green);
}

.cons-list {
  border: 1px solid var(--accent-red);
}

.pros-title,
.cons-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.pros-title {
  color: var(--accent-green);
}

.cons-title {
  color: var(--accent-red);
}

.pros-list ul li,
.cons-list ul li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.pros-list ul li:last-child,
.cons-list ul li:last-child {
  border-bottom: none;
}

.pros-list ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.cons-list ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
}

/* Rating Block */
.rating-block {
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.rating-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.rating-stars {
  font-size: 1.5rem;
  margin: var(--spacing-sm) 0;
  color: var(--accent-gold);
}

.rating-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Image Gallery */
.image-section {
  margin: var(--spacing-xl) 0;
}

.image-section img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.image-caption {
  text-align: center;
  margin-top: var(--spacing-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
}

.faq-question {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-lg);
}

.faq-answer {
  color: var(--text-secondary);
}

.faq-answer p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.faq-checklist {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.faq-checklist-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: var(--spacing-md);
}

.faq-checklist ul li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--text-secondary);
}

.faq-checklist ul li::before {
  content: "☐";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* Changelog */
.changelog {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.changelog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.changelog-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border-color);
}

.changelog-item:last-child {
  border-bottom: none;
}

.changelog-date {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 100px;
}

.changelog-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-bonus {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
}

.badge-payment {
  background: rgba(100, 200, 150, 0.2);
  color: var(--accent-green);
}

.badge-games {
  background: rgba(180, 100, 255, 0.2);
  color: var(--accent-purple);
}

.badge-withdraw {
  background: rgba(100, 200, 255, 0.2);
  color: var(--accent-cyan);
}

.changelog-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Bonus Table */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-lg) 0;
}

.bonus-table th,
.bonus-table td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.bonus-table th {
  background: var(--bg-card);
  color: var(--accent-gold);
  font-weight: 600;
}

.bonus-table tr:hover td {
  background: var(--bg-card);
}

/* Steps */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

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

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

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

.footer-brand img {
  width: 100px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-md);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}

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

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-disclaimer {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
  margin-top: var(--spacing-lg);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.footer-copyright {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-secondary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

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

/* Login Form */
.login-form {
  max-width: 400px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.login-form h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--accent-gold);
}

/* Content Sections */
.content-block {
  margin-bottom: var(--spacing-xl);
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  scroll-margin-top: 100px;
}

.content-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  color: var(--accent-gold);
  scroll-margin-top: 100px;
}

.content-block p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.content-block ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.content-block ul li {
  padding: var(--spacing-xs) 0;
  color: var(--text-secondary);
  position: relative;
}

.content-block ul li::before {
  content: "→";
  position: absolute;
  left: calc(var(--spacing-lg) * -1);
  color: var(--accent-gold);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  margin: var(--spacing-xl) 0;
}

.cta-section h2 {
  color: var(--bg-primary);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  color: var(--bg-secondary);
  margin-bottom: var(--spacing-lg);
}

.cta-section .btn {
  background: var(--bg-primary);
  color: var(--accent-gold);
}

.cta-section .btn:hover {
  background: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
}

/* Payment Methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
  transition: all var(--transition-fast);
}

.payment-item:hover {
  border-color: var(--accent-gold);
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .header-cta {
    display: inline-flex;
    margin-left: var(--spacing-md);
  }
  
  .hero {
    min-height: 400px;
  }
  
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 2fr;
    text-align: left;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-brand img {
    margin: 0 0 var(--spacing-md);
  }
  
  .footer-brand p {
    margin: 0;
  }
  
  .footer-links {
    justify-content: flex-end;
  }
}

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

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

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Providers Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.provider-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.provider-item:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Security Features */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.security-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--bg-card);
  border-radius: var(--radius-md);
}

.security-icon {
  font-size: 1.5rem;
}

.security-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
:root {
      --dark-bg: #0f172a;
      --card-bg: #1e293b;
      --card-bg-hover: #334155;
      --primary: #3b82f6;
      --primary-hover: #2563eb;
      --secondary: #64748b;
      --text-primary: #f1f5f9;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
      --border: #334155;
      --shadow: rgba(0, 0, 0, 0.3);
      --accent: #8b5cf6;
      --success: #10b981;
      --warning: #f59e0b;
      --gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      --gradient-card: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    }
    

    body {
      background-color: var(--dark-bg);
      color: var(--text-primary);
      line-height: 1.6;
    }
    
    .container, main {
      background: transparent;
    }
    

    .image-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .image-card {
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: var(--gradient-card);
      border: 1px solid var(--border);
      position: relative;
    }
    
    .image-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 1;
    }
    
    .image-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 20px 40px var(--shadow);
    }
    
    .image-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .image-card:hover img {
      transform: scale(1.05);
    }
    
    .image-card-content {
      padding: 1.75rem;
      position: relative;
    }
    
    .image-card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .image-card-title::before {
      content: '';
      width: 4px;
      height: 20px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .image-card-text {
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 0.95rem;
    }
    
    .feature-image {
      border-radius: 16px;
      overflow: hidden;
      margin: 2.5rem 0;
      border: 1px solid var(--border);
      box-shadow: 0 10px 30px var(--shadow);
      position: relative;
    }
    
    .feature-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    }
    
    .feature-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.8s ease;
    }
    
    .feature-image:hover img {
      transform: scale(1.02);
    }
    
    .feature-image-caption {
      text-align: center;
      padding: 1.25rem;
      font-style: italic;
      color: var(--text-muted);
      background: rgba(30, 41, 59, 0.8);
      border-top: 1px solid var(--border);
      backdrop-filter: blur(10px);
      font-size: 0.95rem;
    }

    .app-showcase {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
      margin: 3.5rem 0;
      padding: 2.5rem;
      background: var(--gradient);
      border-radius: 20px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    
    .app-showcase::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
      z-index: 0;
    }
    
    .app-showcase-image {
      flex: 1;
      min-width: 300px;
      position: relative;
      z-index: 1;
    }
    
    .app-showcase-content {
      flex: 1;
      min-width: 300px;
      position: relative;
      z-index: 1;
    }
    
    .app-showcase h2 {
      color: var(--text-primary);
      font-size: 2rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .app-showcase ul {
      list-style: none;
      padding: 0;
    }
    
    .app-showcase li {
      margin-bottom: 1rem;
      padding-left: 1.5rem;
      position: relative;
      color: var(--text-secondary);
    }
    
    .app-showcase li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--success);
      font-weight: bold;
    }
    

    .section {
      background: transparent;
      margin: 3rem 0;
    }
    
    .section-title {
      color: var(--text-primary);
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
      padding-bottom: 0.75rem;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
    }
    
    .section-title span {
      color: var(--primary);
    }
    

    .content-block {
      background: transparent;
      color: var(--text-secondary);
    }
    
    .content-block p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    

    .bonus-table {
      background: rgba(30, 41, 59, 0.5);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      margin: 2rem 0;
    }
    
    .bonus-table th {
      background: rgba(59, 130, 246, 0.1);
      color: var(--text-primary);
      padding: 1rem;
      font-weight: 600;
      border-bottom: 2px solid var(--border);
    }
    
    .bonus-table td {
      padding: 1rem;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border);
    }
    
    .bonus-table tr:last-child td {
      border-bottom: none;
    }
    
    .bonus-table tr:hover {
      background: rgba(59, 130, 246, 0.05);
    }
    
   
    .steps {
      margin: 2.5rem 0;
    }
    
    .step {
      background: var(--gradient-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      transition: all 0.3s ease;
    }
    
    .step:hover {
      border-color: var(--primary);
      transform: translateX(5px);
    }
    
    .step-number {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    
    .step-content h3 {
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }
    
    .step-content p {
      color: var(--text-secondary);
      margin: 0;
    }
    
    /* FAQ */
    .faq-section {
      background: var(--gradient-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      margin: 3rem 0;
    }
    
    .faq-question {
      color: var(--text-primary);
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .faq-question::before {
      content: '❓';
      font-size: 1.5rem;
    }
    
    .faq-answer p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    .faq-checklist {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 12px;
      padding: 1.5rem;
      margin-top: 2rem;
    }
    
    .faq-checklist-title {
      color: var(--text-primary);
      margin-bottom: 1rem;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .faq-checklist-title::before {
      content: '✅';
    }
    
    .faq-checklist ul {
      list-style: none;
      padding: 0;
    }
    
    .faq-checklist li {
      color: var(--text-secondary);
      margin-bottom: 0.75rem;
      padding-left: 1.75rem;
      position: relative;
    }
    
    .faq-checklist li::before {
      content: '•';
      color: var(--success);
      position: absolute;
      left: 0;
      font-size: 1.5rem;
      line-height: 1;
    }

    .cta-section {
      text-align: center;
      padding: 3rem;
      background: var(--gradient);
      border-radius: 20px;
      margin: 4rem 0;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    
    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    
    .cta-section h2 {
      color: var(--text-primary);
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }
    
    .cta-section p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    
    .cta-section .btn {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
    
    .cta-section .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }
    

    h1, h2, h3, h4, h5, h6 {
      color: var(--text-primary);
    }
    

    a {
      color: var(--primary);
      transition: color 0.3s ease;
    }
    
    a:hover {
      color: var(--accent);
    }

    .btn {
      background: var(--primary);
      color: white;
      border: none;
      transition: all 0.3s ease;
    }
    
    .btn:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px var(--shadow);
    }
    
    .btn-secondary {
      background: var(--secondary);
    }

    @media (max-width: 768px) {
      .app-showcase {
        flex-direction: column;
        padding: 1.5rem;
        gap: 2rem;
      }
      
      .image-gallery {
        grid-template-columns: 1fr;
      }
      
      .cta-section {
        padding: 2rem 1.5rem;
      }
      
      .cta-section h2 {
        font-size: 2rem;
      }
      
      .section-title {
        font-size: 1.75rem;
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .image-card,
    .feature-image,
    .step,
    .faq-section {
      animation: fadeInUp 0.6s ease-out;
    }
    

    .image-card:nth-child(2) {
      animation-delay: 0.1s;
    }
    
    .image-card:nth-child(3) {
      animation-delay: 0.2s;
    }
    
    .image-card:nth-child(4) {
      animation-delay: 0.3s;
    }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}