/* Goley90 - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
  /* Primary Colors */
  --primary-blue: #182ad5;
  --primary-navy: #010f4d;
  --accent-yellow: #f0f023;
  --accent-gold: #ffd700;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #182ad5 0%, #010f4d 100%);
  --gradient-accent: linear-gradient(135deg, #f0f023 0%, #ffd700 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #050811 100%);
  
  /* Neutral Colors */
  --bg-dark: #0a0e1a;
  --bg-darker: #050811;
  --bg-card: #1a1f35;
  --bg-card-hover: #222842;
  --text-light: #ffffff;
  --text-muted: #a8b2d1;
  --border-color: rgba(24, 42, 213, 0.2);
  --border-accent: rgba(240, 240, 35, 0.3);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(240, 240, 35, 0.3);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== Section Utilities ===== */
section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-base);
}

.logo:hover img {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-base);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 24px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(240, 240, 35, 0.5);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary-blue);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-accent);
  color: var(--accent-yellow);
}

.btn-outline:hover {
  background: var(--accent-yellow);
  color: var(--bg-dark);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* ===== Quick Access Links ===== */
.quick-access {
  background: var(--gradient-primary);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--accent-yellow);
}

.access-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.access-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.access-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.link-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.link-input {
  background: rgba(255, 255, 255, 0.9);
  color: var(--bg-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 140px;
  text-align: center;
}

.copy-btn {
  background: var(--accent-yellow);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.copy-btn:hover {
  background: var(--accent-gold);
  transform: scale(1.05);
}

.copy-btn.copied {
  background: #22c55e;
  color: white;
}

/* ===== Hero Section ===== */
.hero {
  background: var(--gradient-dark);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 42, 213, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--shadow-glow);
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-pill svg {
  color: var(--accent-yellow);
}

/* ===== Steps Section ===== */
.steps-section {
  background: #0d1525;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.steps-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.steps-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.steps-header h2 .highlight {
  color: var(--accent-yellow);
}

.steps-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: rgba(26, 31, 53, 0.6);
  border: 1px solid rgba(24, 42, 213, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.step-card:hover {
  background: rgba(26, 31, 53, 0.8);
  border-color: var(--accent-yellow);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 240, 35, 0.15);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(24, 42, 213, 0.15);
  border: 2px solid rgba(24, 42, 213, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.step-card:hover .step-icon {
  background: rgba(240, 240, 35, 0.15);
  border-color: var(--accent-yellow);
}

.step-icon svg {
  color: var(--primary-blue);
  transition: color var(--transition-base);
}

.step-card:hover .step-icon svg {
  color: var(--accent-yellow);
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.step-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.step-link:hover {
  gap: 0.75rem;
  text-shadow: 0 0 10px rgba(240, 240, 35, 0.3);
}

/* ===== About Section ===== */
.about-section {
  background: var(--bg-darker);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.about-text p strong {
  color: var(--accent-yellow);
  font-weight: 700;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-base);
}

.badge-item:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.badge-item img {
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.badge-item span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== Services Section ===== */
.services-section {
  background: var(--bg-dark);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-yellow);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon img {
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(240, 240, 35, 0.3));
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== Quick Links Section ===== */
.quick-links-section {
  background: var(--gradient-primary);
  text-align: center;
}

.quick-links-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.quick-link-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.quick-link-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--accent-yellow);
}

.quick-link-card .icon {
  font-size: 2.5rem;
}

.quick-link-card .text {
  font-weight: 600;
  font-size: 1rem;
}

/* ===== Trust Section ===== */
.trust-section {
  background: var(--bg-darker);
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-lg);
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent-yellow);
}

.trust-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.warning-box p {
  color: var(--text-light);
  line-height: 1.8;
}

.warning-box strong {
  color: #ef4444;
}

/* ===== Bonuses Section ===== */
.bonuses-section {
  background: #0d1525;
  padding: var(--spacing-xl) 0;
}

.section-label {
  display: inline-block;
  background: rgba(240, 240, 35, 0.1);
  color: var(--accent-yellow);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-card {
  background: rgba(26, 31, 53, 0.6);
  border: 1px solid rgba(24, 42, 213, 0.2);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.bonus-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 240, 35, 0.15);
}

.bonus-accent {
  height: 4px;
  width: 100%;
}

.bonus-icon {
  font-size: 4rem;
  text-align: right;
  padding: 1.5rem 2rem 0;
  opacity: 0.15;
  position: absolute;
  right: 0;
  top: 0;
}

.bonus-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 2rem 1rem;
  color: var(--text-light);
}

.bonus-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 2rem 1.5rem;
}

