/* GameBonding.net - Finnish Social Gaming Platform - Redesigned */

:root {
  --gamebonding-primary: #FF6B6B;
  --gamebonding-secondary: #4ECDC4;
  --gamebonding-accent: #FFE66D;
  --gamebonding-dark: #2C3E50;
  --gamebonding-darker: #1A252F;
  --gamebonding-light: #F8F9FA;
  --gamebonding-lighter: #FFFFFF;
  --gamebonding-text: #2C3E50;
  --gamebonding-text-light: #7F8C9A;
  --gamebonding-border: #E1E8ED;
  --gamebonding-gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 50%, #FFB6B6 100%);
  --gamebonding-gradient-2: linear-gradient(135deg, #4ECDC4 0%, #6EDDD6 50%, #8EEDE8 100%);
  --gamebonding-gradient-3: linear-gradient(135deg, #FFE66D 0%, #FFF089 50%, #FFF9B5 100%);
  --gamebonding-shadow: rgba(255, 107, 107, 0.15);
  --gamebonding-shadow-md: rgba(255, 107, 107, 0.25);
  --gamebonding-shadow-lg: rgba(255, 107, 107, 0.35);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gamebonding-text);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  overflow-x: hidden;
  animation: fadeIn 0.6s ease-in;
}

.gamebonding-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Age Banner */
.gamebonding-age-notice {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  padding: 12px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.5s ease-out;
}

.gamebonding-age-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.gamebonding-age-notice p {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Navigation */
.gamebonding-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gamebonding-gradient-1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: fadeInDown 0.6s ease-out;
}

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

.gamebonding-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.gamebonding-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
}

.gamebonding-brand:hover {
  transform: scale(1.05);
}

.gamebonding-brand-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.3));
  animation: float 3s ease-in-out infinite;
}

.gamebonding-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
}

.gamebonding-menu-item a {
  text-decoration: none;
  color: var(--gamebonding-text);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  overflow: hidden;
}

.gamebonding-menu-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gamebonding-gradient-2);
  transition: left 0.3s ease;
  z-index: -1;
}

.gamebonding-menu-item a:hover::before {
  left: 0;
}

.gamebonding-menu-item a:hover {
  color: var(--gamebonding-lighter);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--gamebonding-shadow);
}

.gamebonding-menu-item a.gamebonding-active-link {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  box-shadow: 0 4px 16px var(--gamebonding-shadow-md);
}

.gamebonding-menu-item a.gamebonding-cta-link {
  background: var(--gamebonding-gradient-3);
  color: var(--gamebonding-dark);
  font-weight: 700;
  padding: 10px 24px;
  box-shadow: 0 4px 16px rgba(255, 230, 109, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.gamebonding-menu-item a.gamebonding-cta-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px rgba(255, 230, 109, 0.5);
  animation: none;
}

/* Mobile Menu Toggle */
.gamebonding-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.gamebonding-mobile-toggle:hover {
  background: var(--gamebonding-light);
  transform: rotate(90deg);
}

.gamebonding-mobile-toggle-line {
  width: 26px;
  height: 3px;
  background: var(--gamebonding-primary);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.gamebonding-mobile-toggle.active .gamebonding-mobile-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.gamebonding-mobile-toggle.active .gamebonding-mobile-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Banner */
.gamebonding-banner {
  background: linear-gradient(135deg, #FFE5E5 0%, #E5F9F6 50%, #FFF9E5 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.gamebonding-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.gamebonding-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.gamebonding-banner-content {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.gamebonding-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gamebonding-primary);
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
  animation: scaleIn 0.6s ease-out 0.2s both;
  border: 2px solid rgba(255, 107, 107, 0.2);
}

.gamebonding-banner h1 {
  font-size: 56px;
  font-weight: 900;
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  text-shadow: 0 2px 20px rgba(255, 107, 107, 0.2);
}

.gamebonding-banner-description {
  font-size: 18px;
  color: var(--gamebonding-text);
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-weight: 500;
}

.gamebonding-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
  animation: fadeInUp 0.8s ease-out 0.5s both, pulse 2s ease-in-out 2s infinite;
  position: relative;
  overflow: hidden;
}

.gamebonding-banner-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.gamebonding-banner-button:hover::before {
  width: 300px;
  height: 300px;
}

.gamebonding-banner-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
  animation: none;
}

/* Section Styles */
.gamebonding-section {
  padding: 90px 0;
  position: relative;
  animation: fadeIn 0.8s ease-out;
}

.gamebonding-section-light {
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.gamebonding-section-dark {
  background: linear-gradient(135deg, var(--gamebonding-darker) 0%, var(--gamebonding-dark) 100%);
  color: var(--gamebonding-lighter);
  position: relative;
  overflow: hidden;
}

.gamebonding-section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.gamebonding-section-gradient {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  position: relative;
  overflow: hidden;
}

.gamebonding-section-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.gamebonding-section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.gamebonding-section-header h2 {
  font-size: 44px;
  font-weight: 800;
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
}

.gamebonding-section-dark .gamebonding-section-header h2,
.gamebonding-section-gradient .gamebonding-section-header h2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamebonding-section-subtitle {
  font-size: 17px;
  color: var(--gamebonding-text-light);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 500;
}

.gamebonding-section-dark .gamebonding-section-subtitle,
.gamebonding-section-gradient .gamebonding-section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid Layouts */
.gamebonding-grid-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  animation: fadeIn 1s ease-out;
}

.gamebonding-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  animation: fadeIn 1s ease-out;
}

