/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Baloo+2:wght@500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --tomato-red: #FF6B6B;
  --tomato-dark: #E84545;
  --tomato-deep: #C62828;
  --leaf-green: #66BB6A;
  --leaf-dark: #43A047;
  --cream: #FFF8F0;
  --peach: #FFE5D9;
  --warm-orange: #FF9A76;
  --soft-pink: #FFD1DC;
  --golden: #FFD93D;
  --sky-blue: #74C0FC;
  --text-dark: #3D2C2C;
  --text-medium: #6B5353;
  --text-light: #9B8585;
  --white: #FFFFFF;
  --bg-gradient: linear-gradient(135deg, #FFF8F0 0%, #FFE5D9 50%, #FFD1DC 100%);
  --card-shadow: 0 8px 32px rgba(255, 107, 107, 0.15);
  --card-hover-shadow: 0 16px 48px rgba(255, 107, 107, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.3;
}

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

/* ===== Floating Tomatoes Background ===== */
.floating-tomatoes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-tomato {
  position: absolute;
  font-size: 24px;
  opacity: 0.12;
  animation: floatTomato 20s infinite ease-in-out;
}

.floating-tomato:nth-child(1) { left: 5%; animation-delay: 0s; font-size: 30px; }
.floating-tomato:nth-child(2) { left: 15%; animation-delay: 3s; font-size: 20px; }
.floating-tomato:nth-child(3) { left: 25%; animation-delay: 6s; font-size: 28px; }
.floating-tomato:nth-child(4) { left: 40%; animation-delay: 2s; font-size: 18px; }
.floating-tomato:nth-child(5) { left: 55%; animation-delay: 8s; font-size: 32px; }
.floating-tomato:nth-child(6) { left: 65%; animation-delay: 4s; font-size: 22px; }
.floating-tomato:nth-child(7) { left: 78%; animation-delay: 7s; font-size: 26px; }
.floating-tomato:nth-child(8) { left: 88%; animation-delay: 1s; font-size: 20px; }
.floating-tomato:nth-child(9) { left: 35%; animation-delay: 10s; font-size: 16px; }
.floating-tomato:nth-child(10) { left: 92%; animation-delay: 5s; font-size: 24px; }

@keyframes floatTomato {
  0%, 100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.12;
  }
  90% {
    opacity: 0.12;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(255, 107, 107, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tomato-dark);
  z-index: 1001;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: var(--transition);
}

.nav-logo:hover img {
  transform: rotate(20deg) scale(1.1);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--tomato-dark), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-medium);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--tomato-dark);
  background: rgba(255, 107, 107, 0.1);
}

.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  color: var(--white);
  padding: 10px 28px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
  background: linear-gradient(135deg, var(--tomato-dark), var(--tomato-red));
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--tomato-dark);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 107, 107, 0.08);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 107, 107, 0.12);
  z-index: 1001;
  margin-left: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: none;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--tomato-dark);
  background: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
  background: var(--white);
  color: var(--tomato-dark);
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-label {
  letter-spacing: 0.5px;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tomato-dark);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--leaf-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 154, 118, 0.2));
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 107, 0.3);
  color: var(--tomato-dark);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-mascot-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-mascot-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 209, 220, 0.3));
  border-radius: 50%;
  animation: breathe 4s infinite ease-in-out;
}

.hero-mascot-bg::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 154, 118, 0.08));
  border-radius: 50%;
  animation: breathe 4s infinite ease-in-out 0.5s;
}

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

.hero-mascot-img {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 320px;
  margin: 50px auto;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(255, 107, 107, 0.3));
  animation: float 6s infinite ease-in-out;
}

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

/* Floating elements around mascot */
.hero-float-item {
  position: absolute;
  z-index: 2;
  font-size: 2rem;
  animation: floatItem 5s infinite ease-in-out;
}

.hero-float-item:nth-child(3) {
  top: 30px;
  right: 40px;
  animation-delay: 0s;
}

.hero-float-item:nth-child(4) {
  bottom: 60px;
  left: 20px;
  animation-delay: 1.5s;
}

.hero-float-item:nth-child(5) {
  top: 60%;
  right: 15px;
  animation-delay: 3s;
}

.hero-float-item:nth-child(6) {
  top: 20px;
  left: 50px;
  animation-delay: 2s;
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(5deg); }
  75% { transform: translateY(8px) rotate(-5deg); }
}

/* ===== Section common ===== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tomato-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== About Section ===== */
.about {
  background: var(--white);
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 209, 220, 0.1));
  border: 1px solid rgba(255, 107, 107, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.stat-number {
  font-family: 'Baloo 2', cursive;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 600;
  margin-top: 4px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 154, 118, 0.08));
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tomato-dark);
  border: 1px solid rgba(255, 107, 107, 0.15);
}

/* ===== Games Section ===== */
.games {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

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

.game-card-image .game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.game-card-image .game-placeholder:nth-of-type(1) {
  background: linear-gradient(135deg, #FF6B6B, #FFE66D);
}

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.badge-new {
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
}

.badge-popular {
  background: linear-gradient(135deg, var(--golden), #FF9800);
}

.badge-coming {
  background: linear-gradient(135deg, var(--sky-blue), #5C6BC0);
}

.game-card-body {
  padding: 24px;
}

.game-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.game-card-body p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.game-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.game-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Leadership Section ===== */
.leadership {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.8), rgba(255, 229, 217, 0.4));
  border: 1px solid rgba(255, 107, 107, 0.1);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
  border-color: rgba(255, 107, 107, 0.3);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 107, 107, 0.3);
  animation: rotateBorder 15s linear infinite;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.team-card .team-role {
  font-size: 0.9rem;
  color: var(--tomato-red);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card .team-bio {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

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

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--card-shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  border-radius: 14px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: 'Quicksand', sans-serif;
}

.contact-item-text p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 107, 107, 0.15);
  border-radius: 14px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(255, 248, 240, 0.5);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--tomato-red);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-logo span {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--tomato-red);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--tomato-red);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--tomato-red);
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--tomato-red), var(--warm-orange));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-mascot-wrapper {
    width: 350px;
    height: 350px;
  }
  
  .hero-mascot-bg {
    width: 300px;
    height: 300px;
  }
  
  .hero-mascot-img {
    width: 260px;
    height: 260px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    margin-right: 8px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 12px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero p {
    margin: 0 auto 36px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-mascot-wrapper {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  
  .hero-mascot-bg {
    width: 240px;
    height: 240px;
  }
  
  .hero-mascot-img {
    width: 200px;
    height: 200px;
    margin: 40px auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .about {
    border-radius: 40px 40px 0 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Custom cursor tomato ===== */
.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
