/* CSS Variables */
:root {
  --chicken-orange: #FF8C42;    /* Цвет курицы - primary CTA */
  --coin-gold: #FFD700;         /* Цвет монеток - бонусы */
  --text-yellow: #FFF176;       /* Текст логотипа */
  --chicken-white: #FFF8E1;     /* Тело курицы - светлый фон */
  --bg-dark: #2C2C2C;          /* Темный фон */
  
  /* Дополнительные для функций */
  --sky-blue: #0077BE;          /* Вторичные CTA */
  --success: #4CAF50;           /* Успех */
  --danger: #F44336;            /* Предупреждения */
  
  /* Дополнительные цвета */
  --text-dark: #333;
  --text-light: #666;
  --border-color: #ddd;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--chicken-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--chicken-orange);
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  color: var(--chicken-orange);
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--sky-blue);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Header */
.header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  max-width: unset;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 50px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--chicken-orange);
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--chicken-orange), #FF6B35);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
  animation: chickenJump 3s infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--sky-blue);
  border: 2px solid var(--sky-blue);
}

.btn-secondary:hover {
  background: var(--sky-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-bonus {
  background: linear-gradient(135deg, var(--coin-gold), #FFA500);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: bonusPulse 4s infinite;
}

.btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Button Animations */
@keyframes chickenJump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes bonusPulse {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--chicken-white), white);
  padding: 4rem 0;
  text-align: center;
}

.hero-image {
  margin: 2rem 0;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-height: 400px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Social Proof */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem;
  border-radius: 15px;
  border: 2px solid var(--coin-gold);
  min-width: 150px;
}

.number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--coin-gold);
}

.label {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.highlight {
  color: var(--chicken-orange);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Urgency Elements */
.urgency-cta {
  margin: 2rem 0;
}

.urgency-text {
  color: var(--chicken-orange);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.urgency-heading {
  color: var(--coin-gold);
  text-align: center;
  margin-bottom: 1rem;
}

.urgency-big {
  font-size: 2.5rem;
  color: var(--chicken-orange);
  text-align: center;
  margin-bottom: 1rem;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Sections */
section {
  padding: 3rem 0;
}

section:nth-child(even) {
  background: var(--chicken-white);
}

/* Game Description */
.game-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.game-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.game-screenshot:hover {
  transform: scale(1.05);
}

.how-it-works {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.how-it-works ul {
  list-style: none;
  margin-top: 1rem;
}

.how-it-works li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.how-it-works i {
  color: var(--chicken-orange);
  font-size: 1.2rem;
  min-width: 20px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 3rem;
  color: var(--chicken-orange);
  margin-bottom: 1rem;
}

/* CTA Blocks */
.cta-block {
  text-align: center;
  margin: 2rem 0;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--chicken-orange);
  color: white;
  font-weight: bold;
}

tr:hover {
  background: rgba(255, 140, 66, 0.1);
}

tr.highlighted {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--coin-gold);
}

/* Advantages Section */
.advantages-section {
  background: linear-gradient(135deg, var(--chicken-white), white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.advantage-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  border: 2px solid var(--coin-gold);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--chicken-orange);
}

.advantage-item h3 {
  color: var(--chicken-orange);
  margin-bottom: 1rem;
}

/* Strategies */
.strategy-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.strategy-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.strategy-img:hover {
  transform: scale(1.05);
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.strategy {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.strategy h3 {
  color: var(--chicken-orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strategy ul {
  list-style: none;
  margin-left: 1rem;
}

.strategy li {
  padding: 0.3rem 0;
  position: relative;
}

.strategy li:before {
  content: "🐔";
  position: absolute;
  left: -1.5rem;
}

.pro-tip {
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--coin-gold);
  margin: 2rem 0;
}

/* Mobile Benefits */
.mobile-gameplay {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mobile-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.mobile-screenshot:hover {
  transform: scale(1.05);
}

.mobile-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.benefit i {
  color: var(--chicken-orange);
  font-size: 1.5rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.review {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  border-left: 4px solid var(--chicken-orange);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  color: var(--chicken-orange);
  font-weight: bold;
}

/* Comparison */
.comparison-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--chicken-orange);
  margin: 2rem 0;
}

/* Getting Started */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--chicken-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Trust Section */
.trust-section {
  background: var(--chicken-white);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badge {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
}

.badge-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--chicken-orange);
}

.trust-badge h4 {
  color: var(--chicken-orange);
  margin-bottom: 0.5rem;
}

/* Bonus Offers */
.bonus-content ul {
  list-style: none;
  margin: 1rem 0;
}

.bonus-content li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bonus-content i {
  color: var(--coin-gold);
  font-size: 1.2rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--chicken-orange);
  margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #ffc267, #ffda35);
  color: var(--bg-dark);
  text-align: center;
}

.final-cta h2 {
  color: var(--bg-dark);
}

.final-cta p {
  color: var(--bg-dark);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-cta {
  margin-bottom: 2rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-cta .btn {
  box-shadow: var(--shadow-hover);
  animation: chickenJump 3s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav {
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .header .container {
    gap: 1rem;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .social-proof {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .urgency-big {
    font-size: 1.8rem;
  }
  
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-cta .btn {
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .floating-cta .btn span {
    display: none;
  }
}

@media (max-width: 580px) {
    .nav .btn-secondary {
        display: none;
    } 
}

.why-love-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.why-love-image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  section {
    padding: 2rem 0;
  }
  
  section .btn {
    width: 100%;
    justify-content: center;
  }

  .header .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header .nav {
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
  }

  .header .nav .btn {
    width: 100%;
  }

  .header .nav .btn i {
    display: none;
  }

  .btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .cta-group {
    gap: 1rem;
  }
  
  .cta-group .btn {
    width: 100%;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
a:focus {
  outline: 3px solid var(--chicken-orange);
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.feature:hover,
.strategy:hover,
.review:hover,
.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Decorative Elements */
.feature::before,
.strategy::before,
.review::before {
  content: "🐔";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2rem;
  opacity: 0.1;
  pointer-events: none;
}

.feature,
.strategy,
.review {
  position: relative;
}

/* Enhanced Button Hover Effects */
.btn:hover {
  transform: translateY(-2px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6B35, var(--chicken-orange));
}

.btn-bonus:hover {
  background: linear-gradient(135deg, #FFA500, var(--coin-gold));
}

/* Table Responsiveness */
@media (max-width: 768px) {
  .table-container {
    margin: 1rem -15px;
  }
  
  table {
    font-size: 0.9rem;
  }
  
  th, td {
    padding: 0.5rem;
  }
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
  .mobile-benefits {
    grid-template-columns: 1fr;
  }
  
  .benefit {
    padding: 1.5rem;
  }
  
  .steps-grid {
    gap: 1rem;
  }
  
  .step {
    padding: 1.5rem;
  }
  
  .game-screenshots,
  .strategy-images,
  .mobile-gameplay {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-main-img,
  .game-screenshot,
  .strategy-img,
  .mobile-screenshot {
    max-height: 300px;
  }
}

/* Performance Optimizations */
.btn,
.feature,
.strategy,
.review,
.advantage-item {
  will-change: transform;
  transition: 0.2s ease;
}

/* Print Styles */
@media print {
  .floating-cta,
  .nav {
    display: none;
  }
  
  .btn {
    border: 1px solid #000;
    background: white;
    color: black;
  }
}
