
      :root {
        --primary: #ff6f61;
        --secondary: #ffb88c;
        --accent: #28a745;
        --light: #fff8f0;
        --dark: #2a2a2a;
        --text: #333333;
        --highlight: #ffd166;
        --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
      }

      body {
        font-family: "Montserrat", sans-serif;
        background: var(--light);
        color: var(--text);
        line-height: 1.7;
        overflow-x: hidden;
      }

      img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
      }

      a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
      }

      button {
        border: none;
        cursor: pointer;
        transition: var(--transition);
        font-family: inherit;
      }

      .content-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
      }

/* General Section Description */
.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Progress Section */
.progress-section {
  background: #f9f9f9;
}

/* Recipe Section */
.recipe-section {
  background: #f9f9f9;
}


.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.brand-logo {
    font-family: 'Bungee', sans-serif;
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
}

.brand-logo:hover::after {
    width: 100%;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--highlight);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.2);
}
      /* Герой-баннер для страницы Gameplay */
      .gameplay-hero {
        min-height: 80vh;
        background: url("image/banner2.jpeg")
          center/cover no-repeat fixed;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        padding-top: 85px;
      }

      .gameplay-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          rgba(255, 111, 97, 0.4) 0%,
          rgba(40, 167, 69, 0.2) 100%
        );
      }

      .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 0 20px;
      }

      .hero-content h1 {
        font-family: "Bungee", sans-serif;
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 20px;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 1s ease both;
      }

      .hero-content p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        max-width: 700px;
        margin: 0 auto 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 1s ease 0.2s both;
      }

      /* Кнопка с эффектом пульсации */
      .action-btn {
        background: var(--accent);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        display: inline-block;
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        position: relative;
        overflow: hidden;
      }

      .action-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          rgba(255, 255, 255, 0.3),
          rgba(255, 255, 255, 0)
        );
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
      }

      .action-btn:hover::before {
        opacity: 1;
      }

      .action-btn:active {
        transform: translateY(1px);
      }

      /* Анимация пульсации */
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      .pulse {
        animation: pulse 2s infinite;
      }

      /* Секции с плавным появлением */
      .content-section {
        padding: 100px 0;
        background: white;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .content-section.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .content-section h2 {
        font-family: "Bungee", sans-serif;
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--primary);
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
      }

      .content-section h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 2px;
      }

      /* Gameplay Features */
      .gameplay-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 50px;
      }

      .feature-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transition: height 0.3s ease;
        z-index: -1;
      }

      .feature-card:hover {
        transform: translateY(-10px);
      }

      .feature-card:hover::before {
        height: 100%;
      }

      .feature-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
        transition: var(--transition);
      }

      .feature-card:hover .feature-icon {
        color: white;
      }

      .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        transition: var(--transition);
      }

      .feature-card:hover h3 {
        color: white;
      }

      .feature-card p {
        transition: var(--transition);
      }

      .feature-card:hover p {
        color: white;
      }

      /* Progress Steps */
      .progress-steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
        max-width: 800px;
        margin: 0 auto;
      }

      .progress-steps::before {
        content: "";
        position: absolute;
        top: 0;
        left: 30px;
        height: 100%;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary), var(--accent));
        z-index: 1;
      }

      .step {
        display: flex;
        gap: 20px;
        position: relative;
        z-index: 2;
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: white;
        border: 4px solid var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Bungee", sans-serif;
        font-size: 1.5rem;
        color: var(--primary);
        flex-shrink: 0;
        transition: var(--transition);
      }

      .step:hover .step-number {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
      }

      .step-content {
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: var(--shadow);
        flex-grow: 1;
        transform: translateY(20px);
        opacity: 0;
        transition: var(--transition);
      }

      .step.active .step-content {
        transform: translateY(0);
        opacity: 1;
      }

      .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--primary);
      }

      /* Chicken Types */
      .chicken-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .chicken-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
      }

      .chicken-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .chicken-image {
        width: 100%;
        height: 300px;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }

      .chicken-image img {
        height: 100%;
        width: auto;
        transition: transform 0.5s ease;
      }

      .chicken-card:hover .chicken-image img {
        transform: scale(1.1);
      }

      .chicken-info {
        padding: 20px;
      }

      .chicken-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--primary);
      }

      .chicken-stats {
        display: flex;
        gap: 15px;
        margin-top: 15px;
      }

      .stat {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
      }

      .stat i {
        color: var(--accent);
      }

      /* Recipe Cards */
      .recipe-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .recipe-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
      }

      .recipe-card:hover {
        transform: translateY(-10px);
      }

      .recipe-image {
        height: 200px;
        position: relative;
        overflow: hidden;
      }

      .recipe-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .recipe-card:hover .recipe-image img {
        transform: scale(1.1);
      }

      .recipe-difficulty {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .recipe-difficulty.easy {
        color: var(--accent);
      }

      .recipe-difficulty.medium {
        color: orange;
      }

      .recipe-difficulty.hard {
        color: var(--primary);
      }

      .recipe-info {
        padding: 20px;
      }

      .recipe-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--primary);
      }

      .recipe-ingredients {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
      }

      .ingredient {
        background: var(--light);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .ingredient i {
        color: var(--accent);
      }

      /* Game Modes */
      .game-modes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .mode-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .mode-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.5)), url('image/banner4.png') center/cover no-repeat;
        transition: height 0.3s ease;
      }

      .mode-card:hover {
        transform: translateY(-10px);
      }

      .mode-card:hover::before {
        height: 100%;
      }

      .mode-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
        transition: var(--transition);
      }

      .mode-card:hover .mode-icon {
        color: white;
      }

      .mode-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        transition: var(--transition);
      }

      .mode-card:hover h3 {
        color: white;
      }

      .mode-card p {
        transition: var(--transition);
      }

      .mode-card:hover p {
        color: white;
      }

      /* Футер с волной */
      .bottom-bar {
        background: var(--dark);
        color: white;
        position: relative;
        overflow: hidden;
        padding-top: 100px;
      }

      .bottom-bar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
        background-size: cover;
        background-repeat: no-repeat;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        padding: 40px 0;
      }

      .footer-contact h3,
      .footer-links h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--secondary);
        position: relative;
        display: inline-block;
      }

      .footer-contact h3::after,
      .footer-links h3::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary);
      }

      .footer-contact p,
      .footer-links p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .footer-contact a,
      .footer-links a {
        color: white;
        transition: color 0.3s ease;
      }

      .footer-contact a:hover,
      .footer-links a:hover {
        color: var(--secondary);
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .social-links a:hover {
        background: var(--secondary);
        transform: translateY(-5px);
      }

      /* Анимации */
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-15px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      .floating {
        animation: float 4s ease-in-out infinite;
      }

      /* Элементы дизайна */
      .chicken-float {
        position: absolute;
        width: 100px;
        z-index: 1;
        opacity: 0.8;
      }

      .chicken-float:nth-child(1) {
        top: 20%;
        left: 5%;
        animation: float 6s ease-in-out infinite;
      }

      .chicken-float:nth-child(2) {
        top: 60%;
        right: 10%;
        animation: float 5s ease-in-out infinite 1s;
      }

      .chicken-float:nth-child(3) {
        bottom: 10%;
        left: 15%;
        animation: float 7s ease-in-out infinite 0.5s;
      }

      /* Кнопка "наверх" */
      .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
      }

      .scroll-top.active {
        opacity: 1;
        visibility: visible;
      }

      .scroll-top:hover {
        background: var(--accent);
        transform: translateY(-5px);
      }

      /* Адаптивность */
      @media (max-width: 992px) {
        .content-wrapper {
          padding: 0 20px;
        }

        .progress-steps {
          max-width: 600px;
        }
      }

      @media (max-width: 768px) {
        .nav-menu ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-menu ul.active {
        display: flex;
        transform: translateX(0);
    }

    .menu-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        display: block;
        z-index: 1000;
    }


        .content-section {
          padding: 60px 0;
        }

        .progress-steps::before {
          left: 25px;
        }

        .step-number {
          width: 50px;
          height: 50px;
          font-size: 1.2rem;
        }

        .gameplay-features,
        .chicken-types,
        .recipe-cards,
        .game-modes {
          grid-template-columns: 1fr;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
      }

      @media (max-width: 576px) {
        .hero-content h1 {
          font-size: 2.5rem;
        }

        .step {
          flex-direction: column;
          align-items: flex-start;
        }

        .step-content {
          margin-left: 70px;
          margin-top: -40px;
        }
      }
   