

      /* Base styles */

      * {

        margin: 0;

        padding: 0;

        box-sizing: border-box;

        font-family: 'Roboto', sans-serif;

      }



      /* 🧹 СТИЛИ ШАПКИ УДАЛЕНЫ - теперь работают только из header.js */












































        display: inline-block;

        border: none !important;

        box-shadow: none !important;

        font-size: 0.85rem;

        line-height: 1.5;

        white-space: nowrap;

      }



      /* 🗑️ СТИЛИ НАВИГАЦИИ УДАЛЕНЫ - создаются вручную */

        box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3) !important;

        transition: all 0.3s ease !important;

      }



      /* Mobile responsiveness */

      /* 🗑️ МОБИЛЬНЫЕ СТИЛИ НАВИГАЦИИ УДАЛЕНЫ - создаются вручную */



      /* Styles for sections without cards */

      .section-nocards {

        background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);

        border-radius: 40px;

        padding: 5rem 3rem;

        margin: 4rem auto;

        max-width: 1400px;

        box-shadow: 0 30px 60px rgba(0,0,0,0.15);

        position: relative;

        overflow: hidden;

      }



      .section-nocards::before {

        content: "";

        position: absolute;

        top: 0;

        left: 0;

        right: 0;

        height: 8px;

        background: linear-gradient(90deg, #FF6B6B, #4ECDC4);

      }



      .section-nocards h2 {

        font-size: 3rem;

        font-weight: 900;

        text-align: center;

        margin-bottom: 3rem;

        background: linear-gradient(45deg, #2C3E50, #3498DB);

        -webkit-background-clip: text;

        -webkit-text-fill-color: transparent;

        text-transform: uppercase;

        letter-spacing: 3px;

        font-family: "Montserrat", sans-serif;

        text-shadow: 3px 3px 6px rgba(0,0,0,0.2);

      }



      .section-nocards p {

        font-size: 1.8rem;

        text-align: center;

        margin-bottom: 5rem;

        color: #34495E;

        font-family: "Playfair Display", serif;

        font-style: italic;

        line-height: 1.8;

        max-width: 800px;

        margin: 0 auto 5rem;

        padding: 0 1.5rem;

      }



      /* Styles for blocks in sections without cards */

      .section-nocards .service-block {

        background: rgba(255, 255, 255, 0.95);

        border-radius: 30px;

        padding: 4rem;

        box-shadow: 0 15px 45px rgba(0,0,0,0.08);

        border: 2px solid rgba(0,0,0,0.08);

        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

        transform: translateY(0);

        margin-bottom: 4rem;

      }



      .section-nocards .service-block:hover {

        transform: translateY(-20px);

        box-shadow: 0 30px 60px rgba(0,0,0,0.15);

        border-color: #4ECDC4;

        border-width: 3px;

      }



      .section-nocards .service-block h3 {

        font-size: 2.8rem;

        font-weight: 800;

        margin-bottom: 2.5rem;

        color: #2C3E50;

        font-family: "Montserrat", sans-serif;

        border-bottom: 4px solid #4ECDC4;

        padding-bottom: 1.5rem;

      }



      .section-nocards .service-block p {

        font-size: 1.5rem;

        line-height: 2;

        color: #34495E;

        font-family: "Playfair Display", serif;

        white-space: pre-wrap;

        text-align: left;

        margin: 0;

      }



      /* Styles for sections without cards with images */

      .section-nocards.with-image {

        display: flex;

        flex-direction: row;

        align-items: flex-start;

        gap: 4rem;

      }



      .section-nocards.with-image .content {

        flex: 1;

      }



      .section-nocards.with-image .image-container {

        flex: 0 0 40%;

        position: relative;

        border-radius: 20px;

        overflow: hidden;

        box-shadow: 0 20px 40px rgba(0,0,0,0.15);

        transition: all 0.4s ease;

      }



      .section-nocards.with-image .image-container:hover {

        transform: translateY(-10px);

        box-shadow: 0 30px 60px rgba(0,0,0,0.2);

      }



      .section-nocards.with-image .image-container img {

        width: 100%;

        height: auto;

        display: block;

        transition: transform 0.4s ease;

      }



      .section-nocards.with-image .image-container:hover img {

        transform: scale(1.05);

      }



      /* Animations */

      @keyframes fadeInUp {

        from {

          opacity: 0;

          transform: translateY(20px);

        }

        to {

          opacity: 1;

          transform: translateY(0);

        }

      }



      .section-nocards .service-block {

        animation: fadeInUp 0.7s ease-out forwards;

      }



      /* Responsiveness */

      @media (max-width: 768px) {

        .section-nocards {

          padding: 3rem 1.5rem;

          margin: 2rem auto;

          border-radius: 20px;

        }



        .section-nocards h2 {

          font-size: 2rem;

          margin-bottom: 2rem;

        }



        .section-nocards p {

          font-size: 1.2rem;

          margin-bottom: 3rem;

        }



        .section-nocards .service-block {

          padding: 2rem;

          margin-bottom: 2rem;

        }



        .section-nocards .service-block h3 {

          font-size: 1.8rem;

          margin-bottom: 1.5rem;

        }



        .section-nocards .service-block p {

          font-size: 1.1rem;

          line-height: 1.6;

        }



        .section-nocards.with-image {

          flex-direction: column;

        }



        .section-nocards.with-image .image-container {

          flex: 0 0 100%;

          margin-bottom: 2rem;

        }

      }



      /* Old header styles removed - now using header.js */



      body {

        line-height: 1.6;

        color: #333;

        min-height: 100vh;

        display: flex;

        flex-direction: column;

        overflow-x: hidden;

        margin: 0;

        padding: 0;

        width: 100%;
        
        background: linear-gradient(135deg, 
          #0a1929 0%, 
          #112240 20%, 
          #0f3460 40%, 
          #16213e 60%, 
          #1a0d2e 80%, 
          #0a1929 100%);

      }



      /* Стили для активных ссылок навигации */
      .nav-link.active {
        background: #555555 !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
      }

      

      /* Styles for image gallery */

      .section-gallery {

        position: relative;

        overflow: hidden;

        border-radius: 12px;

        box-shadow: 0 4px 12px rgba(0,0,0,0.15);

      }

      

      .gallery-img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        transition: opacity 0.5s ease;

      }

      

      .gallery-dot {

        cursor: pointer;

        transition: background-color 0.3s ease;

      }

      

      /* Styles for images inside sections with text wrapping */

      section p + .section-gallery,

      section h2 + .section-gallery {

        margin-top: 1rem;

        margin-bottom: 1rem;

      }



      /* Styles for section borders */

      section {

        position: relative;

        padding: 6rem 0;

        margin: 2rem 0;

        overflow: hidden;

      }



      section:first-child {

        margin-top: 0;

      }



      section:last-child {

        margin-bottom: 0;

      }








      /* Отступ для основного контента под новую шапку */
      main {
        margin-top: 60px;
      }



      /* Responsive Design for Hero Section */
      
      /* Large Desktop (1200px+) */
      @media (min-width: 1200px) {
        .hero-title {
          font-size: 4.5rem;
        }
        
        .hero-subtitle {
          font-size: 2rem;
        }
      }
      
      /* Desktop (992px - 1199px) */
      @media (max-width: 1199px) and (min-width: 992px) {
        .hero-title {
          font-size: 3.8rem;
        }
        
        .hero-subtitle {
          font-size: 1.6rem;
        }
      }
      
      /* Tablet (768px - 991px) */
      @media (max-width: 991px) and (min-width: 768px) {
        .hero-title {
          font-size: 3.2rem;
        }
        
        .hero-subtitle {
          font-size: 1.4rem;
        }
        
        .hero-content {
          padding: 1.5rem;
        }
      }



      @keyframes zoomIn {

        0% {

          transform: scale(1);

        }

        100% {

          transform: scale(1.1);

        }

      }






      .section {

        padding: 6rem 1rem;

        width: 100%;

        box-sizing: border-box;

        position: relative;

        overflow: hidden;

        background-color: var(--section-background-color, transparent);

        z-index: 1;

      }



      .section[data-show-background="false"] {

        background-color: transparent !important;

        background-image: none !important;

      }



      .section[data-show-background="false"] .section-background-blur,

      .section[data-show-background="false"] .section-overlay {

        display: none !important;

      }



      .section-background-blur {

        position: absolute;

        top: 0;

        left: 0;

        right: 0;

        bottom: 0;

        background-size: cover;

        background-position: center;

        z-index: 0;

        animation: zoomIn 20s ease-in-out infinite alternate;

      }



      .section-container {

        position: relative;

        z-index: 2;

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .section-header {

        text-align: center;

        margin-bottom: 3rem;

      }

      .section-header h2 {

        font-size: 2.5rem;

        margin-bottom: 1rem;

        position: relative;

      }



      .section-header h2::after {

        content: '';

        position: absolute;

        bottom: -10px;

        left: 50%;

        transform: translateX(-50%);

        width: 50px;

        height: 3px;

        background-color: #1976d2;

        transition: width 0.3s ease-in-out;

      }



      .section-header h2:hover::after {

        width: 100px;

      }



      .section-header p {

        font-size: 1.2rem;

        max-width: 800px;

        margin: 0 auto;

        line-height: 1.6;

      }



      .about-section {

        display: flex;

        align-items: flex-start;

        gap: 2rem;

        padding: 2rem;

        position: relative;

        border-radius: 16px;

        background: linear-gradient(145deg, #ffffff, #f5f5f5);

        box-shadow: 0 4px 20px rgba(0,0,0,0.1);

      }





      .about-content {

        flex: 1;

        display: flex;

        flex-direction: column;

        gap: 1rem;

        padding-left: 1rem;

        text-align: left;

        position: relative;

      }



      .about-content::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        bottom: 0;

        width: 4px;

        background: linear-gradient(to bottom, #1976d2, #42a5f5);

        border-radius: 2px;

      }



      .about-content h2 {

        font-size: 2.5rem;

        font-weight: 700;

        margin-bottom: 1rem;

        text-align: left;

        position: relative;

      }



      .about-content h2::after {

        content: "";

        position: absolute;

        bottom: -8px;

        left: 0;

        width: 60px;

        height: 4px;

        background: linear-gradient(to right, #1976d2, #42a5f5);

        border-radius: 2px;

      }



      .about-content p {

        font-size: 1.1rem;

        line-height: 1.6;

        text-align: left;

      }



      .section-image {

        width: 100%;

        margin: 2rem auto;

        text-align: center;

        max-width: 800px;

      }



      .section-image img {

        width: 100%;

        height: auto;

        border-radius: 12px;

        box-shadow: 0 4px 12px rgba(0,0,0,0.15);

        transition: transform 0.3s ease;

      }



      .section-image img:hover {

        transform: scale(1.02);

      }



      @media (max-width: 768px) {

        .about-section {

          flex-direction: column;

        }

        

        .about-content {

          padding-left: 0;

          padding-top: 1rem;

        }

      }



      .section h2 {

        font-size: 2.5rem;

        margin-bottom: 1rem;

        text-align: center;

        position: relative;

      }



      .section h2::after {

        content: '';

        position: absolute;

        bottom: -10px;

        left: 50%;

        transform: translateX(-50%);

        width: 50px;

        height: 3px;

        background-color: #1976d2;

        transition: width 0.3s ease-in-out;

      }

      .section h2:hover::after {

        width: 100px;

      }

      .section p {

        font-size: 1.1rem;

        margin-bottom: 3rem;

        text-align: center;

        max-width: 800px;

        margin-left: auto;

        margin-right: auto;

      }



      /* Container for cards */

      .cards-container {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

        gap: 2rem;

        padding: 1rem;

        position: relative;

        z-index: 2;

        pointer-events: auto;

      }



      @media (max-width: 1024px) {

        .cards-container {

          grid-template-columns: repeat(2, 1fr);

        }

      }



      @media (max-width: 768px) {

        .cards-container {

          grid-template-columns: 1fr;

        }

      }



      /* Basic card styles with animations */

      .card {

        transition: all 0.3s ease-in-out;

        padding: 1.5rem;

        display: flex;

        flex-direction: column;

        background-color: #ffffff;

        width: 100%;

        max-width: 280px;

        border-radius: 12px;

        overflow: hidden;

        height: 100%;

        margin: 1rem;

        position: relative;

        z-index: 2;

      }



      /* Service image styles for image cards */

      .service-image {

        width: 100%;

        overflow: hidden;

        position: relative;

        background: #f8f9fa;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 8px;

      }



      .service-image img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        transition: transform 0.3s ease;

      }



      .service-image:hover img {

        transform: scale(1.05);

      }



      /* Card headings and text */

      .card-title {

        color: #1a237e;

        margin-bottom: 0.7rem;

        font-size: 1.5rem;

        font-weight: 600;

        transition: all 0.3s ease-in-out;

      }



      .card-text {

        color: #455a64;

        font-size: 1rem;

        line-height: 1.6;

        transition: all 0.3s ease-in-out;

      }



      /* Simple Card */

      .card.simple {

        background-color: transparent;

        border: 3px solid #e0e0e0;

      }



      .card.simple:hover {

        transform: scale(1.2);

        z-index: 3;

      }



      /* Elevated Card */

      .card.elevated {

        background-color: #ffffff;

        border: 3px solid #e0e0e0;

        box-shadow: 0 2px 4px rgba(0,0,0,0.1);

      }



      .card.elevated:hover {

        transform: rotate(3deg) scale(1.05);

        box-shadow: 0 8px 16px rgba(0,0,0,0.2);

        z-index: 3;

      }



      .card.elevated:hover .card-title {

        color: #1976d2;

        transform: translateX(4px);

      }



      /* Outlined Card */

      .card.outlined {

        background: linear-gradient(to right, #e8f5e9, #c8e6c9);

        border: 3px solid #e0e0e0;

      }



      .card.outlined:hover {

        transform: skew(-5deg) translateY(-5px);

        border-color: #1976d2;

        z-index: 3;

      }



      .card.outlined:hover .card-title {

        color: #1976d2;

      }



      /* Accent Card */

      .card.accent {

        background-color: #ffffff;

        border: 3px solid #e0e0e0;

        position: relative;

      }



      .card.accent::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        bottom: 0;

        width: 4px;

        background: linear-gradient(to bottom, #1976d2, #42a5f5);

        transition: width 0.3s ease-in-out;

        z-index: 1;

      }



      .card.accent:hover {

        transform: translateX(10px) translateY(-5px);

        box-shadow: 0 4px 12px rgba(0,0,0,0.15);

        z-index: 3;

      }



      .card.accent:hover::before {

        width: 6px;

      }



      .card.accent:hover .card-title {

        color: #1976d2;

      }



      /* Gradient Card */

      .card.gradient {

        background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);

        border: 3px solid #e0e0e0;

        box-shadow: 0 2px 4px rgba(0,0,0,0.1);

        transition: all 0.3s ease-in-out;

        position: relative;

        z-index: 2;

      }



      .card.gradient:hover {

        transform: scale(1.2);

        box-shadow: 0 8px 16px rgba(0,0,0,0.2);

        z-index: 3;

      }



      .card.gradient:hover h3 {

        color: #1976d2;

      }



      .card.gradient:hover p {

        color: #455a64;

      }



      /* Container for sections */

      .section-container {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 2rem;

      }



      /* Section heading */

      .section-header {

        text-align: center;

        margin-bottom: 4rem;

      }



      .section-header h2 {

        font-size: 2.5rem;

        margin-bottom: 1rem;

        position: relative;

        display: inline-block;

      }



      .section-header p {

        font-size: 1.2rem;

        max-width: 800px;

        margin: 0 auto;

        line-height: 1.6;

      }



      @media (max-width: 768px) {

        .contact-grid {

          grid-template-columns: 1fr !important;

          gap: 1.5rem !important;

        }

      }



      .section-image img:hover {

        transform: scale(1.02);

      }



      .image-upload-control {

        margin-top: 1rem;

        display: flex;

        justify-content: flex-start;

      }







      @keyframes fadeInSection {

        from {

          opacity: 0;

          transform: translateY(20px);

        }

        to {

          opacity: 1;

          transform: translateY(0);

        }

      }



      .upload-button {

        display: flex;

        align-items: center;

        gap: 0.5rem;

        padding: 0.5rem 1rem;

        background-color: #1976d2;

        color: white;

        border: none;

        border-radius: 4px;

        cursor: pointer;

        transition: background-color 0.3s ease;

      }



      .upload-button:hover {

        background-color: #1565c0;

      }



      .upload-button i {

        font-size: 1.2rem;

      }






      .cards-container.cards-2 {

        max-width: 1200px;

        margin-left: auto;

        margin-right: auto;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 2rem;

      }

      .cards-container.cards-3 {

        max-width: 1200px;

        margin-left: auto;

        margin-right: auto;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 2rem;

      }

      

      @media (max-width: 1024px) {

        .cards-container.cards-2,

        .cards-container.cards-3 {

          grid-template-columns: 1fr;

        }

      }

      

      .cards-container.cards-2 .card,

      .cards-container.cards-3 .card {

        max-width: 100%;

        width: 100%;

      }



      .card, .section-image img, .about-image img {

        opacity: 0;

        transform: translateY(40px);

        transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);

      }

      .card.animate-on-scroll, .section-image img.animate-on-scroll, .about-image img.animate-on-scroll {

        opacity: 1;

        transform: translateY(0);

      }





      @media (max-width: 1024px) {

        .no-card-section {

          flex-direction: column;

          align-items: center;

        }

        

        .no-card-section .about-image {

          min-width: 100%;

          max-width: 500px;

          margin: 0 auto 2rem auto;

          order: -1;

        }

        

        .no-card-section .about-content {

          width: 100%;

          text-align: center;

        }

        

        .no-card-section .about-content h2,

        .no-card-section .about-content p,

        .no-card-section .about-content div {

          text-align: center !important;

        }

        

        .no-card-section .about-content div br {

          display: none;

        }

        

        .no-card-section .about-content div strong {

          display: block;

          margin-top: 1rem;

          margin-bottom: 0.5rem;

        }

      }



      /* Styles for text in sections */

      .section h2 {

        font-size: 2.5rem;

        font-weight: 700;

        line-height: 1.2;

        letter-spacing: -0.01562em;

        text-transform: none;

        margin-bottom: 1.5rem;

        text-align: center;

        color: inherit;

        word-wrap: break-word;

      }



      .section p {

        font-size: 1.25rem;

        font-weight: 400;

        line-height: 1.5;

        letter-spacing: 0.00938em;

        text-align: center;

        margin-bottom: 2rem;

        color: inherit;

        max-width: 100%;

        word-wrap: break-word;

      }



      @media (max-width: 600px) {

        .section h2 {

          font-size: 2rem;

        }

        .section p {

          font-size: 1rem;

        }

      }



      @media (max-width: 960px) {

        .section h2 {

          font-size: 2.25rem;

        }

        .section p {

          font-size: 1.1rem;

        }

      }



      /* Old multi-page header styles removed - now using header.js */















      /* Hero Section - Complete Redesign */
      
      .hero-section {
        position: relative;
        width: 100%;
        padding: 1rem 2rem 4rem 2rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: transparent;
      }

      .hero-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: center;
      }
      
      /* Адаптивность для разных экранов ПК */
      @media (min-width: 769px) {
        .hero-section {
          padding: 1.5rem 2rem 4rem 2rem;
        }
        
        .hero-content-card {
          padding: 3rem 4rem;
        }
        
        .hero-title {
          font-size: 3rem;
        }
        
        .hero-subtitle {
          font-size: 1.2rem;
        }
        
        .hero-image-card {
          display: none;
        }
      }

      /* Мобильная адаптивность */
      @media (max-width: 768px) {
        .hero-content-card {
          padding: 1.5rem 2rem;
          border-radius: 15px;
        }
        
        .hero-title {
          font-size: 1.8rem;
        }
        
        .hero-subtitle {
          font-size: 1rem;
        }
      }

      .hero-container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 3rem;
      }

      /* Карточка с контентом (заголовок и описание) */
      .hero-content-card {
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
        background-image: url('../images/hero.jpg');
        background-size: calc(100% - 2px) calc(100% - 2px);
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 24px;
        padding: 3rem 3.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
        backdrop-filter: blur(2px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        animation: fadeInDown 0.8s ease-out;
        position: relative;
        overflow: hidden;
      }

      /* Затемнение для читаемости текста */
      .hero-content-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.1) 100%);
        border-radius: 24px;
        z-index: 0;
        opacity: 0.2;
        animation: fadeInDarkness 1.5s ease-in-out 0.8s forwards;
      }

      @keyframes fadeInDarkness {
        0% {
          opacity: 0.2;
          background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.1) 100%);
        }
        100% {
          opacity: 1;
          background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.78) 100%);
        }
      }

      .hero-content-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b9d, #c576d2, #42a5f5, #4ecdc4);
        background-size: 200% 100%;
        animation: gradientShift 3s ease infinite;
        z-index: 2;
      }

      @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
      }

      /* Контент внутри карточки */
      .hero-content {
        position: relative;
        width: 100%;
        text-align: center;
        padding: 0;
        z-index: 1;
        opacity: 0;
        animation: fadeInContent 1s ease-out 2s forwards;
      }

      @keyframes fadeInContent {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Карточка с изображением */
      .hero-image-card {
        width: 100%;
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        animation: fadeInUp 1s ease-out 0.3s backwards, float 6s ease-in-out infinite;
      }

      .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #ffd4e5 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        line-height: 1.2;
        letter-spacing: -0.01em;
        font-family: 'Montserrat', sans-serif;
        position: relative;
        z-index: 1;
      }

      .hero-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        color: #f0f0f0;
        margin-bottom: 0;
        line-height: 1.6;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        font-family: 'Roboto', sans-serif;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 1;
      }

      /* Скрыть мобильную версию текста на десктопе */
      .hero-subtitle-mobile {
        display: none;
      }

      /* Бонус-бейдж */
      .hero-bonus-badge {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(197, 118, 210, 0.15) 50%, rgba(66, 165, 245, 0.15) 100%);
        border: 2px solid rgba(255, 107, 157, 0.3);
        border-radius: 16px;
        padding: 1.25rem 1.75rem;
        margin: 1.5rem 0 2rem 0;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(255, 107, 157, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .hero-bonus-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
      }

      .hero-bonus-badge:hover::before {
        left: 100%;
      }

      .hero-bonus-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(255, 107, 157, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 107, 157, 0.5);
      }

      .bonus-icon {
        font-size: 2.5rem;
        line-height: 1;
        animation: bounce 2s ease-in-out infinite;
        filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
      }

      @keyframes bounce {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-5px) scale(1.05); }
      }

      .bonus-text {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        flex: 1;
      }

      .bonus-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      }

      .bonus-amount {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ff6b9d, #c576d2, #42a5f5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Montserrat', sans-serif;
        line-height: 1;
        text-shadow: 0 2px 4px rgba(255, 107, 157, 0.2);
      }

      .bonus-description {
        font-size: 0.95rem;
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      }

      /* Анимации для hero */
      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translateY(-30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

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

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

      .hero-image {
        transition: transform 0.5s ease;
      }

      .hero-image-card:hover .hero-image {
        transform: scale(1.02);
      }






      /* Sections Preview Grid */

      .sections-preview {

        padding: 4rem 0;

      }



      .sections-preview .container {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .sections-preview h2 {

        text-align: center;

        font-size: 2.5rem;

        margin-bottom: 3rem;

        color: #2c3e50;

      }



      .preview-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

        gap: 2rem;

      }



      .preview-card {

        background: white;

        border-radius: 15px;

        padding: 2rem;

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);

        transition: all 0.3s ease;

        border: 1px solid #e9ecef;

      }



      .preview-card:hover {

        transform: translateY(-10px);

        box-shadow: 0 20px 40px rgba(0,0,0,0.15);

      }



      .preview-card h3 {

        color: #2c3e50;

        font-size: 1.5rem;

        margin-bottom: 1rem;

      }



      .preview-card p {

        color: #6c757d;

        line-height: 1.6;

        margin-bottom: 1.5rem;

      }



      .preview-link {

        display: inline-block;

        background: #007bff;

        color: white;

        padding: 0.75rem 1.5rem;

        text-decoration: none;

        border-radius: 8px;

        font-weight: 500;

        transition: all 0.3s ease;

      }



      .preview-link:hover {

        background: #0056b3;

        transform: translateY(-2px);

      }



      /* Стили для выделенного раздела */

      .featured-section {

        position: relative;

        overflow: hidden;

      }



      .featured-content {

        position: relative;

        z-index: 2;

      }



      .featured-image {

        border-radius: 15px;

        overflow: hidden;

        box-shadow: 0 15px 35px rgba(0,0,0,0.1);

      }



      .featured-image img {

        width: 100%;

        height: auto;

        display: block;

        transition: transform 0.3s ease;

      }



      .featured-image:hover img {

        transform: scale(1.05);

      }



      .featured-button:hover {

        transform: translateY(-2px);

        box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);

      }



      /* Стили для разных режимов отображения разделов */

      .sections-preview.mode-cards .preview-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

        gap: 2rem;

      }







      /* Стили для превью контактов */

      .contact-preview {

        position: relative;

        overflow: hidden;

      }



      .contact-preview-content {

        position: relative;

        z-index: 2;

      }



      .contact-preview-button:hover {

        transform: translateY(-2px);

        box-shadow: 0 8px 25px rgba(255,255,255,0.2);

      }



      /* Адаптивность для новых режимов */

      @media (max-width: 768px) {

        .featured-content {

          grid-template-columns: 1fr !important;

          gap: 2rem !important;
        }

        .featured-section .container {
          padding: 0 1rem !important;
        }

        .featured-text h2 {
          font-size: 2rem !important;
          text-align: center !important;
        }

        .featured-text p {
          font-size: 1.1rem !important;
          text-align: center !important;
        }

        .featured-elements {
          text-align: center !important;
        }

        .featured-actions {
          text-align: center !important;
        }



        .sections-preview.mode-cards .preview-grid {

          grid-template-columns: 1fr;

        }



        .contact-preview-info {

          flex-direction: column;

          gap: 1rem;

        }


        .contact-preview-content {
          grid-template-columns: 1fr !important;
          gap: 2rem !important;
        }
      }

      /* Berry Mix Master Game Styles */
      @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
      }

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

      @keyframes ingredientSelect {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
      }

      @keyframes splashEffect {
        0% { transform: scale(0); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.8; }
        100% { transform: scale(2); opacity: 0; }
      }

      .berry-game-section {
        position: relative;
        overflow: hidden;
      }

      .game-screen {
        display: none;
        animation: gameScreenTransition 0.5s ease-out;
      }

      .game-screen.active {
        display: block;
      }

      .ingredient-card {
        position: relative;
        overflow: hidden;
      }

      .ingredient-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.5s;
      }

      .ingredient-card:hover::before {
        left: 100%;
      }

      .ingredient-card.selected {
        border-color: #ff6b9d !important;
        transform: scale(1.05);
        animation: ingredientSelect 0.3s ease-out;
      }

      .ingredient-card.selected::after {
        content: '✓';
        position: absolute;
        top: 10px;
        right: 10px;
        background: #ff6b9d;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 16px;
        animation: ingredientSelect 0.3s ease-out;
      }

      .splash-animation {
        position: absolute;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(255,107,157,0.8) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        animation: splashEffect 0.6s ease-out;
      }

      /* Mobile responsiveness for game */
      @media (max-width: 768px) {
        .berry-game-section {
          padding: 2rem 1rem;
          min-height: auto;
        }

        .game-header h2 {
          font-size: 2rem !important;
        }

        .game-header p {
          font-size: 1.1rem !important;
        }

        #berry-game-container {
          padding: 2rem 1rem !important;
        }

        .ingredients-grid {
          grid-template-columns: 1fr !important;
          gap: 1rem !important;
        }

        .ingredient-card {
          padding: 1rem !important;
        }

        .ingredient-card div {
          font-size: 2rem !important;
        }

        .ingredient-card h4 {
          font-size: 1rem !important;
        }

        .ingredient-card p {
          font-size: 0.8rem !important;
        }
      }

      /* 🎨 Мобильная версия Hero-секции в стиле Tropical Mix */
      @media (max-width: 768px) {
        .hero-section {
          background: transparent;
          position: relative;
          overflow: hidden;
          min-height: auto;
          padding: 1rem 0.5rem 1.5rem 0.5rem;
          display: flex;
          align-items: flex-start;
          justify-content: center;
        }

        .hero-section::before {
          display: none !important;
          content: none !important;
        }

        .hero-background {
          display: none;
        }

        .hero-content {
          position: relative;
          z-index: 3;
          width: 100%;
          padding: 0;
          text-align: center;
        }

        .hero-container {
          max-width: 100%;
          width: 100%;
          flex-direction: column;
          gap: 1rem;
          padding: 0;
        }

        /* Порядок: сначала изображение, потом карточка с текстом */
        .hero-image-card {
          order: -1;
          width: 100%;
          background: transparent;
          box-shadow: none;
          padding: 0;
          margin: 0;
        }

        .hero-image-card .hero-image {
          display: none;
        }

        /* Мобильное изображение hero_mobile.png */
        .hero-image-card::before {
          content: '';
          display: block;
          width: 100%;
          max-width: 100%;
          height: auto;
          aspect-ratio: 4 / 3;
          margin: 0;
          background-image: url('../images/hero_mobile.png');
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          border-radius: 20px;
          position: relative;
          overflow: hidden;
          box-shadow: 0 12px 40px rgba(0,0,0,0.4);
        }

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

        .hero-content {
          padding: 0;
        }

        .hero-content-card {
          padding: 1.5rem 1rem;
          border-radius: 20px;
        }

        .hero-bonus-badge {
          flex-direction: column;
          text-align: center;
          padding: 1rem 1.25rem;
          gap: 0.75rem;
          margin: 1.25rem 0 1.5rem 0;
        }

        .bonus-amount {
          font-size: 1.75rem;
        }

        .bonus-label {
          font-size: 0.85rem;
        }

        .bonus-description {
          font-size: 0.9rem;
        }

        .hero-title {
          font-size: 1.7rem;
          font-weight: 700;
          color: #ffffff;
          margin-bottom: 1.5rem;
          background: linear-gradient(135deg, #ffffff 0%, #ffd4e5 50%, #ffffff 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
          line-height: 1.2;
          font-family: 'Montserrat', sans-serif;
          position: relative;
          z-index: 1;
        }

        .hero-subtitle {
          font-size: 1rem;
          color: #ffb6c1;
          line-height: 1.4;
          max-width: 100%;
          margin: 0;
          text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
          font-family: 'Montserrat', sans-serif;
        }

        /* Показать мобильную версию текста, скрыть десктопную */
        .hero-subtitle-desktop {
          display: none;
        }

        .hero-subtitle-mobile {
          display: block;
          margin-bottom: 0;
        }
      }

      /* Дополнительные стили для очень маленьких экранов */
      @media (max-width: 480px) {
        .hero-image-card::before {
          max-width: 100%;
          aspect-ratio: 4 / 3;
          height: auto;
          margin-bottom: 1rem;
        }

        .hero-title {
          font-size: 1.6rem;
        }

        .hero-subtitle {
          font-size: 0.9rem;
        }
      }

     

      /* Section Content Pages */

      .section-content {

        padding: 2rem 0;

      }



      .section-content .container {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .section-title {

        font-size: 2.5rem;

        color: #2c3e50;

        margin-bottom: 1rem;

        text-align: center;

      }



      .section-description {

        font-size: 1.2rem;

        color: #6c757d;

        text-align: center;

        margin-bottom: 3rem;

        line-height: 1.6;

      }



      .cards-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

        gap: 2rem;

      }



      .cards-grid .card {

        background: white;

        border-radius: 15px;

        padding: 2rem;

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);

        transition: all 0.3s ease;

        border: 1px solid #e9ecef;

      }



      .cards-grid .card:hover {

        transform: translateY(-5px);

        box-shadow: 0 15px 35px rgba(0,0,0,0.15);

      }



      .card-title {

        color: #2c3e50;

        font-size: 1.3rem;

        margin-bottom: 1rem;

      }



      .card-content {

        color: #6c757d;

        line-height: 1.6;

      }



      /* Contact Section */

      .contact-section {

        padding: 2rem 0;

      }



      .contact-section .container {

        max-width: 800px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .contact-section h1 {

        font-size: 2.5rem;

        color: #2c3e50;

        text-align: center;

        margin-bottom: 2rem;

      }



      .contact-section p {

        font-size: 1.2rem;

        color: #6c757d;

        text-align: center;

        margin-bottom: 2rem;

        line-height: 1.6;

      }



      .contact-info {

        background: inherit; /* Наследует фон от родительского контейнера */

        border-radius: 15px;

        padding: 2rem;

        box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);

        border: 1px solid rgba(255,255,255,0.1);

      }



      .contact-info p {

        margin-bottom: 1rem;

        text-align: left;

        font-size: 1.1rem;

      }



      .contact-info strong {

        color: #2c3e50;

      }



      /* Legal Content */

      .legal-content {

        padding: 2rem 0;

      }



      .legal-content .container {

        max-width: 900px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .legal-content h1 {

        font-size: 2.5rem;

        color: #2c3e50;

        text-align: center;

        margin-bottom: 2rem;

      }



      .legal-content .content {

        background: white;

        border-radius: 15px;

        padding: 2rem;

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);

        border: 1px solid #e9ecef;

        line-height: 1.6;

        color: #495057;

      }

      /* МОБИЛЬНЫЕ СТИЛИ ШАПКИ УДАЛЕНЫ - теперь в header.js */

      /* Информационная карточка о платформе */
      .platform-info-section {
        padding: 3rem 2rem;
        background: transparent;
      }

      .platform-info-card {
        max-width: 1200px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 2.5rem;
        align-items: center;
      }

      .platform-image-wrapper {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      }

      .platform-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
      }

      .platform-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .platform-title {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        line-height: 1.3;
      }

      .platform-description {
        font-size: 1.1rem;
        color: #e0e0e0;
        line-height: 1.7;
        margin: 0;
        font-family: 'Roboto', sans-serif;
      }

      .platform-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.5rem;
      }

      .feature-item {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
      }

      .feature-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
      }

      .feature-text {
        font-size: 1rem;
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
      }

      @media (max-width: 768px) {
        .platform-info-section {
          padding: 0 0.5rem;
        }
        
        .platform-info-card {
          grid-template-columns: 1fr;
          padding: 1.5rem 1rem;
          gap: 1.5rem;
          width: 100%;
          max-width: 100%;
        }

        .platform-title {
          font-size: 1.5rem;
        }

        .platform-description {
          font-size: 1rem;
        }
      }

      /* Berry Mix Master Mini-Game Styles */
      .berry-game-section-wrapper {
        padding: 4rem 0;
        background: transparent;
        position: relative;
        overflow: hidden;
      }

      .berry-game-section-wrapper::before {
        display: none;
      }

      .berry-game-section-wrapper .container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
      }

      .berry-game-section-wrapper .section-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .berry-game-section-wrapper .section-header h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .berry-game-section-wrapper .section-header p {
        font-size: 1.3rem;
        color: #00ffff;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        font-family: 'Montserrat', sans-serif;
        max-width: 600px;
        margin: 0 auto;
      }

      .berry-game-section {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        margin: 2rem auto;
        max-width: 1200px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
      }

      .berry-game-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
          rgba(255, 20, 147, 0.1) 0%, 
          rgba(138, 43, 226, 0.1) 50%, 
          rgba(255, 69, 0, 0.1) 100%);
        opacity: 0.5;
        z-index: -1;
      }

      .game-screen {
        display: none;
        animation: fadeInUp 0.5s ease-out;
      }

      .game-screen.active {
        display: block;
      }

      .game-header {
        text-align: center;
        margin-bottom: 2rem;
      }

      .game-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .game-subtitle {
        font-size: 1.3rem;
        color: #00ffff;
        margin-bottom: 1rem;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .game-description {
        font-size: 1.1rem;
        color: #ffffff;
        opacity: 0.9;
        margin-bottom: 1.5rem;
        font-family: 'Montserrat', sans-serif;
      }

      /* Карточка с изображением коктейлей */
      .cocktail-image-card {
        margin: 2rem auto;
        max-width: 600px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 20, 147, 0.3);
        transition: all 0.3s ease;
      }

      .cocktail-image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(255, 20, 147, 0.5),
                    0 0 0 1px rgba(255, 20, 147, 0.5);
        border-color: rgba(255, 20, 147, 0.6);
      }

      .cocktail-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px;
        object-fit: cover;
      }

      .game-header h3 {
        font-size: 1.8rem;
        color: #39ff14;
        margin-bottom: 0.5rem;
        text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .game-header p {
        font-size: 1.1rem;
        color: #ffffff;
        opacity: 0.8;
        font-family: 'Montserrat', sans-serif;
      }

      .start-button {
        background: linear-gradient(135deg, #ff1493, #8a2be2);
        border: none;
        border-radius: 50px;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .start-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
        background: linear-gradient(135deg, #ff69b4, #9932cc);
      }

      .start-button:active {
        transform: translateY(-1px);
      }

      .splash-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
        pointer-events: none;
      }

      .start-button:hover .splash-effect {
        width: 200px;
        height: 200px;
        opacity: 0;
      }

      .ingredients-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
      }

      .ingredient-card {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 1.5rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(5px);
      }

      .ingredient-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
      }

      .ingredient-card:hover::before {
        left: 100%;
      }

      .ingredient-card:hover {
        transform: translateY(-5px) scale(1.05);
        border-color: #ff1493;
        box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
        background: rgba(255, 20, 147, 0.1);
      }

      .ingredient-card.selected {
        border-color: #39ff14;
        background: rgba(57, 255, 20, 0.2);
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
      }

      .ingredient-card.selected::after {
        content: '✓';
        position: absolute;
        top: 10px;
        right: 10px;
        background: #39ff14;
        color: #000;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 16px;
        animation: bounce 0.5s ease;
      }

      .ingredient-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        animation: float 3s ease-in-out infinite;
      }

      .ingredient-card h4 {
        font-size: 1.2rem;
        color: #ffffff;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
      }

      .ingredient-card p {
        font-size: 0.9rem;
        color: #ffffff;
        opacity: 0.8;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
      }

      .result-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        margin: 2rem 0;
      }

      .cocktail-display {
        position: relative;
      }

      .cocktail-glass {
        width: 120px;
        height: 150px;
        background: linear-gradient(to bottom, 
          rgba(255, 255, 255, 0.1) 0%, 
          rgba(255, 255, 255, 0.05) 100%);
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 0 0 60px 60px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(5px);
      }

      .cocktail-liquid {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80%;
        background: linear-gradient(to top, 
          #ff1493 0%, 
          #8a2be2 50%, 
          #ff4500 100%);
        border-radius: 0 0 60px 60px;
        animation: cocktailShake 2s ease-in-out infinite;
      }

      .bubbles {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 60%;
      }

      .bubbles::before,
      .bubbles::after {
        content: '';
        position: absolute;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: bubbleRise 2s ease-in-out infinite;
      }

      .bubbles::before {
        width: 8px;
        height: 8px;
        left: 20%;
        animation-delay: 0s;
      }

      .bubbles::after {
        width: 6px;
        height: 6px;
        right: 20%;
        animation-delay: 1s;
      }

      .result-text {
        text-align: center;
      }

      .result-text h4 {
        font-size: 2rem;
        color: #39ff14;
        margin-bottom: 1.5rem;
        text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .taste-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
        backdrop-filter: blur(5px);
      }

      .stat-label {
        color: #ffffff;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
      }

      .stat-value {
        color: #39ff14;
        font-weight: 700;
        font-size: 1.1rem;
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .final-message {
        text-align: center;
        margin-top: 2rem;
      }

      .final-message p {
        font-size: 1.1rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        font-family: 'Montserrat', sans-serif;
      }

      .play-again-button {
        background: linear-gradient(135deg, #00ffff, #39ff14);
        border: none;
        border-radius: 25px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .play-again-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6);
        background: linear-gradient(135deg, #39ff14, #00ffff);
      }

      /* Анимации */
      @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(2deg); }
      }

      @keyframes cocktailShake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-2px); }
        75% { transform: translateX(2px); }
      }

      @keyframes bubbleRise {
        0% { 
          transform: translateY(100px); 
          opacity: 0; 
        }
        50% { 
          opacity: 1; 
        }
        100% { 
          transform: translateY(-20px); 
          opacity: 0; 
        }
      }

      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
      }

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

      /* Мобильная адаптация для игры */
      @media (max-width: 768px) {
        .berry-game-section-wrapper {
          padding: 1rem 0;
        }
        
        .berry-game-section-wrapper .container {
          padding: 0 0.5rem;
          max-width: 100%;
        }

        .berry-game-section-wrapper .section-header h2 {
          font-size: 2.5rem;
        }

        .berry-game-section-wrapper .section-header p {
          font-size: 1.1rem;
        }

        .berry-game-section {
          padding: 1.5rem 1rem;
          margin: 0;
          width: 100%;
          max-width: 100%;
        }

        .game-title {
          font-size: 2rem;
        }

        .game-subtitle {
          font-size: 1.1rem;
        }

        .cocktail-image-card {
          margin: 1.5rem auto;
          max-width: 100%;
          border-radius: 15px;
        }

        .cocktail-image {
          border-radius: 13px;
        }

        .ingredients-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
        }

        .result-content {
          flex-direction: column;
          gap: 2rem;
        }

        .cocktail-glass {
          width: 100px;
          height: 120px;
        }

        .result-text h4 {
          font-size: 1.5rem;
        }

        .taste-stats {
          gap: 0.8rem;
        }

        .stat {
          padding: 0.6rem 1rem;
        }
      }

      @media (max-width: 768px) {















      /* Mobile (576px - 767px) */
      @media (max-width: 767px) and (min-width: 576px) {
        .hero-section {
          min-height: auto;
        }
        
        .hero-section::before {
          display: none !important;
          content: none !important;
        }
        
        .hero-title {
          font-size: 2.8rem;
          margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
          font-size: 1.2rem;
          margin-bottom: 0;
        }
        
        .hero-content {
          padding: 1rem;
        }
      }
      
      /* Small Mobile (480px - 575px) */
      @media (max-width: 575px) and (min-width: 480px) {
        .hero-section {
          min-height: auto;
        }
        
        .hero-section::before {
          display: none !important;
          content: none !important;
        }
        
        .hero-title {
          font-size: 2.2rem;
          margin-bottom: 1.2rem;
        }
        
        .hero-subtitle {
          font-size: 1rem;
          margin-bottom: 0;
        }
        
        .hero-content {
          padding: 0.8rem;
        }
      }
      
      /* Extra Small Mobile (320px - 479px) */
      @media (max-width: 479px) {
        .hero-section {
          min-height: auto;
        }
        
        .hero-section::before {
          display: none !important;
          content: none !important;
        }
        
        .hero-title {
          font-size: 1.8rem;
          margin-bottom: 1rem;
          line-height: 1.2;
        }
        
        .hero-subtitle {
          font-size: 0.9rem;
          margin-bottom: 0;
          line-height: 1.3;
        }
        
        .hero-content {
          padding: 0.5rem;
        }
        
        .hero-container {
          max-width: 100%;
        }
      }



        .sections-preview h2 {

          font-size: 2rem;

        }



        .preview-grid {

          grid-template-columns: 1fr;

        }



        .section-title {

          font-size: 2rem;

        }



        .cards-grid {

          grid-template-columns: 1fr;

        }

      }



      /* Enhanced section styles from EnhancedSectionEditor */

      



      /* Animation keyframes */

      @keyframes fadeIn {

        from { opacity: 0; }

        to { opacity: 1; }

      }

      

      @keyframes slideInLeft {

        from { transform: translateX(-100%); opacity: 0; }

        to { transform: translateX(0); opacity: 1; }

      }

      

      @keyframes slideInRight {

        from { transform: translateX(100%); opacity: 0; }

        to { transform: translateX(0); opacity: 1; }

      }

      

      @keyframes slideInUp {

        from { transform: translateY(100%); opacity: 0; }

        to { transform: translateY(0); opacity: 1; }

      }

      

      @keyframes slideInDown {

        from { transform: translateY(-100%); opacity: 0; }

        to { transform: translateY(0); opacity: 1; }

      }

      

      @keyframes zoomIn {

        from { transform: scale(0.8); opacity: 0; }

        to { transform: scale(1); opacity: 1; }

      }

      

      @keyframes bounce {

        0%, 20%, 53%, 80%, 100% { transform: translateY(0); }

        40%, 43% { transform: translateY(-20px); }

        70% { transform: translateY(-10px); }

        90% { transform: translateY(-4px); }

      }

      

      @keyframes pulse {

        0% { transform: scale(1); }

        50% { transform: scale(1.05); }

        100% { transform: scale(1); }

      }

      

      /* Chart Components */

      .chart-component {

        animation: fadeInUp 0.6s ease-out;

      }

      

      .chart-component canvas {

        border-radius: 8px;

        box-shadow: 0 2px 8px rgba(0,0,0,0.1);

      }

      

      .chart-component div[id^="chart-"] {

        border-radius: 8px;

        box-shadow: 0 2px 8px rgba(0,0,0,0.1);

      }

      

      @keyframes fadeInUp {

        from {

          opacity: 0;

          transform: translateY(30px);

        }

        to {

          opacity: 1;

          transform: translateY(0);

        }

      }

      /* Общие стили для счетчиков */
      .animated-counter {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      
      .counter-description {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      /* Мобильные стили для счетчиков */
      @media (max-width: 768px) {
        .animated-counter {
          text-align: center !important;
          max-width: 100% !important;
          overflow: hidden !important;
          width: 100% !important;
          margin: 0 auto !important;
          padding: 1rem !important;
          box-sizing: border-box !important;
        }
        
        .counter-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          text-align: center !important;
          margin: 0 auto !important;
        }
        
        .counter-number-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          justify-content: center !important;
          flex-wrap: wrap !important;
          text-align: center !important;
        }
        
        .counter {
          display: inline-block !important;
          text-align: center !important;
          width: auto !important;
          max-width: 100% !important;
        }
        
        .counter-suffix {
          display: inline-block !important;
          text-align: center !important;
          max-width: 100% !important;
        }
        
        .counter-description {
          text-align: center !important;
          width: 100% !important;
          max-width: 100% !important;
          margin: 0.5rem auto !important;
          display: block !important;
          word-break: break-word !important;
          overflow-wrap: break-word !important;
          hyphens: auto !important;
          line-height: 1.4 !important;
          padding: 0 5px !important;
          box-sizing: border-box !important;
        }
        
        .content-element.animated-counter {
          text-align: center !important;
          width: 100% !important;
          max-width: 100% !important;
          margin: 0 auto !important;
        }
      }

      /* FAQ Аккордеон Стили */
      .faq-section-wrapper {
        padding: 4rem 0;
        background: transparent;
        position: relative;
        overflow: hidden;
      }

      .faq-section-wrapper .container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .faq-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .faq-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        font-family: 'Montserrat', sans-serif;
      }

      .faq-header p {
        font-size: 1.2rem;
        color: #ffffff;
        opacity: 0.9;
        font-family: 'Roboto', sans-serif;
      }

      .faq-accordion {
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
      }

      .faq-accordion::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
          rgba(255, 20, 147, 0.05) 0%, 
          rgba(138, 43, 226, 0.05) 50%, 
          rgba(255, 69, 0, 0.05) 100%);
        opacity: 0.5;
        z-index: -1;
      }

      .faq-item {
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
      }

      .faq-item:last-child {
        margin-bottom: 0;
      }

      .faq-item:hover {
        border-color: rgba(255, 20, 147, 0.3);
        background: rgba(255, 20, 147, 0.08);
      }

      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        user-select: none;
        transition: all 0.3s ease;
        background: transparent;
      }

      .faq-question:hover {
        background: rgba(255, 255, 255, 0.05);
      }

      .faq-question-text {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        flex: 1;
        padding-right: 1rem;
      }

      .faq-icon {
        font-size: 1.5rem;
        font-weight: 300;
        color: #ffffff;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        flex-shrink: 0;
      }

      .faq-item.active .faq-icon {
        transform: rotate(45deg);
        background: rgba(255, 20, 147, 0.3);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 1.5rem;
      }

      .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 1.5rem 1.5rem 1.5rem;
      }

      .faq-answer p {
        font-size: 1rem;
        color: #e0e0e0;
        line-height: 1.7;
        margin: 0;
        font-family: 'Roboto', sans-serif;
        padding-top: 1rem;
      }

      @media (max-width: 768px) {
        .faq-section-wrapper {
          padding: 1rem 0;
        }

        .faq-section-wrapper .container {
          padding: 0 0.5rem;
          max-width: 100%;
        }

        .faq-header h2 {
          font-size: 2rem;
        }

        .faq-header p {
          font-size: 1rem;
        }

        .faq-accordion {
          padding: 1.5rem;
        }

        .faq-question {
          padding: 1rem 1.25rem;
        }

        .faq-question-text {
          font-size: 1rem;
        }

        .faq-icon {
          width: 28px;
          height: 28px;
          font-size: 1.3rem;
        }

        .faq-answer {
          padding: 0 1.25rem;
        }

        .faq-item.active .faq-answer {
          padding: 0 1.25rem 1.25rem 1.25rem;
        }

        .faq-answer p {
          font-size: 0.95rem;
        }
      }

      @media (max-width: 480px) {
        .faq-header h2 {
          font-size: 1.75rem;
        }

        .faq-accordion {
          padding: 1rem;
        }

        .faq-question {
          padding: 0.875rem 1rem;
        }

        .faq-question-text {
          font-size: 0.95rem;
        }
      }

     