.bonus-btn {
  display: inline-block;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 2rem 2rem;
  transition: all var(--transition-fast);
}

.bonus-btn:hover {
  color: var(--accent-yellow);
}

/* ===== Why Section ===== */
.why-section {
  background: var(--bg-dark);
  padding: var(--spacing-xl) 0;
}

.why-box {
  background: rgba(26, 31, 53, 0.4);
  border: 1px solid rgba(24, 42, 213, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(24, 42, 213, 0.1);
  border: 2px solid rgba(24, 42, 213, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.why-item:hover .why-icon {
  background: rgba(240, 240, 35, 0.1);
  border-color: var(--accent-yellow);
  transform: scale(1.1);
}

.why-icon svg {
  color: var(--accent-yellow);
}

.why-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Detailed Info Section ===== */
.info-detailed-section {
  background: var(--bg-dark);
  padding: var(--spacing-xl) 0;
}

.info-block {
  background: rgba(26, 31, 53, 0.4);
  border: 1px solid rgba(24, 42, 213, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.info-intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.info-intro strong {
  color: var(--text-light);
  font-weight: 600;
}

.info-list li a {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.info-list li a:hover {
  color: #fff;
  border-bottom-color: var(--accent-yellow);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.info-list li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: bold;
  font-size: 1.25rem;
}

.info-list li strong {
  color: var(--text-light);
  font-weight: 600;
}

.info-highlight {
  background: rgba(240, 240, 35, 0.08);
  border-left: 4px solid var(--accent-yellow);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-highlight p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.info-highlight strong {
  color: var(--accent-yellow);
}

.problem-solution {
  background: rgba(24, 42, 213, 0.05);
  border: 1px solid rgba(24, 42, 213, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.problem-solution h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.problem-solution p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.problem-solution p:last-child {
  margin-bottom: 0;
}

.problem-solution strong {
  color: var(--text-light);
  font-weight: 600;
}

.steps-list {
  margin: 2rem 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

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

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.faq-section {
  background: var(--bg-darker);
  padding: var(--spacing-xl) 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 31, 53, 0.6);
  border: 1px solid rgba(24, 42, 213, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--accent-yellow);
  box-shadow: 0 8px 25px rgba(240, 240, 35, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--accent-yellow);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition-base);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--border-color);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges img {
  opacity: 0.7;
  transition: var(--transition-base);
}

.footer-badges img:hover {
  opacity: 1;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-menu a:hover {
  color: var(--accent-yellow);
  padding-left: 0.5rem;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-contact svg {
  color: var(--accent-yellow);
  flex-shrink: 0;
}

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

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(168, 178, 209, 0.7);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  /* ===== HEADER - MENÜ SOLDA LOGO ORTADA GİRİŞ SAĞDA ===== */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-darker);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: 36px 1fr 90px;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    min-height: 48px;
  }

  /* Menü - Sol (1. kolon) */
  .mobile-menu-toggle {
    display: flex !important;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    grid-column: 1;
    order: 1;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    display: block;
    background: var(--text-light);
    transition: all 0.3s ease;
  }

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

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

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

  /* Logo - Orta (2. kolon) */
  .logo {
    width: 100px;
    justify-self: start;
    margin-left: 0.5rem;
    grid-column: 2;
    order: 2;
  }

  .logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Giriş Butonu - Sağ (3. kolon) */
  .header-cta {
    display: flex !important;
    justify-content: flex-end;
    grid-column: 3;
    order: 3;
  }

  .header-cta .btn-secondary {
    display: none !important;
  }

  .header-cta .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
  
  .nav {
    display: none !important;
    position: fixed;
    top: 48px;
    left: -100%;
    width: 70%;
    max-width: 280px;
    height: calc(100vh - 48px);
    background: var(--bg-darker);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }
  
  .nav.active {
    display: flex !important;
    left: 0;
  }

  .nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  /* ===== HERO - SIFIR BOŞLUK ===== */
  .hero {
    padding: 0 0 3rem 0 !important;
    margin-top: 0 !important;
  }

  .hero .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .trust-badge {
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  /* Hero Title - mobilde daha küçük */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 380px) {
  .header-inner {
    grid-template-columns: 32px 1fr 80px;
    gap: 0.5rem;
  }

  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }

  .logo {
    width: 85px;
  }

  .header-cta .btn-primary {
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }
}
  
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
    gap: 0.5rem;
  }
  
  .nav.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-cta {
    order: -1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-desc {
    font-size: 1.0625rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .access-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .access-links {
    flex-direction: column;
    width: 100%;
  }
  
  .link-item {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-base);
}

.social-btn:hover {
  background: rgba(240, 240, 35, 0.15);
  border-color: var(--accent-yellow);
  transform: translateY(-3px);
  color: var(--accent-yellow);
}

.social-btn svg {
  flex-shrink: 0;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.4); }
}

.trust-badge svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* ===== Contact Page Styles ===== */

/* Page Hero */
.page-hero {
  background: var(--gradient-dark);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 42, 213, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.page-hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Contact Methods */
.contact-methods-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-method-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.contact-method-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(240, 240, 35, 0.15);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.method-icon.live-chat { background: rgba(59, 130, 246, 0.15); }
.method-icon.whatsapp { background: rgba(34, 197, 94, 0.15); }
.method-icon.telegram { background: rgba(14, 165, 233, 0.15); }
.method-icon.email { background: rgba(168, 85, 247, 0.15); }
.method-icon.phone { background: rgba(234, 88, 12, 0.15); }
.method-icon.callback { background: rgba(251, 191, 36, 0.15); }

.contact-method-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.contact-method-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.method-desc {
  font-size: 0.9375rem !important;
  margin-bottom: 1.5rem !important;
}

.btn-block {
  width: 100%;
  margin-bottom: 1rem;
}

.btn-success {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

.btn-success:hover {
  background: #16a34a;
}

.btn-info {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}

.btn-info:hover {
  background: #0284c7;
}

.availability {
  display: inline-block;
  font-size: 0.8125rem;
  color: #22c55e;
  font-weight: 600;
}

.email-info, .phone-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.email-info span, .phone-info span {
  display: block;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.phone-info small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.form-info p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.form-feature svg {
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.contact-form-container {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-label span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.checkbox-label a {
  color: var(--accent-yellow);
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Callback Section */
.callback-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.callback-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.callback-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.callback-info p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.callback-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.callback-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.callback-form-container {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .form-wrapper,
  .callback-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-hero-content h1 {
    font-size: 2rem;
  }
}

/* ===== About Page Styles ===== */

.about-content-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-intro strong {
  color: var(--text-light);
  font-weight: 600;
}

.about-features-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: all var(--transition-base);
}

.about-feature-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(240, 240, 35, 0.1);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.security {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.feature-icon.tech {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.feature-icon.ux {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

.feature-icon.quality {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.feature-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
}

.about-feature-card p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-feature-card p:last-child {
  margin-bottom: 0;
}

.about-feature-card strong {
  color: var(--text-light);
  font-weight: 600;
}

.about-advantages {
  background: rgba(240, 240, 35, 0.05);
  border: 2px solid rgba(240, 240, 35, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
}

.about-advantages h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 2rem;
  text-align: center;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
}

.advantage-item svg {
  color: var(--accent-yellow);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-conclusion {
  max-width: 900px;
  margin: 0 auto;
}

.about-conclusion > p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.about-conclusion strong {
  color: var(--text-light);
  font-weight: 600;
}

.cta-box {
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(240, 240, 35, 0.2);
}

.cta-box h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.125rem;
  color: var(--bg-dark);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-box .btn {
  background: var(--bg-dark);
  color: var(--accent-yellow);
  border-color: var(--bg-dark);
  font-size: 1.125rem;
  padding: 1rem 3rem;
}

.cta-box .btn:hover {
  background: var(--bg-darker);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .feature-header {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-header h3 {
    font-size: 1.5rem;
  }
  
  .about-feature-card {
    padding: 2rem;
  }
  
  .about-advantages {
    padding: 2rem;
  }
  
  .cta-box {
    padding: 2rem;
  }
  
  .cta-box h4 {
    font-size: 1.5rem;
  }
}

/* ===== Bonuses Page Styles ===== */

.featured-bonuses-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-yellow);
  box-shadow: 0 15px 50px rgba(240, 240, 35, 0.2);
}

.bonus-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  z-index: 2;
}

.bonus-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--card-bg));
}

.bonus-content {
  padding: 2rem;
}

.bonus-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.bonus-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bonus-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
}

/* Bonus Rules */
.bonus-rules-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

.rules-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.rules-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rules-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.rules-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

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

.rule-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition-base);
}

.rule-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.rule-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.rule-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.rule-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Why Bonuses */
.why-bonuses-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.why-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.why-bonus-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 240, 35, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(240, 240, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  transition: all var(--transition-base);
}

.why-bonus-card:hover .why-icon {
  background: rgba(240, 240, 35, 0.2);
  transform: scale(1.1);
}

.why-bonus-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.why-bonus-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .bonus-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-amount {
    font-size: 1.5rem;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .why-bonuses-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Policy Pages Styles ===== */

.policy-content-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.policy-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar */
.policy-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-menu {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.sidebar-menu h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 0.75rem;
}

.sidebar-menu a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
}

.sidebar-menu a:hover {
  color: var(--accent-yellow);
  background: rgba(240, 240, 35, 0.1);
  padding-left: 1rem;
}

/* Main Content */
.policy-main {
  max-width: 900px;
}

.policy-update {
  background: rgba(240, 240, 35, 0.1);
  border-left: 3px solid var(--accent-yellow);
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text-light);
}

.policy-section {
  margin-bottom: 4rem;
}

.policy-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.policy-section p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.policy-section strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Info Boxes */
.info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.info-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.info-box li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: bold;
}

/* Purpose Grid */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.purpose-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.purpose-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.purpose-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.purpose-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.purpose-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Security Features */
.security-features {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.security-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.security-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Cookie Types */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.cookie-type h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.cookie-type p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Rights List */
.rights-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition-base);
}

.right-item:hover {
  border-color: var(--accent-yellow);
}

.right-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.right-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.right-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Contact Box */
.contact-box {
  background: rgba(240, 240, 35, 0.1);
  border: 2px solid rgba(240, 240, 35, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.contact-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.contact-box p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.contact-box strong {
  color: var(--accent-yellow);
}

/* Version Info */
.version-info {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

.version-info p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.version-info p:last-child {
  margin-bottom: 0;
}

.version-info strong {
  color: var(--text-light);
}

/* Conclusion Box */
.conclusion-box {
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.conclusion-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
}

.conclusion-box p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bg-dark);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.conclusion-box p:last-child {
  margin-bottom: 0;
}

.conclusion-box a {
  color: var(--bg-dark);
  font-weight: 700;
  text-decoration: underline;
}

.conclusion-box a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .policy-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .policy-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .purpose-grid,
  .cookie-types {
    grid-template-columns: 1fr;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .conclusion-box {
    padding: 2rem;
  }
  
  .conclusion-box h3 {
    font-size: 1.5rem;
  }
}

/* ===== Cookie Policy Additional Styles ===== */

.cookie-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}

.cookie-info-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.cookie-info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cookie-info-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.cookie-info-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Cookie Types Detailed */
.cookie-types-detailed {
  display: grid;
  gap: 2.5rem;
  margin: 2rem 0;
}

.cookie-type-detailed {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition-base);
}

.cookie-type-detailed:hover {
  border-color: var(--accent-yellow);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-type-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-type-icon.essential {
  background: rgba(59, 130, 246, 0.15);
}

.cookie-type-icon.functional {
  background: rgba(168, 85, 247, 0.15);
}

.cookie-type-icon.performance {
  background: rgba(34, 197, 94, 0.15);
}

.cookie-type-icon.marketing {
  background: rgba(251, 191, 36, 0.15);
}

.cookie-type-title {
  flex: 1;
}

.cookie-type-title h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cookie-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-badge.required {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.cookie-badge.optional {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.cookie-type-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cookie-examples {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-examples h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cookie-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-examples li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.cookie-examples li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: bold;
}

.cookie-control {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-control strong {
  color: var(--text-light);
}

/* Browser Controls */
.browser-controls {
  margin: 2rem 0;
}

.browser-controls h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 2rem;
}

.browser-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

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

.browser-icon {
  font-size: 2.5rem;
}

.browser-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.browser-item ol {
  margin: 0;
  padding-left: 1.5rem;
}

.browser-item li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Third Party List */
.third-party-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.third-party-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.third-party-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.third-party-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.third-party-item p:last-child {
  margin-bottom: 0;
}

.third-party-item a {
  color: var(--accent-yellow);
  font-size: 0.875rem;
  text-decoration: underline;
}

.third-party-item a:hover {
  opacity: 0.8;
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Purpose List (Cookie specific) */
.purpose-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.purpose-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition-base);
}

.purpose-item:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-3px);
}

.purpose-item .purpose-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.purpose-item .purpose-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.purpose-item .purpose-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .cookie-info-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-type-header {
    flex-direction: column;
    text-align: center;
  }
  
  .browser-controls h3 {
    font-size: 1.25rem;
  }
}

/* ===== Terms of Service Additional Styles ===== */

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.term-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.term-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.term-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.term-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.term-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.term-card strong {
  color: var(--text-light);
}

/* Security Rules */
.security-rules {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-rule {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.security-rule .rule-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.security-rule .rule-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.security-rule .rule-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.security-rule .rule-content strong {
  color: var(--text-light);
}

/* Usage Rules List */
.usage-rules-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.usage-rule-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.usage-rule-item:hover {
  border-color: var(--accent-yellow);
}

.usage-rule-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.usage-rule-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.usage-rule-item strong {
  color: var(--text-light);
}

/* Financial Grid */
.financial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.financial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.financial-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.financial-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.financial-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.financial-card li:last-child {
  border-bottom: none;
}

.financial-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-size: 1.5rem;
  line-height: 1;
}

/* Bonus Terms */
.bonus-terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bonus-term-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.bonus-term-item:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.bonus-term-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-term-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.bonus-term-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.bonus-term-item strong {
  color: var(--text-light);
}

/* Forbidden List */
.forbidden-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.forbidden-item {
  background: var(--card-bg);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.forbidden-item:hover {
  border-color: #ef4444;
  transform: translateY(-3px);
}

.forbidden-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.forbidden-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.75rem;
}

.forbidden-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* IP Rights */
.ip-rights {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.ip-right-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.ip-right-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.ip-right-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.ip-right-item strong {
  color: var(--text-light);
}

/* Liability List */
.liability-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.liability-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.liability-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.liability-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.liability-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .terms-grid,
  .financial-grid,
  .bonus-terms,
  .forbidden-list {
    grid-template-columns: 1fr;
  }
  
  .security-rule {
    flex-direction: column;
  }
}

/* ===== Responsible Gaming Styles ===== */

.rg-hero-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}

.rg-hero-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.rg-hero-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 1rem;
}

.rg-hero-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* Age Verification Grid */
.age-verification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.age-verify-card {
  background: var(--card-bg);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.age-verify-card:hover {
  border-color: #ef4444;
  transform: translateY(-5px);
}

.verify-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.age-verify-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 1rem;
}

.age-verify-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.age-verify-card strong {
  color: var(--text-light);
}

/* Conscious Gaming Rules */
.conscious-gaming-rules {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.cg-rule {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.cg-rule:hover {
  border-color: var(--accent-yellow);
  transform: translateX(10px);
}

.cg-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.cg-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.cg-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.cg-content strong {
  color: var(--text-light);
}

/* Control Tools Grid */
.control-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.control-tool {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.control-tool:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(240, 240, 35, 0.15);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.control-tool h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.control-tool p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.control-tool strong {
  color: var(--text-light);
}

.tool-action {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.tool-action p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.tool-action strong {
  color: var(--accent-yellow);
}

/* Addiction Signs */
.addiction-signs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.sign-category {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.sign-category h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 1.5rem;
}

.sign-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sign-category li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sign-category li:last-child {
  border-bottom: none;
}

.sign-category li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

/* Help Resources */
.help-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.help-resource {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.help-resource:hover {
  border-color: #22c55e;
  transform: translateY(-5px);
}

.help-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #22c55e;
}

.help-resource h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.help-resource p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.help-resource a {
  color: var(--accent-yellow);
  text-decoration: underline;
}

.help-resource a:hover {
  opacity: 0.8;
}

/* Parental Controls */
.parental-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pc-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.pc-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pc-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.pc-item strong {
  color: var(--text-light);
}

.software-recommendations {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.software-recommendations h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.software-recommendations ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.software-recommendations li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.software-recommendations li:last-child {
  border-bottom: none;
}

.software-recommendations li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.software-recommendations strong {
  color: var(--text-light);
}

/* RG Recommendations */
.rg-recommendations {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.rg-rec {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.rg-rec:hover {
  border-color: var(--accent-yellow);
  transform: translateX(10px);
}

.rec-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.rec-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.rec-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .rg-hero-card {
    flex-direction: column;
    text-align: center;
  }
  
  .age-verification-grid,
  .control-tools-grid,
  .addiction-signs,
  .help-resources,
  .parental-controls {
    grid-template-columns: 1fr;
  }
  
  .cg-rule,
  .rg-rec {
    flex-direction: column;
  }
}

/* ===== Casino Pages Styles ===== */

/* Casino Stats */
.casino-stats-section {
  background: var(--bg-darker);
  padding: 60px 0;
  margin-top: -40px;
}

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
}

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

/* Game Categories */
.game-categories-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(240, 240, 35, 0.2);
}

.category-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Providers */
.providers-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.provider-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.provider-card:hover {
  border-color: var(--accent-yellow);
  transform: scale(1.05);
}

.provider-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.provider-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Casino Features */
.casino-features-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

/* Popular Games */
.popular-games-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

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

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

.game-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.game-placeholder {
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.game-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.game-provider {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.game-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.game-rtp,
.game-volatility,
.game-jackpot {
  font-size: 0.8125rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.game-jackpot {
  color: var(--accent-yellow);
  background: rgba(240, 240, 35, 0.1);
}

.game-info .btn {
  margin-top: auto;
  width: 100%;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== Game Detail Page Styles ===== */

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-yellow);
  text-decoration: none;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

/* Game Hero */
.game-hero-section {
  background: var(--bg-darker);
  padding: 60px 0;
}

.game-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.game-hero-image {
  position: relative;
}

.game-hero-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.game-hero-placeholder span {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.game-hero-placeholder p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

.game-hero-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
}

.badge-popular {
  background: var(--gradient-accent);
  color: var(--bg-dark);
}

.badge-high-rtp {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.game-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.game-meta-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.provider-tag,
.category-tag {
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.game-intro {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.game-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.quick-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
}

.game-cta-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Game Specs Table */
.game-specs-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.specs-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.game-specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.game-specs-table thead {
  background: rgba(255, 255, 255, 0.03);
}

.game-specs-table th,
.game-specs-table td {
  padding: 1.25rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.game-specs-table th {
  font-weight: 700;
  color: var(--accent-yellow);
  font-size: 1rem;
}

.game-specs-table td {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.game-specs-table td strong {
  color: var(--text-light);
}

.game-specs-table tbody tr:last-child td {
  border-bottom: none;
}

.game-specs-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Game Features Detailed */
.game-features-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-detailed {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.feature-detailed:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

/* Paytable */
.paytable-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.paytable-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.paytable {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.paytable thead {
  background: rgba(240, 240, 35, 0.1);
}

.paytable th,
.paytable td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.paytable th {
  font-weight: 700;
  color: var(--accent-yellow);
  font-size: 0.9375rem;
}

.paytable td {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.paytable td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-light);
}

.paytable tbody tr.symbol-high {
  background: rgba(240, 240, 35, 0.05);
}

.paytable tbody tr.symbol-medium {
  background: rgba(59, 130, 246, 0.05);
}

.paytable tbody tr.symbol-low {
  background: rgba(156, 163, 175, 0.05);
}

.paytable tbody tr:last-child td {
  border-bottom: none;
}

.paytable-note {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}

.paytable-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.paytable-note p:last-child {
  margin-bottom: 0;
}

.paytable-note strong {
  color: var(--text-light);
}

/* How to Play & Tips */
.how-to-play-section,
.tips-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

.steps-grid,
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card,
.tip-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.step-card:hover,
.tip-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-card h4,
.tip-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.step-card p,
.tip-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.similar-games-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .game-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .game-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .game-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .categories-grid,
  .providers-grid,
  .features-grid,
  .games-grid,
  .features-detailed-grid,
  .steps-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .game-hero-content h1 {
    font-size: 2rem;
  }
  
  .game-quick-stats {
    grid-template-columns: 1fr;
  }
  
  .game-specs-table th,
  .game-specs-table td,
  .paytable th,
  .paytable td {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* ===== Live Casino & Sports Additional Styles ===== */

.live-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(239, 68, 68, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  z-index: 10;
}

.live-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.live-match-card:hover {
  border-color: #ef4444;
}

.sports-section .game-image,
.sport-image {
  height: 220px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.sport-card .game-meta {
  font-size: 0.875rem;
}

.sport-card .game-rtp,
.sport-card .game-volatility {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* Resim klasörleri için fallback */
img[src*="live-games"],
img[src*="sports"] {
  display: block;
}

img[src*="live-games"]:not([src$=".jpg"]):not([src$=".png"]):not([src$=".webp"]),
img[src*="sports"]:not([src$=".jpg"]):not([src$=".png"]):not([src$=".webp"]) {
  display: none;
}

/* ===== Mobile App Section ===== */
.mobile-app-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.mobile-app-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(240, 240, 35, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(240, 240, 35, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mobile-app-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mobile-app-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
}

.app-feature-item svg {
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.app-download-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-base);
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

.app-btn svg {
  flex-shrink: 0;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-btn-small {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-btn-large {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
}

.mobile-app-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-app-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Footer Badges Fix */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-badges img {
  display: block;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
  .mobile-app-grid {
    gap: 3rem;
  }
  
  .mobile-app-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-app-section {
    padding: 4rem 0;
  }
  
  .mobile-app-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .mobile-app-content h2 {
    font-size: 1.75rem;
  }
  
  .mobile-app-desc {
    font-size: 1rem;
  }
  
  .mobile-app-image {
    order: -1;
  }
  
  .mobile-app-image img {
    max-width: 300px;
  }
  
  .app-download-buttons {
    flex-direction: column;
  }
  
  .app-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Info Section Link & Highlight Improvements */
.info-intro strong,
.info-list li strong {
  color: var(--text-light);
}

.info-intro a,
.info-block p a {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.info-intro a:hover,
.info-block p a:hover {
  color: #fff;
  border-bottom-color: var(--accent-yellow);
}

/* Highlight important keywords */
.info-highlight strong {
  color: var(--accent-yellow);
}

/* ===== ESKI MOBİL CSS SİLİNDİ - Aşağıdaki yeni versiyon kullanılıyor ===== */

/* ===== Info Section Link Styling ===== */
.info-list a {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.info-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===== ESKI MOBİL CSS SİLİNDİ - Yukarıdaki 1307. satırdaki CSS kullanılıyor ===== */


/* ========================================
   MOBİL HEADER VE HERO - FİNAL VERSİYON
   Bu CSS en sonda olduğu için diğerlerini override eder
   ======================================== */

@media (max-width: 768px) {
  /* HEADER SIFIRLA */
  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: var(--bg-darker) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  }

  .header .container {
    padding: 0 1rem !important;
  }

  /* HEADER INNER - GRID LAYOUT */
  .header-inner {
    display: grid !important;
    grid-template-columns: 36px 1fr 90px !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.5rem 0 !important;
    min-height: 48px !important;
    flex-wrap: nowrap !important;
  }

  /* MENÜ - SOL (1. Kolon) */
  .mobile-menu-toggle {
    display: flex !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    grid-column: 1 !important;
    order: 1 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
  }

  .mobile-menu-toggle span {
    width: 24px !important;
    height: 2.5px !important;
    display: block !important;
    background: var(--text-light) !important;
    transition: all 0.3s ease !important;
  }

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

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

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

  /* LOGO - ORTA (2. Kolon) */
  .logo {
    width: 100px !important;
    grid-column: 2 !important;
    order: 2 !important;
    justify-self: start !important;
    margin-left: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .logo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* BUTONLAR - SAĞ (3. Kolon) */
  .header-cta {
    display: flex !important;
    grid-column: 3 !important;
    order: 3 !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
  }

  /* KAYIT OL BUTONU GİZLE */
  .header-cta .btn-secondary,
  .header-cta a.btn-secondary,
  .header-cta .btn.btn-secondary {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
  }

  /* GİRİŞ YAP BUTONU */
  .header-cta .btn-primary {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.8125rem !important;
    white-space: nowrap !important;
    display: inline-flex !important;
  }

  /* NAV MENÜ */
  .nav {
    display: none !important;
    position: fixed !important;
    top: 48px !important;
    left: -100% !important;
    width: 70% !important;
    max-width: 280px !important;
    height: calc(100vh - 48px) !important;
    background: var(--bg-darker) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem 1.5rem !important;
    transition: left 0.3s ease !important;
    z-index: 999 !important;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5) !important;
    overflow-y: auto !important;
  }

  .nav.active {
    display: flex !important;
    left: 0 !important;
  }

  .nav a {
    width: 100% !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 1rem !important;
  }

  /* HERO - SIFIR BOŞLUK */
  .hero {
    padding: 0 0 3rem 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .hero::before {
    display: none !important;
  }

  .hero .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .hero-content {
    padding: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .trust-badge {
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
  }

  .hero-desc {
    font-size: 0.95rem !important;
  }

  .hero-cta {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
}

/* KÜÇÜK EKRANLAR */
@media (max-width: 380px) {
  .header-inner {
    grid-template-columns: 32px 1fr 80px !important;
    gap: 0.5rem !important;
  }

  .mobile-menu-toggle {
    width: 32px !important;
    height: 32px !important;
  }

  .mobile-menu-toggle span {
    width: 20px !important;
    height: 2px !important;
  }

  .logo {
    width: 85px !important;
  }

  .header-cta .btn-primary {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.75rem !important;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }
}