.gamebonding-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  animation: fadeIn 1s ease-out;
}

.gamebonding-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  animation: fadeIn 1s ease-out;
}

/* Card Styles */
.gamebonding-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gamebonding-gradient-2);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: scaleIn 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.gamebonding-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gamebonding-feature-card:hover::before {
  opacity: 1;
}

.gamebonding-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(78, 205, 196, 0.25);
  border-color: rgba(78, 205, 196, 0.5);
}

.gamebonding-feature-icon {
  width: 72px;
  height: 72px;
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

.gamebonding-feature-card:hover .gamebonding-feature-icon {
  transform: rotate(360deg) scale(1.1);
  animation: none;
}

.gamebonding-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gamebonding-darker);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.gamebonding-feature-card:hover h3 {
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamebonding-feature-card p {
  font-size: 15px;
  color: var(--gamebonding-text-light);
  line-height: 1.7;
}

/* Stats Section */
.gamebonding-stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  animation: fadeInUp 1s ease-out;
}

.gamebonding-stat-box {
  text-align: center;
  animation: scaleIn 0.6s ease-out;
  transition: transform 0.3s ease;
}

.gamebonding-stat-box:hover {
  transform: scale(1.1);
}

.gamebonding-stat-value {
  display: block;
  font-size: 56px;
  font-weight: 900;
  background: var(--gamebonding-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  animation: pulse 2s ease-in-out infinite;
}

.gamebonding-stat-label {
  display: block;
  font-size: 16px;
  color: var(--gamebonding-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gamebonding-section-dark .gamebonding-stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Game Cards */
.gamebonding-games-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  animation: fadeIn 1s ease-out;
}

.gamebonding-game-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gamebonding-gradient-1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: scaleIn 0.6s ease-out;
  position: relative;
}

.gamebonding-game-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gamebonding-gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gamebonding-game-item:hover::after {
  opacity: 0.05;
}

.gamebonding-game-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
  border-color: rgba(255, 107, 107, 0.5);
}

.gamebonding-game-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gamebonding-gradient-3);
  color: var(--gamebonding-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(255, 230, 109, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.gamebonding-game-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--gamebonding-light);
  height: 240px;
}

.gamebonding-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gamebonding-game-item:hover .gamebonding-game-image {
  transform: scale(1.15) rotate(2deg);
}

.gamebonding-game-details {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.gamebonding-game-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gamebonding-darker);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.gamebonding-game-item:hover .gamebonding-game-details h3 {
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamebonding-game-details p {
  font-size: 14px;
  color: var(--gamebonding-text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

.gamebonding-game-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--gamebonding-text-light);
  font-weight: 600;
}

.gamebonding-game-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.gamebonding-game-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.gamebonding-game-play-btn:hover::before {
  width: 300px;
  height: 300px;
}

.gamebonding-game-play-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Call to Action Box */
.gamebonding-cta-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 60px 50px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border: 3px solid transparent;
  background-image: linear-gradient(white, white), var(--gamebonding-gradient-1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: scaleIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.gamebonding-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.gamebonding-cta-box h2 {
  font-size: 40px;
  font-weight: 800;
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.gamebonding-cta-box p {
  font-size: 17px;
  color: var(--gamebonding-text);
  margin-bottom: 32px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.gamebonding-notice-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-left: 5px solid;
  border-image: var(--gamebonding-gradient-2) 1;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.15);
  position: relative;
  z-index: 1;
  animation: slideInLeft 0.6s ease-out;
}

.gamebonding-notice-box i {
  color: var(--gamebonding-secondary);
  font-size: 24px;
  margin-top: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.gamebonding-notice-text {
  flex: 1;
  font-size: 14px;
  color: var(--gamebonding-text);
  line-height: 1.7;
}

.gamebonding-notice-text strong {
  font-weight: 700;
  color: var(--gamebonding-darker);
}

.gamebonding-button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.gamebonding-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gamebonding-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.gamebonding-btn:hover::before {
  width: 300px;
  height: 300px;
}

.gamebonding-btn-primary {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.gamebonding-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.gamebonding-btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--gamebonding-darker);
  border: 2px solid var(--gamebonding-primary);
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.2);
}

.gamebonding-btn-secondary:hover {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  border-color: transparent;
  transform: translateY(-4px) scale(1.05);
}

.gamebonding-cta-box .gamebonding-btn-primary {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
}

.gamebonding-cta-box .gamebonding-btn-primary:hover {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
}

.gamebonding-cta-box .gamebonding-btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--gamebonding-darker);
  border: 2px solid var(--gamebonding-darker);
}

