/* CSS Variables */
:root {
  /* Header Colors */
  --header-bg: #1a1a2e;
  --logo-gradient-start: #ff6b9d;
  --logo-gradient-end: #4ecdc4;
  --nav-text: #ffffff;
  --nav-hover-line: linear-gradient(90deg, var(--logo-gradient-start), var(--logo-gradient-end));

  /* Footer Colors */
  --footer-bg: #3f2e60;
  --footer-bg-dark: #332a50;
  --footer-text: #c0c0c0;
  --footer-heading: #ffffff;
  --footer-bullet-orange: #ff8c00;
  --footer-bullet-green: #40c040;
  --support-icon-blue: #40a0ff;
  --support-icon-green: #40c040;
  --support-icon-purple: #e060e0;
  --problem-gambling-btn: #8b2c4a;

  /* General Colors */
  --gradient-line: linear-gradient(90deg, #4ecdc4, #9b59b6);
  --main-gradient: linear-gradient(135deg, #1a1a2e, #9b59b6);

  /* Typography */
  --font-primary: 'Arial', sans-serif;
  --font-weight-bold: 700;
  --font-weight-normal: 400;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--footer-text);
  background: var(--main-gradient);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: var(--header-bg);
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--nav-text);
}

.header__logo img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--nav-text);
}

.logo-subtitle {
  font-size: 12px;
  color: var(--logo-gradient-end);
  font-weight: var(--font-weight-normal);
}

/* Navigation Styles */
.header__nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--logo-gradient-end);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nav-hover-line);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--nav-text);
  transition: all 0.3s ease;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

/* Home Page Styles */
.home-page {
  padding: 0;
}

/* Block 1: Hero Section */
.hero-section {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 12px 24px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  color: white;
  font-weight: var(--font-weight-bold);
}

.hero-badge i {
  color: var(--logo-gradient-end);
}

.hero-section h1 {
  font-size: 4.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
}

.hero-section h2 {
  font-size: 2.2rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 30px;
  color: var(--footer-heading);
}

.hero-section p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--footer-text);
  line-height: 1.8;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--footer-heading);
  font-weight: var(--font-weight-bold);
}

.feature-item i {
  color: var(--logo-gradient-end);
  font-size: 1.2rem;
}

/* Block 2: Statistics Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.stat-icon.blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.stat-icon.purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.stat-icon.orange {
  background: linear-gradient(135deg, #e67e22, #d35400);
}

.stat-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--footer-text);
  font-weight: var(--font-weight-normal);
}

/* Block 3: Game Universe Section */
.game-universe-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--footer-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.game-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card>* {
  position: relative;
  z-index: 2;
}

.category-icon {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
}

.category-icon.pink-blue {
  background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
}

