

/* Gameplay Hero Section */
.gameplay-hero {
  min-height: 100vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.gameplay-hero .container {
 display: flex;
  align-items: center;
  justify-content: space-between
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.animated-farm {
  position: absolute;
  width: 100%;
  height: 100%;
}

.farm-element {
  position: absolute;
  font-size: 2rem;
  animation: farmFloat 8s ease-in-out infinite;
}

.farm-element.chicken {
  animation-delay: var(--delay);
}

.farm-element.egg {
  animation-delay: var(--delay);
  font-size: 1.5rem;
}

.farm-element.duck {
  animation-delay: var(--delay);
}

.farm-element:nth-child(1) {
  top: 20%;
  left: 10%;
}

.farm-element:nth-child(2) {
  top: 40%;
  right: 20%;
}

.farm-element:nth-child(3) {
  bottom: 30%;
  left: 15%;
}

.farm-element:nth-child(4) {
  top: 60%;
  right: 10%;
}

.farm-element:nth-child(5) {
  bottom: 20%;
  right: 30%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
 
  align-items: center;
}

.hero-content {
  color: var(--white);
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: slideInLeft 1s ease-out 0.6s both;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-orange);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-orange);
  transform: translateY(-3px);
}

.hero-demo {
  animation: slideInRight 1s ease-out 0.8s both;
}

.demo-screen {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-large);
  position: relative;
  overflow: hidden;
}

.demo-farm {
  text-align: center;
}

