

      :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;
}

/* Pro Tips Section */
.pro-tips-section {
  background: #f9f9f9;
}

/* Secret Codes Section */
.secret-codes-section {
  background: #f9f9f9;
}

/* Top Leaders Section */
.top-leaders-section {
  background: #f9f9f9;
}

/* Seasonal Secrets Section */
.seasonal-secrets-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%;
      }

      .menu-toggle {
        display: none;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .menu-toggle:hover {
        transform: scale(1.2);
      }

      /* Герой-баннер для страницы советов */
      .tips-hero {
        min-height: 60vh;
        background: url("image/banner3.png")
          center/cover no-repeat fixed;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
      }

      .tips-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          rgba(255, 111, 97, 0.8) 0%,
          rgba(40, 167, 69, 0.7) 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;
      }

      /* Секция с советами */
      .tips-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .tip-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        border-left: 5px solid var(--primary);
      }

      .tip-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .tip-card.pro-tip {
        border-left-color: var(--accent);
      }

      .tip-card.secret {
        border-left-color: #9b59b6;
      }

      .tip-card.leader {
        border-left-color: #f1c40f;
      }

      .tip-category {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .pro-tip .tip-category {
        background: var(--accent);
      }

      .secret .tip-category {
        background: #9b59b6;
      }

      .leader .tip-category {
        background: #f1c40f;
        color: var(--dark);
      }

      .tip-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--primary);
      }

      .pro-tip h3 {
        color: var(--accent);
      }

      .secret h3 {
        color: #9b59b6;
      }

      .leader h3 {
        color: #f1c40f;
      }

      .tip-card p {
        margin-bottom: 15px;
      }

      /* Секретные уровни */
      .secret-levels {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .level-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
      }

      .level-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      .level-image {
        height: 200px;
        position: relative;
        overflow: hidden;
      }

      .level-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .level-card:hover .level-image img {
        transform: scale(1.1);
      }

      .level-difficulty {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .level-info {
        padding: 20px;
      }

      .level-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--primary);
      }

      .level-info p {
        margin-bottom: 15px;
      }

      .unlock-requirements {
        background: var(--light);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
      }

      .unlock-requirements h4 {
        font-size: 1rem;
        margin-bottom: 10px;
        color: var(--text);
      }

      .requirements-list {
        list-style-type: none;
      }

      .requirements-list li {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .requirements-list li::before {
        content: "✓";
        color: var(--accent);
        font-weight: bold;
      }

      /* Лидеры */
      .leaderboard {
        width: 100%;
        max-width: 800px;
        margin: 50px auto 0;
        background: white;
        border-radius: 15px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .leaderboard-header {
        display: flex;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        color: white;
        padding: 15px 20px;
        font-weight: 600;
      }

      .leaderboard-header div {
        flex: 1;
        text-align: center;
      }

      .leaderboard-header div:first-child {
        flex: 0.5;
        text-align: left;
      }

      .leaderboard-header div:last-child {
        text-align: right;
      }

      .leaderboard-row {
        display: flex;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        align-items: center;
        transition: var(--transition);
      }

      .leaderboard-row:hover {
        background: rgba(255, 111, 97, 0.1);
      }

      .leaderboard-row div {
        flex: 1;
        text-align: center;
      }

      .leaderboard-row div:first-child {
        flex: 0.5;
        text-align: left;
        font-weight: 600;
        color: var(--primary);
      }

      .leaderboard-row div:last-child {
        text-align: right;
        font-weight: 600;
      }

      .rank {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        margin-right: 15px;
      }

      .rank-1 {
        background: #f1c40f;
      }

      .rank-2 {
        background: #95a5a6;
      }

      .rank-3 {
        background: #cd7f32;
      }

      .rank-other {
        background: var(--primary);
      }

      .player-info {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .player-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-weight: 600;
      }

      /* Футер с волной */
      .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;
      }

     

      /* Анимации */
      @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;
        }
      }

      @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;
        }

        .tips-section,
        .secret-levels {
          grid-template-columns: 1fr;
        }

        .leaderboard-header,
        .leaderboard-row {
          padding: 10px 15px;
          font-size: 0.9rem;
        }

        .rank {
          width: 25px;
          height: 25px;
          font-size: 0.8rem;
          margin-right: 10px;
        }

        .player-avatar {
          width: 30px;
          height: 30px;
          font-size: 0.8rem;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
      }

      @media (max-width: 576px) {
        .hero-content h1 {
          font-size: 2.5rem;
        }

        .leaderboard-header div,
        .leaderboard-row div {
          flex: none;
          width: 25%;
        }

        .leaderboard-header div:first-child,
        .leaderboard-row div:first-child {
          width: 15%;
        }

        .leaderboard-header div:last-child,
        .leaderboard-row div:last-child {
          width: 35%;
        }
      }
 