/* GreatGamePlay.net - Modern Social Gaming Styles */
:root {
  --primary: rgb(255, 238, 226);
  --secondary: #FF4F79;
  --accent: #422187;
  --background: #FFFFFF;
  --surface: #FAFAFA;
  --text: #1A1A1A;
  --text-muted: #666666;
  --border: #E5E5E5;
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

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

/* Fix Bootstrap's font-size issue */
html {
  font-size: 16px !important;
}

/* Responsive font sizing */
@media (max-width: 768px) {
  html {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px !important;
  }
}


body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Sidebar Navigation */
.greatgameplay-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: 100vh;
  background: var(--background);
  border-right: 1px solid var(--border);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 2px 0 10px var(--shadow);
}

.greatgameplay-sidebar.active {
  transform: translateX(0);
}

.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.sidebar-logo img {
  margin-right: 0.75rem;
  border-radius: 8px;
}

.sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.sidebar-close:hover {
  background: var(--surface);
  color: var(--text);
}

.sidebar-nav {
  padding: 2rem 0;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-item:hover {
  background: var(--primary);
  color: var(--text);
  border-left-color: var(--accent);
}

.nav-item.active {
  background: var(--primary);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

.nav-item i {
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar-cta {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #E03D6B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 79, 121, 0.3);
}

.cta-button i {
  margin-right: 0.5rem;
}

/* Sidebar Menu Toggle Button */
.sidebar-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-menu-toggle-fixed {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.sidebar-menu-toggle:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.sidebar-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Header */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1rem;
}

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

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  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);
}

.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.mobile-logo img {
  margin-right: 0.5rem;
  border-radius: 6px;
}

.mobile-cta {
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Main Content Wrapper */
.main-wrapper {
  margin-left: 0;
  transition: margin-left 0.3s ease;
}

.main-wrapper.sidebar-open {
  margin-left: 280px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px var(--shadow);
  z-index: 1001;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

.cookie-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cookie-accept {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cookie-accept:hover {
  background: #005A8F;
}

.cookie-consent-hidden {
  display: none;
}

.stat-number-large {
  font-size: 2rem;
  margin-bottom: 30px;
}

.button-loading-hidden {
  display: none;
}

.form-success-message.form-message-hidden,
.form-error-message.form-message-hidden {
  display: none !important;
}

/* Hero Section - Completely Redesigned */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/full.webp') center/cover;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(66, 33, 135, 0.8) 0%, rgba(102, 126, 234, 0.6) 50%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero-highlight {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-align: center;
  min-width: 120px;
}

.hero-feature i {
  color: #FFD700;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-feature:hover i {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-actions-spacing {
  margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #FF4F79, #FF6B9D);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 79, 121, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 79, 121, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-right {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.8;
  animation: slideInRight 1s ease-out 0.8s both;
}

@media (max-width: 1024px) {
  .hero-right {
    display: none;
  }
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(66, 33, 135, 0.3) 100%);
}

/* Floating Elements */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.hero-section::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-section::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Responsive adjustments for hero */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-right {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 400px;
    height: 400px;
    margin: 2rem auto 0;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-features {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .hero-right {
    width: 300px;
    height: 300px;
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: var(--surface);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--background);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

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

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

/* Features Section */
.features-section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  color: var(--text);
  margin-bottom: 1rem;
}

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

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

.feature-card {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.feature-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background: var(--surface);
}

.steps-container .step-item {
  margin-bottom: 3rem;
  
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--background);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

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

/* Featured Game Section */
.featured-game-section {
  padding: 5rem 0;
}

.game-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.game-frame-wrapper {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.game-frame {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.game-info {
  padding: 2rem;
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
}

.game-info h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.game-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.game-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.game-tag {
  background: var(--primary);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background: var(--surface);
}

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

.community-card {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: transform 0.2s ease;
}

.community-card:hover {
  transform: translateY(-4px);
}

.community-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.community-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.community-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.community-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #005A8F 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary-large {
  background: var(--secondary);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-primary-large:hover {
  background: #E03D6B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 79, 121, 0.4);
}

/* Footer */
.site-footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  margin-right: 0.75rem;
  border-radius: 6px;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary);
  width: 16px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-disclaimer {
  margin-bottom: 1.5rem;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.footer-disclaimer a {
  color: var(--primary);
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .game-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar-menu-toggle {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  
  .greatgameplay-sidebar {
    transform: translateX(-100%);
  }
  
  .greatgameplay-sidebar.active {
    transform: translateX(0);
  }
  
  .main-wrapper {
    margin-left: 0;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Games Page Styles */
.games-header-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #E8F5A8 100%);
  text-align: center;
}

.games-header-section h1 {
  color: var(--text);
  margin-bottom: 1rem;
}

.games-header-section p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.games-section {
  padding: 4rem 0;
}

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

.game-card {
  background: var(--background);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.game-preview {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.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-button {
  background: var(--secondary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.play-button:hover {
  background: #E03D6B;
  transform: scale(1.05);
  color: white;
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.game-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.game-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.game-tag {
  background: var(--primary);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Categories Section */
.categories-section {
  padding: 4rem 0;
  background: var(--surface);
}

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

.category-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.category-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.category-card h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.category-card p {
  color: var(--text-muted);
  line-height: 1.5;
}

/* How to Play Section */
.how-to-play-section {
  padding: 4rem 0;
}

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

.instruction-step {
  text-align: center;
  padding: 2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.instruction-step h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.instruction-step p {
  color: var(--text-muted);
  line-height: 1.5;
}

/* Games CTA Section */
.games-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #005A8F 100%);
  color: white;
  text-align: center;
}

.games-cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.games-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Responsive adjustments for games page */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instructions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .game-preview {
    height: 150px;
  }
}

/* Contact Page Styles */
.contact-header-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #E8F5A8 100%);
  text-align: center;
}

.contact-header-section h1 {
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-header-section p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.contact-content-section {
  padding: 4rem 0;
}

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

.contact-info-section h2,
.contact-form-section h2 {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-info-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  font-size: 1.25rem;
  color: var(--accent);
}

.method-content h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.method-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.method-content a {
  color: var(--accent);
  text-decoration: none;
}

.method-content a:hover {
  text-decoration: underline;
}

.social-links h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: var(--background);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 107, 166, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.submit-button {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  background: #005A8F;
  transform: translateY(-2px);
}

.submit-button:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

.button-loading {
  display: none;
}

.submit-button.loading .button-text {
  display: none;
}

.submit-button.loading .button-loading {
  display: inline-flex;
}

/* Form Success and Error Messages */
.form-success-message,
.form-error-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
}

.form-success-message {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-success-message i,
.form-error-message i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--surface);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid var(--border);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--primary);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: none;
}

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

/* Map Section */
.map-section {
  padding: 4rem 0;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.map-address {
  font-weight: 600;
  color: var(--text);
  margin-top: 1rem;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .faq-grid {
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
  }
  
  .method-icon i {
    font-size: 1rem;
  }
}

/* About Page Styles */
.about-header-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #E8F5A8 100%);
  text-align: center;
}

.about-header-section h1 {
  color: var(--text);
  margin-bottom: 1rem;
}

.about-header-section p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.mission-section {
  padding: 4rem 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text h2,
.story-text h2 {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.mission-text p,
.story-text p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow);
}

.story-section {
  padding: 4rem 0;
  background: var(--surface);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Values Section */
.values-section {
  padding: 4rem 0;
}

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

.value-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.value-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background: var(--surface);
}

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

.team-member {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.member-avatar i {
  font-size: 2.5rem;
  color: var(--accent);
}

.team-member h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Stats Section */
.about-stats-section {
  padding: 4rem 0;
}

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

/* Commitment Section */
.commitment-section {
  padding: 4rem 0;
  background: var(--surface);
}

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

.commitment-item {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.commitment-item:hover {
  transform: translateY(-4px);
}

.commitment-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.commitment-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.commitment-item h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

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

/* About CTA Section */
.about-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, #005A8F 100%);
  color: white;
  text-align: center;
}

.about-cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.about-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

/* Responsive adjustments for about page */
@media (max-width: 768px) {
  .mission-content,
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .values-grid,
  .team-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .team-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages Styles (Privacy, Terms, Cookies) */
.privacy-header-section,
.terms-header-section,
.cookies-header-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #E8F5A8 100%);
  text-align: center;
}

.privacy-header-section h1,
.terms-header-section h1,
.cookies-header-section h1 {
  color: var(--text);
  margin-bottom: 1rem;
}

.privacy-header-section p,
.terms-header-section p,
.cookies-header-section p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.privacy-content-section,
.terms-content-section,
.cookies-content-section {
  padding: 4rem 0;
}

.privacy-content,
.terms-content,
.cookies-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-updated {
  background: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
}

.last-updated p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.9rem;
}

.policy-section,
.terms-section,
.cookies-section {
  margin-bottom: 2.5rem;
}

.policy-section h2,
.terms-section h2,
.cookies-section h2 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section h3,
.terms-section h3,
.cookies-section h3 {
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
}

.policy-section p,
.terms-section p,
.cookies-section p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-section ul,
.terms-section ul,
.cookies-section ul {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li,
.terms-section li,
.cookies-section li {
  margin-bottom: 0.5rem;
}

.contact-info {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
  .privacy-content,
  .terms-content,
  .cookies-content {
    margin: 0 1rem;
  }
  
  .policy-section h2,
  .terms-section h2,
  .cookies-section h2 {
    font-size: 1.3rem;
  }
  
  .policy-section h3,
  .terms-section h3,
  .cookies-section h3 {
    font-size: 1.1rem;
  }
}

/* JavaScript Animation Classes */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.tooltip {
  position: absolute;
  background: #333;
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  z-index: 1000;
  pointer-events: none;
  white-space: nowrap;
}

.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-ready.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.animate-ready:nth-child(4) { transition-delay: 0.3s; }

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.my-4 { margin: 1.5rem 0; }
.py-5 { padding: 3rem 0; }