.demo-chicken {
  font-size: 4rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.demo-chicken:hover {
  transform: scale(1.1);
  animation: bounce 0.5s ease;
}

.demo-eggs {
  min-height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.demo-egg {
  font-size: 1.5rem;
  animation: eggPop 0.5s ease;
}

.demo-counter {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.demo-collect {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.demo-collect:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Core Mechanics Section */
.core-mechanics {
  background: var(--white);
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mechanic-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary-orange);
}

.mechanic-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mechanic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.mechanic-card:hover::before {
  left: 100%;
}

.mechanic-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: pulse 3s infinite;
}

.mechanic-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.mechanic-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mechanic-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.mechanic-demo {
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.mechanic-demo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Game Modes Section */
.game-modes {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e8 100%);
}

.modes-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.mode-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.mode-tab {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mode-tab.active,
.mode-tab:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.mode-content {
  position: relative;
  min-height: 400px;
}

.mode-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mode-panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.mode-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.story-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-level {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.story-level.completed {
  background: var(--gradient-success);
  color: var(--white);
}

.story-level.current {
  background: var(--gradient-primary);
  color: var(--white);
  animation: pulse 2s infinite;
}

.story-level.locked {
  background: var(--bg-light);
  color: var(--text-muted);
  opacity: 0.6;
}

.story-level i {
  font-size: 1.5rem;
}

.endless-stats {
  text-align: center;
}

.endless-counter {
  margin-bottom: 2rem;
}

.counter-value {
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-orange);
  display: block;
}

.counter-label {
  font-size: 1.1rem;
  color: var(--text-light);
}

.endless-achievements {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.achievement {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
}

.challenge-calendar {
  text-align: center;
}

.calendar-header {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.calendar-day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day.completed {
  background: var(--gradient-success);
  color: var(--white);
}

.calendar-day.current {
  background: var(--gradient-primary);
  color: var(--white);
  animation: pulse 2s infinite;
}

.calendar-day.special {
  background: var(--gradient-accent);
  color: var(--white);
}

.calendar-day:hover {
  transform: scale(1.1);
}

.current-challenge {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 15px;
}

.challenge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.challenge-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.challenge-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.multiplayer-lobby {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.player-card {
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 15px;
  flex: 1;
}

.player-avatar {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.player-name {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.player-level {
  color: var(--text-light);
  font-size: 0.9rem;
}

.vs-indicator {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
  margin: 0 1rem;
}

.multiplayer-modes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mp-mode {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.8rem;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mp-mode:hover {
  transform: translateX(5px);
}

.mode-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.mode-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.mode-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.mode-progress {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.mode-stats,
.multiplayer-stats {
  display: flex;
  gap: 2rem;
}

.stat-item,
.mp-stat {
  text-align: center;
}

.stat-number,
.mp-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
 
}

.stat-text,
.mp-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.challenge-rewards {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.reward {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Progression System Section */
.progression-system {
  background: var(--white);
}

.progression-overview {
  margin-bottom: 4rem;
}

.progression-path {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.path-stage {
  text-align: center;
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 120px;
}

.path-stage.completed {
  background: var(--gradient-success);
  color: var(--white);
}

.path-stage.current {
  background: var(--gradient-primary);
  color: var(--white);
  animation: pulse 3s infinite;
  transform: scale(1.05);
}

.path-stage:not(.completed):not(.current) {
  background: var(--bg-light);
  color: var(--text-muted);
}

.stage-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stage-title {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.stage-level {
  font-size: 0.9rem;
  opacity: 0.8;
}

.path-connector {
  width: 40px;
  height: 4px;
  background: var(--bg-light);
  border-radius: 2px;
  position: relative;
}

.path-connector.completed {
  background: var(--primary-green);
}

.path-connector.current {
  background: linear-gradient(90deg, var(--primary-green) 50%, var(--bg-light) 50%);
}

.current-progress {
  max-width: 600px;
  margin: 0 auto;
}

.progress-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.progress-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.xp-bar {
  position: relative;
  width: 100%;
  height: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.xp-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.xp-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--text-dark);
}

.progress-rewards h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.reward-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--bg-light);
  border-radius: 15px;
}

.reward-item i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.progression-systems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.system-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.system-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.system-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.system-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.system-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.system-preview {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 1.5rem;
}

.upgrade-tree {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upgrade-node {
  text-align: center;
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  margin: 0 0.5rem;
}

.upgrade-node.unlocked {
  background: var(--gradient-success);
 
}

.upgrade-node.current {
  background: var(--gradient-primary);
  color: var(--white);
  animation: pulse 2s infinite;
}

.upgrade-node.locked {
  background: var(--text-muted);
  color: var(--white);
  opacity: 0.5;
}

.upgrade-node i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.upgrade-node span {
  font-size: 0.8rem;
  font-weight: bold;
}

.achievement-showcase {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.achievement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.h60 {
  height: 60%;
}

.h45 {
  height: 45%;
}

.h70 {
  height: 70%;
}

.h55 {
  height: 55%;
}

.h85 {
  height: 85%;
}

.h100 {
  height: 100%;
}

.h95 {
  height: 95%;
}

.achievement.progress {
  background: var(--gradient-secondary);
  color: var(--white);
}

.achievement i {
  margin-right: 0.5rem;
}

.achievement-progress {
  font-size: 0.8rem;
  font-weight: bold;
}

.prestige-info {
  text-align: center;
}

.prestige-level {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
}

.prestige-star {
  font-size: 1.5rem;
}

.prestige-bonus {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prestige-bonus span {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Social Features Section */
.social-features {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e3f2fd 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.social-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-header i {
  font-size: 1.5rem;
}

.social-header h3 {
  font-size: 1.3rem;
  margin: 0;
}

.social-content {
  padding: 2rem;
}

.friends-list {
  margin-bottom: 2rem;
}

.friend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.friend-item:hover {
  background: var(--bg-light);
}

.friend-item.online {
  border-left: 4px solid var(--primary-green);
}

.friend-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.friend-info {
  flex: 1;
}

.friend-name {
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.friend-status {
  color: var(--text-light);
  font-size: 0.9rem;
}

.friend-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  width: 35px;
  height: 35px;
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  transform: scale(1.1);
}

.social-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.guild-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 15px;
}

.guild-logo {
  font-size: 3rem;
}

.guild-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.guild-level,
.guild-members {
  color: var(--text-light);
  font-size: 0.9rem;
}

.guild-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.benefit i {
  color: var(--primary-orange);
}

.trading-interface {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 1.5rem;
}

.trade-offers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trade-offer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.offer-item,
.offer-want {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.offer-arrow {
  color: var(--primary-orange);
  font-weight: bold;
}

.trade-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trade-btn:hover {
  transform: translateY(-2px);
}

.leaderboard-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lb-tab {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.lb-tab.active,
.lb-tab:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-orange);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lb-entry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.lb-entry:hover {
  background: var(--bg-light);
}

.lb-entry.highlight {
  background: var(--gradient-secondary);
  color: var(--white);
}

.lb-rank {
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 30px;
}

.lb-player {
  flex: 1;
  font-weight: bold;
}

.lb-score {
  font-weight: bold;
  color: var(--primary-orange);
}

.lb-entry.highlight .lb-score {
  color: var(--white);
}

/* Tips & Strategies Section */
.tips-strategies {
  background: var(--white);
}

.tips-container {
  max-width: 1000px;
  margin: 0 auto;
}

.tips-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tip-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tip-category.active,
.tip-category:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.tips-content {
  position: relative;
  min-height: 500px;
}

.tip-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.tip-panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-orange);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tip-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.tip-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.tip-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tip-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: var(--primary-yellow);
}

.economy-guide,
.automation-guide {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2rem;
}

.guide-section {
  margin-bottom: 2rem;
}

.guide-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.price-chart {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 100px;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.chart-bar {
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 0.8rem;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.chart-bar:hover {
  transform: scale(1.05);
}

.investment-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.investment-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.priority {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.item {
  flex: 1;
  font-weight: bold;
  color: var(--text-dark);
}

.roi {
  color: var(--primary-green);
  font-weight: bold;
}

.automation-tier {
  margin-bottom: 2rem;
}

.automation-tier h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.automation-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auto-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.auto-item i {
  color: var(--primary-orange);
  font-size: 1.5rem;
}

.auto-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}
.w60 {
  width: 60%;
}
.w65 {
  width: 65%;
}


/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  animation: pulse 3s infinite;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--primary-orange);
}

.cta-buttons .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-orange);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes farmFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes eggPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
 

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mechanics-grid,
  .progression-systems,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .mode-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .progression-path {
    flex-direction: column;
  }

  .path-connector {
    width: 4px;
    height: 40px;
  }

  .tips-categories {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .mode-selector {
    flex-direction: column;
    align-items: center;
  }

  .demo-chicken-grid {
    grid-template-columns: 1fr;
  }
  .gameplay-hero .container {
    flex-direction: column;
    gap: 2rem;
  }
  .mechanics-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .xp-bar {
    height: 50px;
    width: 100%;
  }
  .container {
    padding: 0 0.5rem;
  }
  .system-card {
    width: 100%;
    padding: 0 0;
  }
  .mechanic-card {
   width: 100%;
  }
  .mechanic-icon {
    margin-bottom: 1rem;
  }
  .mechanic-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .mode-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .multiplayer-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .gameplay-hero {
    padding: 6rem 1rem 2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mechanic-stats,
  .mode-stats,
  .multiplayer-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .friend-item {
    flex-direction: column;
    text-align: center;
  }

  .friend-actions {
    justify-content: center;
  }

  .trade-offer {
    flex-direction: column;
    text-align: center;
  }

  .offer-arrow {
    transform: rotate(90deg);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}