.category-icon.blue-purple {
  background: linear-gradient(135deg, #4ecdc4, #9b59b6);
}

.category-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.category-icon.orange-gold {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.category-icon.pink-red {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-icon.light-blue {
  background: linear-gradient(135deg, #81c784, #4fc3f7);
}

.category-card h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

.category-card p {
  font-size: 1.1rem;
  color: var(--footer-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.game-count {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--logo-gradient-end);
  background: rgba(78, 205, 196, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

/* Block 4: Featured Games Section */
.featured-games-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.featured-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #f39c12, #f1c40f);
  color: #2c3e50;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: var(--font-weight-bold);
  font-size: 1.2rem;
  margin-bottom: 60px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.featured-banner i {
  font-size: 1.5rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-now-btn {
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.play-now-btn:hover {
  transform: scale(1.1);
}

.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.favorite-btn:hover {
  background: rgba(231, 76, 60, 0.8);
}

.hot-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
}

.game-info {
  padding: 25px;
}

.game-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.game-title h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
}

.game-title i {
  color: #f39c12;
  font-size: 1.2rem;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.game-rating i {
  color: #f1c40f;
}

.game-rating span {
  color: var(--footer-heading);
  font-weight: var(--font-weight-bold);
}

.game-category {
  background: rgba(78, 205, 196, 0.1);
  color: var(--logo-gradient-end);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  display: inline-block;
  margin-bottom: 20px;
}

.game-actions {
  display: flex;
  gap: 15px;
}

.btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
}

.btn-demo {
  background: transparent;
  color: var(--footer-heading);
  border: 2px solid var(--footer-heading);
}

.btn-demo:hover {
  background: var(--footer-heading);
  color: #2c3e50;
}

.btn-play {
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

/* Block 5: Premium Challenges Section */
.premium-challenges-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.challenge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.challenge-card:hover::before {
  opacity: 1;
}

.challenge-card>* {
  position: relative;
  z-index: 2;
}

.challenge-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
}

.challenge-badge.daily {
  background: rgba(243, 156, 18, 0.8);
}

.challenge-badge.vip {
  background: rgba(46, 204, 113, 0.8);
}

.challenge-badge.weekend {
  background: rgba(155, 89, 182, 0.8);
}

.challenge-badge.elite {
  background: rgba(231, 76, 60, 0.8);
}

.challenge-icon {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
}

.challenge-icon.orange-yellow {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.challenge-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.challenge-icon.pink-purple {
  background: linear-gradient(135deg, #e91e63, #9b59b6);
}

.challenge-icon.red-orange {
  background: linear-gradient(135deg, #e74c3c, #f39c12);
}

.challenge-card h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
}

.challenge-card p {
  font-size: 1.1rem;
  color: var(--footer-text);
  line-height: 1.6;
}

/* Block 6: Why Choose Section */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card>* {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
}

.feature-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.feature-icon.purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.feature-icon.pink {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.feature-icon.orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--footer-text);
  line-height: 1.6;
}

/* About Page Specific Styles */
.about-page {
  padding: 0;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.story-content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 20px;
}

.story-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.story-badge i {
  color: #f1c40f;
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.story-badge span {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  display: block;
  margin-bottom: 10px;
}

.story-badge p {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* Proudly Section */
.proudly-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.proudly-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proudly-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 20px;
}

/* Responsible Section */
.responsible-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.support-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.support-block h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
}

.support-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 30px;
}

.support-block .btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Contact Page Specific Styles */
.contact-page {
  padding: 0;
}

/* Get in Touch Section */
.get-in-touch-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Styles */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

.contact-form>p {
  font-size: 1.1rem;
  color: var(--footer-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--footer-heading);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--logo-gradient-end);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

/* Contact Information Styles */
.contact-info-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-icon.red-pink {
  background: linear-gradient(135deg, #e74c3c, #e91e63);
}

.contact-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.contact-icon.blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.contact-icon.purple-pink {
  background: linear-gradient(135deg, #9b59b6, #e91e63);
}

.contact-icon.orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.6;
}

/* Privacy, Terms, and Responsible Gaming Page Styles */
.privacy-page,
.terms-page,
.responsible-page {
  padding: 0;
}

/* Overview Sections */
.privacy-overview-section,
.terms-overview-section,
.responsible-overview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.privacy-overview,
.terms-overview,
.responsible-overview {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-overview p,
.terms-overview p,
.responsible-overview p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--footer-text);
}

/* Privacy Features Section */
.privacy-features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Service Terms Section */
.service-terms-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Commitment Section */
.commitment-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Main Content Sections */
.privacy-content-section,
.terms-content-section,
.responsible-content-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.privacy-content,
.terms-content,
.responsible-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Content Header */
.content-header {
  text-align: center;
  margin-bottom: 50px;
}

.content-header h2 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  font-size: 1.1rem;
  color: var(--footer-text);
  font-style: italic;
}

/* Content Intro */
.content-intro {
  margin-bottom: 50px;
}

.content-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--footer-text);
}

/* Policy/Terms Sections */
.policy-section,
.terms-section,
.content-section {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-section h3,
.terms-section h3,
.content-section h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.policy-section h3::before,
.terms-section h3::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  border-radius: 2px;
}

.policy-section p,
.terms-section p,
.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 15px;
}

.policy-section ul,
.terms-section ul,
.content-section ul {
  margin: 20px 0;
  padding-left: 25px;
}

.policy-section li,
.terms-section li,
.content-section li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 10px;
  position: relative;
}

.policy-section li::before,
.terms-section li::before,
.content-section li::before {
  content: '●';
  color: var(--logo-gradient-end);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Subsections */
.subsection {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border-left: 3px solid var(--logo-gradient-end);
}

.subsection h4 {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

/* Important Notice */
.important-notice {
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}

.important-notice h4 {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: #f39c12;
  margin-bottom: 15px;
}

.important-notice p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
}

/* Remember Note */
.remember-note {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tool-content h4 {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 10px;
}

.tool-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--footer-text);
}

/* Support Resources */
.support-resources {
  margin: 25px 0;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #e74c3c, #e91e63);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.resource-content h4 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 10px;
}

.resource-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--footer-text);
}

/* Contact Info in Content */
.contact-info {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid var(--logo-gradient-end);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--logo-gradient-end);
  width: 20px;
}

/* Links in Content */
.policy-section a,
.terms-section a {
  color: var(--logo-gradient-end);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: color 0.3s ease;
}

.policy-section a:hover,
.terms-section a:hover {
  color: var(--logo-gradient-start);
}

/* Footer Styles */
.footer {
  background: var(--footer-bg);
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__column h3 {
  color: var(--footer-heading);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}

.footer__logo img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.footer__logo h3 {
  margin-bottom: 10px;
}

.footer__logo p {
  line-height: 1.6;
  color: var(--footer-text);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--footer-heading);
}

.bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.bullet.orange {
  background: var(--footer-bullet-orange);
}

.bullet.green {
  background: var(--footer-bullet-green);
}

/* Support Items */
.support-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.support-icon.blue {
  background: var(--support-icon-blue);
}

.support-icon.green {
  background: var(--support-icon-green);
}

.support-icon.purple {
  background: var(--support-icon-purple);
}

.support-info {
  display: flex;
  flex-direction: column;
}

.support-title {
  color: var(--footer-heading);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
}

.support-detail {
  color: var(--footer-text);
  font-size: 12px;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid var(--footer-text);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  color: var(--footer-text);
}

.problem-gambling-btn {
  background: var(--problem-gambling-btn);
  color: var(--footer-heading);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: var(--font-weight-bold);
  transition: background-color 0.3s ease;
}

.problem-gambling-btn:hover {
  background: #a03a5a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header__nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .header__mobile-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__mobile-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section h2 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-row {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .story-badge {
    padding: 20px;
  }

  .support-block {
    padding: 30px 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    width: 40px;
    height: 40px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer__top {
    gap: 25px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .category-card {
    padding: 30px 20px;
  }

  .challenge-card {
    padding: 30px 20px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .story-badge {
    padding: 20px;
  }

  .story-badge span {
    font-size: 1.1rem;
  }

  .support-block {
    padding: 25px 20px;
  }

  .support-block h3 {
    font-size: 1.5rem;
  }

  .content-header h2 {
    font-size: 2rem;
  }

  .policy-section h3,
  .terms-section h3,
  .content-section h3 {
    font-size: 1.5rem;
  }

  .policy-section,
  .terms-section,
  .content-section {
    padding: 15px;
  }

  .important-notice {
    padding: 20px 15px;
  }

  .tool-item,
  .resource-item {
    padding: 15px;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 25px 20px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 1.5rem;
  }

  .faq-item {
    padding: 25px 20px;
  }
}

/* Gradient Line Separator */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-line);
}