.gamebonding-cta-box .gamebonding-btn-secondary:hover {
  background: var(--gamebonding-darker);
  color: var(--gamebonding-lighter);
  border-color: var(--gamebonding-darker);
}

/* Page Header */
.gamebonding-page-title {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gamebonding-page-title::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.gamebonding-page-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--gamebonding-lighter);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite, scaleIn 0.6s ease-out;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.gamebonding-page-title h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.gamebonding-page-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-weight: 500;
}

/* Contact Form */
.gamebonding-contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  animation: fadeIn 1s ease-out;
}

.gamebonding-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gamebonding-gradient-2);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: scaleIn 0.6s ease-out;
  transition: transform 0.3s ease;
}

.gamebonding-panel:hover {
  transform: translateY(-4px);
}

.gamebonding-panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.gamebonding-panel > p {
  color: var(--gamebonding-text-light);
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 500;
}

.gamebonding-form-field {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.gamebonding-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gamebonding-darker);
  margin-bottom: 8px;
  font-size: 14px;
}

.gamebonding-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gamebonding-border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  color: var(--gamebonding-text);
  background: rgba(255, 255, 255, 0.9);
}

.gamebonding-form-control:focus {
  outline: none;
  border-color: var(--gamebonding-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
  transform: translateY(-2px);
}

.gamebonding-form-control::placeholder {
  color: var(--gamebonding-text-light);
  opacity: 0.6;
}

textarea.gamebonding-form-control {
  resize: vertical;
  min-height: 140px;
}

.gamebonding-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.gamebonding-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.gamebonding-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.gamebonding-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.gamebonding-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#form-response {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: none;
  animation: scaleIn 0.4s ease-out;
}

#form-response.success {
  display: block;
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #065F46;
  border: 2px solid #10B981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

#form-response.error {
  display: block;
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  color: #991B1B;
  border: 2px solid #EF4444;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}

.gamebonding-info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  animation: slideInRight 0.6s ease-out;
}

.gamebonding-info-icon-box {
  width: 56px;
  height: 56px;
  background: var(--gamebonding-gradient-2);
  color: var(--gamebonding-lighter);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.3);
  animation: float 3s ease-in-out infinite;
}

.gamebonding-info-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gamebonding-darker);
  margin-bottom: 6px;
}

.gamebonding-info-content p {
  font-size: 14px;
  color: var(--gamebonding-text-light);
  margin: 0;
  line-height: 1.7;
}

.gamebonding-info-content a {
  color: var(--gamebonding-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gamebonding-info-content a:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

.gamebonding-info-small {
  font-size: 12px !important;
  color: var(--gamebonding-text-light) !important;
  margin-top: 6px !important;
}

/* Legal Pages */
.gamebonding-legal-text {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gamebonding-gradient-2);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: scaleIn 0.8s ease-out;
}

.gamebonding-legal-text h2 {
  font-size: 32px;
  font-weight: 800;
  background: var(--gamebonding-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 40px;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease-out;
}

.gamebonding-legal-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gamebonding-secondary);
  margin-top: 32px;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s ease-out;
}

.gamebonding-legal-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gamebonding-text);
  margin-bottom: 18px;
  animation: fadeIn 0.6s ease-out;
}

.gamebonding-legal-text ul,
.gamebonding-legal-text ol {
  margin: 18px 0;
  padding-left: 32px;
}

.gamebonding-legal-text li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gamebonding-text);
  margin-bottom: 12px;
  animation: slideInLeft 0.6s ease-out;
}

.gamebonding-legal-text a {
  color: var(--gamebonding-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.gamebonding-legal-text a:hover {
  border-bottom-color: var(--gamebonding-primary);
  transform: translateX(4px);
}

.gamebonding-legal-text strong {
  font-weight: 700;
  color: var(--gamebonding-darker);
}

/* Footer */
.gamebonding-footer {
  background: linear-gradient(135deg, var(--gamebonding-darker) 0%, var(--gamebonding-dark) 100%);
  color: var(--gamebonding-lighter);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.gamebonding-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.gamebonding-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.gamebonding-footer-column h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gamebonding-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease-out;
}

.gamebonding-footer-column p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  animation: fadeIn 0.6s ease-out;
}

.gamebonding-footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.gamebonding-footer-column a:hover {
  color: var(--gamebonding-secondary);
  transform: translateX(4px);
}

.gamebonding-footer-disclaimer {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.gamebonding-footer-disclaimer p {
  margin-bottom: 18px;
  animation: fadeIn 0.6s ease-out;
}

.gamebonding-footer-disclaimer a {
  color: var(--gamebonding-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gamebonding-footer-disclaimer a:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

.gamebonding-footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.gamebonding-footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.gamebonding-footer-bottom a:hover {
  color: var(--gamebonding-secondary);
  transform: translateY(-2px);
}

/* Cookie Consent */
.gamebonding-cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid;
  border-image: var(--gamebonding-gradient-1) 1;
}

.gamebonding-cookie-banner.show {
  bottom: 0;
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
  from {
    bottom: -200px;
  }
  to {
    bottom: 0;
  }
}

.gamebonding-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gamebonding-cookie-message {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  color: var(--gamebonding-text);
  line-height: 1.7;
}

.gamebonding-cookie-message strong {
  font-weight: 700;
  color: var(--gamebonding-darker);
}

.gamebonding-cookie-message a {
  color: var(--gamebonding-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gamebonding-cookie-message a:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

.gamebonding-cookie-accept {
  background: var(--gamebonding-gradient-1);
  color: var(--gamebonding-lighter);
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.gamebonding-cookie-accept::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.gamebonding-cookie-accept:hover::before {
  width: 300px;
  height: 300px;
}

.gamebonding-cookie-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Utility Classes */
.gamebonding-text-center {
  text-align: center;
}

.gamebonding-mb-3 {
  margin-bottom: 24px;
}

.gamebonding-mb-4 {
  margin-bottom: 32px;
}

.gamebonding-mb-5 {
  margin-bottom: 48px;
}

.gamebonding-mt-4 {
  margin-top: 32px;
}

.gamebonding-mt-5 {
  margin-top: 48px;
}

.gamebonding-intro-paragraph {
  font-size: 18px;
  line-height: 1.9;
  color: var(--gamebonding-text);
  max-width: 820px;
  margin: 0 auto 32px;
  font-weight: 500;
}

.gamebonding-section-dark .gamebonding-intro-paragraph {
  color: rgba(255, 255, 255, 0.95);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .gamebonding-mobile-toggle {
    display: flex;
  }

  .gamebonding-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 20px 20px;
  }

  .gamebonding-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .gamebonding-menu-item {
    width: 100%;
  }

  .gamebonding-menu-item a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 4px;
  }

  .gamebonding-banner h1 {
    font-size: 36px;
  }

  .gamebonding-banner-description {
    font-size: 16px;
  }

  .gamebonding-section-header h2 {
    font-size: 32px;
  }

  .gamebonding-page-title h1 {
    font-size: 32px;
  }

  .gamebonding-contact-layout {
    grid-template-columns: 1fr;
  }

  .gamebonding-panel {
    padding: 28px 24px;
  }

  .gamebonding-legal-text {
    padding: 32px 24px;
  }

  .gamebonding-button-group {
    flex-direction: column;
  }

  .gamebonding-btn {
    width: 100%;
    justify-content: center;
  }

  .gamebonding-cookie-inner {
    flex-direction: column;
    gap: 16px;
  }

  .gamebonding-cookie-accept {
    width: 100%;
  }

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

  .gamebonding-stats-row {
    gap: 32px;
  }

  .gamebonding-cta-box {
    padding: 40px 28px;
  }

  .gamebonding-cta-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .gamebonding-container {
    padding: 0 16px;
  }

  .gamebonding-banner {
    padding: 60px 0 50px;
  }

  .gamebonding-banner h1 {
    font-size: 28px;
  }

  .gamebonding-section {
    padding: 50px 0;
  }

  .gamebonding-section-header h2 {
    font-size: 26px;
  }

  .gamebonding-page-title h1 {
    font-size: 26px;
  }

  .gamebonding-panel h2 {
    font-size: 22px;
  }

  .gamebonding-legal-text h2 {
    font-size: 26px;
  }

  .gamebonding-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
