

      /* Base styles */

      * {

        margin: 0;

        padding: 0;

        box-sizing: border-box;

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

      }



      /* Header styles for multi-page export */

      .site-header { 

        background: var(--header-bg-color, #fff); 

        padding: 0.25rem 0.5rem; 

        border-bottom: 1px solid #eee; 

        position: sticky;

        top: 0;

        z-index: 1000;

      }



      .header-content {

        display: flex;

        justify-content: space-between;

        align-items: center;

        flex-wrap: wrap;

        max-width: 1200px;

        margin: 0 auto;

        gap: 0.5rem;

      }



      .site-branding {

        display: flex;

        flex-direction: row;

        align-items: center;

        margin-right: 0.5rem;

        flex-shrink: 1;

        min-width: 0;

      }



      .site-title {

        margin: 0;

        font-size: 1.5rem;

        font-weight: 700;

      }



      .site-nav {

        display: flex;

        align-items: center;

        flex-shrink: 0;

      }



      .site-title a {

        color: var(--header-title-color, #333);

        text-decoration: none;

        transition: color 0.3s ease;

      }



      .site-title a:hover {

        color: var(--header-title-color, #333);

        opacity: 0.8;

      }



      .site-domain {

        font-size: 0.9rem;

        color: var(--header-title-color, #666);

        opacity: 0.8;

        margin-top: 4px;

      }



      .site-nav {

        position: relative;

      }



      .menu-toggle {

        display: none;

        flex-direction: column;

        background: none;

        border: none;

        cursor: pointer;

        padding: 0.5rem;

        color: #1976d2;

      }



      .menu-toggle span {

        width: 25px;

        height: 3px;

        background: var(--header-link-color, #1976d2) !important;

        margin: 3px 0;

        transition: 0.3s;

      }



      .nav-menu {

        display: flex;

        list-style: none;

        margin: 0;

        padding: 0;

        gap: 0.5rem;

        align-items: center;

      }



      .nav-menu li {

        margin: 0;

        list-style: none;

      }



      .nav-menu li a {

        all: unset;

        cursor: pointer;

      }



      .nav-menu a,

      .nav-link {

        color: var(--header-link-color, #333) !important;

        text-decoration: none !important;

        font-weight: 500;

        transition: all 0.3s ease;

        padding: 0.125rem 0.25rem;

        border-radius: 4px;

        background: transparent !important;

        display: inline-block;

        border: none !important;

        box-shadow: none !important;

        font-size: 0.85rem;

        line-height: 1.5;

        white-space: nowrap;

      }



      .nav-menu a:hover,

      .nav-link:hover {

        color: var(--header-link-color, #1976d2) !important;

        background: rgba(0, 0, 0, 0.05) !important;

        opacity: 1;

        transform: none !important;

      }



      /* ПРОСТЫЕ СТИЛИ ДЛЯ АКТИВНОЙ ССЫЛКИ */

      .nav-link.active {

        background: #1976d2 !important;

        color: #ffffff !important;

        font-weight: bold !important;

        border-radius: 20px !important;

        padding: 0.5rem 1rem !important;

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

        transition: all 0.3s ease !important;

      }



      /* Mobile responsiveness */

      @media (max-width: 768px) {

        .site-header {

          padding: 0.25rem;

        }

        

        .menu-toggle {

          display: flex !important;

          color: var(--header-link-color, #1976d2) !important;

          background: transparent !important;

          border: none !important;

          cursor: pointer !important;

          padding: 0.5rem !important;

        }

        

        .menu-toggle span {

          background: var(--header-link-color, #1976d2) !important;

          color: var(--header-link-color, #1976d2) !important;

          width: 25px !important;

          height: 3px !important;

          margin: 3px 0 !important;

          display: block !important;

        }

        

        .nav-menu {

          position: absolute;

          top: 100%;

          left: 0;

          right: 0;

          background: var(--header-bg-color, #fff);

          flex-direction: column;

          padding: 0.25rem;

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

          display: none;

          gap: 0.25rem;

        }

        

        .nav-menu.active {

          display: flex;

        }

        

        .header-content {

          flex-wrap: wrap;

        }

        

        .site-branding {

          margin-right: 0.25rem;

          margin-left: 0.5rem;

          flex-shrink: 1;

          min-width: 0;

        }

      }



      /* 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;

        }

      }



      /* Other styles */

      header {

        position: fixed;

        top: 0;

        left: 0;

        right: 0;

        z-index: 1000;

      }



      nav {

        padding: 1rem;

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

      }



      .nav-container {

        max-width: 1200px;

        margin: 0 auto;

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 0 1rem;

      }



      .logo {

        font-size: 1.5rem;

        font-weight: 700;

        text-decoration: none;

        white-space: nowrap;

        margin-right: 1rem;

        flex-shrink: 1;

        min-width: 0;

        overflow: hidden;

        text-overflow: ellipsis;

      }



      .domain {

        display: block;

        margin-top: 0.25rem;

        font-size: 0.9rem;

        font-weight: normal;

        opacity: 0.8;

        white-space: nowrap;

      }



      .nav-menu {

        display: flex;

        list-style: none;

        margin: 0;

        padding: 0;

        flex-wrap: nowrap;

      }



      .nav-menu li {

        margin-left: 2rem;

        white-space: nowrap;

      }



      .nav-menu a {

        text-decoration: none;

        position: relative;

        white-space: nowrap;

      }



      .nav-menu a::after {

        content: '';

        position: absolute;

        bottom: -5px;

        left: 0;

        width: 0;

        height: 2px;

        background-color: currentColor;

        transition: width 0.3s ease;

      }



      .nav-menu a:hover::after {

        width: 100%;

      }





      .menu-toggle span {

        display: block;

        width: 25px;

        height: 3px;

        background: var(--header-link-color, #333);

        margin: 5px 0;

        transition: all 0.3s ease;

      }



      @media (max-width: 768px) {



        .nav-menu {

          display: none !important;

          position: absolute;

          top: 100%;

          left: 0;

          right: 0;

          background: var(--menu-bg-color, #fff);

          padding: 1rem 0;

          flex-direction: column;

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

          z-index: 1001;

          border-bottom-left-radius: 12px;

          border-bottom-right-radius: 12px;

        }



        .nav-menu.active {

          display: flex !important;

        }



        .nav-menu li {

          margin: 0.5rem 0;

          width: 100%;

          text-align: center;

        }



        .nav-menu a {

          display: block;

          padding: 0.75rem 1rem;

          font-size: 1.1rem;

          font-weight: 500;

          color: var(--menu-link-color, #1976d2) !important;

          background: transparent;

          transition: color 0.3s;

        }



        .nav-menu a::after {

          display: none;

        }

        

        .nav-link.active {

          background: #1976d2 !important;

          color: #ffffff !important;

          font-weight: bold !important;

          border-radius: 20px !important;

          padding: 0.5rem 1rem !important;

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

          transition: all 0.3s ease !important;

        }

        @media (max-width: 1024px) {
          .site-nav ul {
            gap: 0.3rem;
          }
          
          .site-nav a {
            padding: 0.25rem 0.5rem;
            font-size: 0.9rem;
          }
        }



        .logo {

          font-size: 1.1rem;

          margin-right: 0.5rem;

          white-space: nowrap;

          flex-shrink: 1;

          min-width: 0;

          overflow: hidden;

          text-overflow: ellipsis;

        }

      }



      @media (max-width: 480px) {

        .nav-container {

          padding: 0 0.5rem;

        }



        .logo {

          font-size: 1rem;

        }



        .nav-menu a {

          font-size: 0.9rem;

        }

      }



      body {

        line-height: 1.6;

        color: #333;

        min-height: 100vh;

        display: flex;

        flex-direction: column;

        overflow-x: hidden;

        margin: 0;

        padding: 0;

        width: 100%;

      }



      /* ФИНАЛЬНЫЕ СТИЛИ ДЛЯ АКТИВНОЙ ССЫЛКИ */

      .nav-link.active {

        background: #1976d2 !important;

        color: #ffffff !important;

        font-weight: bold !important;

        border-radius: 20px !important;

        padding: 0.5rem 1rem !important;

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

        transition: all 0.3s ease !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;

      }





      .site-overlay {

        position: fixed;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

        z-index: -1;

      }



      main {

        flex: 1;

        padding-top: 60px;

        width: 100%;

        overflow-x: hidden;

      }



      .hero {

        height: 100vh;

        display: flex;

        align-items: center;

        justify-content: center;

        text-align: center;

        padding: 0 2rem;

        position: relative;

        overflow: hidden;

      }



      .hero {

        position: relative;

        overflow: hidden;

      }



      .hero-bg-animation {

        position: absolute;

        top: -5%;

        left: -5%;

        width: 110%;

        height: 110%;

        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;

        z-index: -1;

        animation: heroBackgroundZoom 15s ease-in-out infinite;

      }



      @keyframes heroBackgroundZoom {

        0% { 

          transform: scale(1);

        }

        50% { 

          transform: scale(1.05);

        }

        100% { 

          transform: scale(1);

        }

      }



      @keyframes zoomIn {

        0% {

          transform: scale(1);

        }

        100% {

          transform: scale(1.1);

        }

      }



      .hero-overlay {

        position: absolute;

        top: 0;

        left: 0;

        right: 0;

        bottom: 0;

        z-index: 1;

        animation: fadeIn 1s ease-in-out;

      }



      @keyframes fadeIn {

        from {

          opacity: 0;

        }

        to {

          opacity: 1;

        }

      }



      .hero-content {

        max-width: 800px;

        z-index: 2;

        position: relative;

        animation: slideUp 1s ease-out;

      }



      @keyframes slideUp {

        from {

          transform: translateY(50px);

          opacity: 0;

        }

        to {

          transform: translateY(0);

          opacity: 1;

        }

      }



      .hero h1 {

        font-size: 2.5rem;

        margin-bottom: 0.5rem;

        line-height: 1.1;

        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

        animation: none !important;

      }



      .hero p {

        font-size: 1.2rem;

        margin-bottom: 1rem;

        line-height: 1.3;

        max-width: 600px;

        margin-left: auto;

        margin-right: auto;

        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);

        animation: none !important;

      }



      .hero button {

        padding: 1rem 2rem;

        font-size: 1.1rem;

        border: none;

        border-radius: 4px;

        cursor: pointer;

        transition: all 0.3s ease;

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

        animation: none !important;

      }



      .hero button:hover {

        transform: translateY(-2px);

        box-shadow: 0 4px 8px rgba(0,0,0,0.3);

      }



      .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;

      }



      @media (max-width: 768px) {

        .nav-container {

          padding: 0 0.5rem;

        }



        .logo {

          font-size: 1rem;

        }



        .nav-menu a {

          font-size: 0.9rem;

        }

      }



      .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;

        }

      }



      /* Multi-page specific styles */

      

      /* Site Header for multi-page */

      .site-header {

        background: #5d3a09;

        color: #33ffdd;

        padding: 1rem 0;

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

        position: sticky;

        top: 0;

        z-index: 1000;

      }



      .site-header .container {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .site-header .header-content {

        display: flex;

        justify-content: space-between;

        align-items: center;

      }



      .site-header .site-title {

        margin: 0;

        font-size: 1.8rem;

        font-weight: 700;

      }



      .site-header .site-title a {

        color: inherit;

        text-decoration: none;

      }



      .site-nav ul {

        display: flex;

        list-style: none;

        margin: 0;

        padding: 0;

        gap: 0.5rem;

        flex-wrap: wrap;

        align-items: center;

      }



      .site-nav a {

        color: #ffff00;

        text-decoration: none;

        font-weight: 500;

        padding: 0.3rem 0.6rem;

        border-radius: 8px;

        transition: all 0.3s ease;

        white-space: nowrap;

      }



      .site-nav a:hover,

      .site-nav a.active {

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

        transform: translateY(-2px);

      }





      .menu-toggle span {

        width: 100%;

        height: 3px;

        background: var(--header-link-color, #333);

        border-radius: 2px;

        transition: all 0.3s ease;

        transform-origin: center;

      }



      .menu-toggle.active span:nth-child(1) {

        transform: translateY(9px) rotate(45deg);

      }



      .menu-toggle.active span:nth-child(2) {

        opacity: 0;

      }



      .menu-toggle.active span:nth-child(3) {

        transform: translateY(-9px) rotate(-45deg);

      }



      /* Site Footer for multi-page */

      .site-footer {

        background: #2c3e50;

        color: white;

        margin-top: 4rem;

        padding: 3rem 0 1rem;

      }



      .footer-container {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .footer-content {

        display: grid;

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

        gap: 2rem;

        margin-bottom: 2rem;

      }



      .footer-info h3 {

        color: #ecf0f1;

        margin-bottom: 1rem;

        font-size: 1.5rem;

        font-weight: 600;

      }



      .footer-info p {

        color: #bdc3c7;

        line-height: 1.6;

        margin-bottom: 0.5rem;

      }



      .footer-links h4,

      .footer-contact h4 {

        color: #ecf0f1;

        margin-bottom: 1rem;

        font-size: 1.2rem;

        font-weight: 600;

      }



      .footer-links ul {

        list-style: none;

        padding: 0;

      }



      .footer-links li {

        margin-bottom: 0.5rem;

      }



      .footer-links a {

        color: #bdc3c7;

        text-decoration: none;

        transition: color 0.3s ease;

      }



      .footer-links a:hover {

        color: #3498db;

      }



      .footer-contact p {

        color: #bdc3c7;

        margin-bottom: 0.5rem;

        line-height: 1.6;

      }



      .footer-bottom {

        border-top: 1px solid #34495e;

        padding-top: 1rem;

        text-align: center;

      }



      .footer-bottom p {

        color: #95a5a6;

        margin: 0;

        font-size: 0.9rem;

      }



      @media (max-width: 768px) {

        .footer-content {

          grid-template-columns: 1fr;

          gap: 1.5rem;

        }

        

        .footer-info,

        .footer-links,

        .footer-contact {

          text-align: center;

        }

      }



      /* Hero Section for index page */

      .hero-section {

        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

        color: white;

        padding: 4rem 0;

        text-align: center;

      }



      .hero-section .container {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 1rem;

      }



      .hero-title {

        font-size: 3rem;

        font-weight: 700;

        margin-bottom: 1rem;

      }



      .hero-subtitle {

        font-size: 1.5rem;

        font-weight: 300;

        margin-bottom: 1rem;

        opacity: 0.9;

      }



      .hero-description {

        font-size: 1.2rem;

        margin-bottom: 2rem;

        opacity: 0.8;

      }



      .hero-button {

        display: inline-block;

        background: #ff6b6b;

        color: white;

        padding: 1rem 2rem;

        text-decoration: none;

        border-radius: 50px;

        font-weight: 600;

        transition: all 0.3s ease;

      }



      .hero-button:hover {

        background: #ff5252;

        transform: translateY(-2px);

        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);

      }



      /* 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;
        }
      }



      /* 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;

      }

      /* Responsive design for multi-page */

      @media (max-width: 768px) {

        .site-header .header-content {

          flex-direction: row;

          justify-content: space-between;

          align-items: center;

        }





        .site-nav ul {

          position: fixed;

          top: 0;

          left: 0;

          width: 100%;

          height: 100vh;

          background: #5d3a09;

          flex-direction: column;

          justify-content: center;

          align-items: center;

          gap: 12px;

          transform: translateX(-100%);

          transition: transform 0.3s ease;

          z-index: 1000;

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

        }



        .nav-menu.active {

          transform: translateX(0);

        }



        .site-nav a {

          font-size: 1.2rem;

          padding: 1rem 2rem;

          border-radius: 10px;

          width: 200px;

          text-align: center;

        }



        .hero-title {

          font-size: 2rem;

        }



        .hero-subtitle {

          font-size: 1.2rem;

        }



        .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;
        }
      }

      /* ===========================================
         OLIMPOS SIRLARI HEADER STYLES - MYSTICAL OLYMPUS STYLE
         =========================================== */
      
      .olimpos-header {
        background: linear-gradient(135deg, #000033 0%, #1a1a4a 50%, #2d1b69 100%);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 2px solid rgba(128, 255, 0, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      }
      
      .olimpos-header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
      }
      
      .olimpos-branding {
        flex-shrink: 0;
      }
      
      .olimpos-title {
        margin: 0;
        font-size: 2.5rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
      }
      
      .olimpos-title a {
        color: #80ff00;
        text-decoration: none;
        background: linear-gradient(45deg, #80ff00, #33ffdd, #ff0080);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: olimposGradientShift 3s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(128, 255, 0, 0.5);
        transition: all 0.3s ease;
      }
      
      .olimpos-title a:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(128, 255, 0, 0.8));
      }
      
      .olimpos-nav {
        flex: 1;
        display: flex;
        justify-content: center;
        max-width: 70%;
      }
      
      .olimpos-nav-menu {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        max-width: 100%;
      }
      
      .olimpos-nav-link {
        display: block;
        padding: 0.5rem 0.8rem;
        color: #33ffdd;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.8rem;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(51, 255, 221, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
      }
      
      .olimpos-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
          transparent 0%, 
          rgba(128, 255, 0, 0.3) 50%, 
          transparent 100%);
        transition: left 0.5s ease;
      }
      
      .olimpos-nav-link:hover {
        color: #80ff00;
        background: rgba(128, 255, 0, 0.1);
        border-color: #80ff00;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(128, 255, 0, 0.3);
      }
      
      .olimpos-nav-link:hover::before {
        left: 100%;
      }
      
      .olimpos-nav-link:active {
        transform: translateY(0);
      }
      
      /* Mobile Menu Toggle Button */
      .olimpos-mobile-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
      }
      
      .hamburger-line {
        display: block;
        width: 25px;
        height: 3px;
        background: linear-gradient(45deg, #80ff00, #33ffdd);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
      }
      
      .olimpos-mobile-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
      
      .olimpos-mobile-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }
      
      .olimpos-mobile-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
      
      /* Mobile Menu Overlay */
      .olimpos-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      
      .olimpos-mobile-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      
      .olimpos-mobile-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 350px;
        height: 100%;
        background: linear-gradient(135deg, #000033 0%, #1a1a4a 50%, #2d1b69 100%);
        border-left: 2px solid rgba(128, 255, 0, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
      }
      
      .olimpos-mobile-overlay.active .olimpos-mobile-menu {
        transform: translateX(0);
      }
      
      .olimpos-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 1.5rem;
        border-bottom: 1px solid rgba(128, 255, 0, 0.2);
      }
      
      .olimpos-mobile-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #80ff00;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        background: linear-gradient(45deg, #80ff00, #33ffdd);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      
      .olimpos-mobile-close {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
      }
      
      .close-line {
        display: block;
        width: 20px;
        height: 2px;
        background: #80ff00;
        margin: 2px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
      }
      
      .olimpos-mobile-close:hover .close-line {
        background: #33ffdd;
        transform: scale(1.1);
      }
      
      .olimpos-mobile-nav {
        padding: 1rem 0;
      }
      
      .olimpos-mobile-nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      
      .olimpos-mobile-nav-menu li {
        margin: 0;
        padding: 0;
      }
      
      .olimpos-mobile-nav-link {
        display: block;
        padding: 1.2rem 1.5rem;
        color: #33ffdd;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(51, 255, 221, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      
      .olimpos-mobile-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
          transparent 0%, 
          rgba(128, 255, 0, 0.2) 50%, 
          transparent 100%);
        transition: left 0.5s ease;
      }
      
      .olimpos-mobile-nav-link:hover {
        color: #80ff00;
        background: rgba(128, 255, 0, 0.1);
        padding-left: 2rem;
        transform: translateX(10px);
      }
      
      .olimpos-mobile-nav-link:hover::before {
        left: 100%;
      }
      
      .olimpos-mobile-nav-link:active {
        transform: translateX(5px);
      }
      
      /* Animations */
      @keyframes olimposGradientShift {
        0%, 100% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
      }
      
      /* Desktop optimization for large screens */
      @media (min-width: 769px) and (max-width: 1200px) {
        .olimpos-header-content {
          padding: 0 0.5rem;
        }
        
        .olimpos-nav-menu {
          grid-template-columns: repeat(3, 1fr);
          grid-template-rows: repeat(3, 1fr);
          gap: 0.4rem;
        }
        
        .olimpos-nav-link {
          padding: 0.4rem 0.6rem;
          font-size: 0.75rem;
        }
        
        .olimpos-title {
          font-size: 2rem;
        }
      }
      
      /* Responsive Design for Header */
      @media (max-width: 768px) {
        .olimpos-header-content {
          justify-content: space-between;
          padding: 0 1rem;
        }
        
        .olimpos-nav {
          display: none;
        }
        
        .olimpos-mobile-toggle {
          display: flex;
        }
        
        .olimpos-title {
          font-size: 1.8rem;
        }
      }
      
      @media (max-width: 480px) {
        .olimpos-title {
          font-size: 1.5rem;
        }
        
        .olimpos-mobile-menu {
          width: 90%;
        }
        
        .olimpos-mobile-nav-link {
          padding: 1rem 1.5rem;
          font-size: 1rem;
        }
      }

    /* ===========================================
       OLIMPOS SIRLARI HERO SECTION - MYSTICAL SPLIT LAYOUT
       =========================================== */

    .olimpos-split-hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #000033 0%, #1a1a4a 30%, #2d1b69 70%, #4a1a69 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 2rem 0;
    }

    .olimpos-split-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 80%, rgba(128, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(51, 255, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
      z-index: 1;
    }

    .hero-split-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-split-text {
      animation: slideInLeft 1s ease-out;
    }

    .hero-split-title {
      font-size: 4rem;
      font-weight: 800;
      margin: 0 0 1.5rem 0;
      line-height: 1.1;
      font-family: 'Montserrat', sans-serif;
    }

    .title-line-1 {
      display: block;
      color: #80ff00;
      background: linear-gradient(45deg, #80ff00, #33ffdd, #ff0080);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: olimposGradientShift 3s ease-in-out infinite;
      text-shadow: 0 0 30px rgba(128, 255, 0, 0.5);
    }

    .title-line-2 {
      display: block;
      color: #33ffdd;
      background: linear-gradient(45deg, #33ffdd, #80ff00, #ff0080);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: olimposGradientShift 3s ease-in-out infinite reverse;
      text-shadow: 0 0 30px rgba(51, 255, 221, 0.5);
    }

    .hero-split-subtitle {
      font-size: 1.3rem;
      line-height: 1.6;
      color: #ffffff;
      margin-bottom: 2.5rem;
      opacity: 0.9;
      font-weight: 400;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .highlight-bonus {
      color: #ffd700;
      font-weight: 700;
      background: linear-gradient(45deg, #ffd700, #ffed4e);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
      animation: bonusGlow 2s ease-in-out infinite;
    }

    .hero-split-actions {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .hero-split-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
    }

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

    .hero-split-btn:hover::before {
      left: 100%;
    }

    .hero-split-btn-primary {
      background: linear-gradient(45deg, #80ff00, #33ffdd);
      color: #000033;
      box-shadow: 0 8px 25px rgba(128, 255, 0, 0.3);
    }

    .hero-split-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(128, 255, 0, 0.5);
      background: linear-gradient(45deg, #33ffdd, #80ff00);
    }

    .hero-split-btn-secondary {
      background: transparent;
      color: #33ffdd;
      border-color: #33ffdd;
      box-shadow: 0 8px 25px rgba(51, 255, 221, 0.2);
    }

    .hero-split-btn-secondary:hover {
      background: rgba(51, 255, 221, 0.1);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(51, 255, 221, 0.4);
    }

    .btn-icon {
      font-size: 1.2rem;
      animation: iconPulse 2s ease-in-out infinite;
    }

    .hero-split-image {
      animation: slideInRight 1s ease-out;
      position: relative;
    }

    .hero-split-image-frame {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(128, 255, 0, 0.3),
        inset 0 0 0 1px rgba(51, 255, 221, 0.2);
      background: linear-gradient(45deg, #80ff00, #33ffdd, #ff0080);
      padding: 4px;
    }

    .hero-split-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }

    .frame-corner {
      position: absolute;
      width: 30px;
      height: 30px;
      border: 3px solid #80ff00;
      animation: frameCornerPulse 3s ease-in-out infinite;
    }

    .frame-corner-tl {
      top: -15px;
      left: -15px;
      border-right: none;
      border-bottom: none;
      border-top-left-radius: 10px;
    }

    .frame-corner-tr {
      top: -15px;
      right: -15px;
      border-left: none;
      border-bottom: none;
      border-top-right-radius: 10px;
    }

    .frame-corner-bl {
      bottom: -15px;
      left: -15px;
      border-right: none;
      border-top: none;
      border-bottom-left-radius: 10px;
    }

    .frame-corner-br {
      bottom: -15px;
      right: -15px;
      border-left: none;
      border-top: none;
      border-bottom-right-radius: 10px;
    }

    .lightning-effect {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg,
        transparent 0%,
        rgba(128, 255, 0, 0.1) 25%,
        transparent 50%,
        rgba(51, 255, 221, 0.1) 75%,
        transparent 100%);
      animation: lightningSweep 4s ease-in-out infinite;
      pointer-events: none;
    }

    .floating-split-element {
      position: absolute;
      font-size: 2rem;
      animation: float 6s ease-in-out infinite;
      pointer-events: none;
      z-index: 3;
    }

    .floating-element-1 {
      top: 20%;
      right: -20px;
      animation-delay: 0s;
    }

    .floating-element-2 {
      bottom: 30%;
      left: -30px;
      animation-delay: 2s;
    }

    .floating-element-3 {
      top: 60%;
      right: -40px;
      animation-delay: 4s;
    }

    /* Animations */
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

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

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

    @keyframes bonusGlow {
      0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
      }
      50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
      }
    }

    @keyframes iconPulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
    }

    @keyframes frameCornerPulse {
      0%, 100% {
        opacity: 0.6;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.1);
      }
    }

    @keyframes lightningSweep {
      0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
      }
      50% {
        opacity: 1;
        transform: translateX(100%);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      33% {
        transform: translateY(-20px) rotate(5deg);
      }
      66% {
        transform: translateY(10px) rotate(-3deg);
      }
    }

    /* Mobile Responsive Design */
    @media (max-width: 768px) {
      .hero-split-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
      }

      .hero-split-title {
        font-size: 2.5rem;
      }

      .hero-split-subtitle {
        font-size: 1.1rem;
      }

      .hero-split-actions {
        flex-direction: column;
        gap: 1rem;
      }

      .hero-split-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
      }

      .hero-split-img {
        height: 300px;
      }

      .floating-split-element {
        font-size: 1.5rem;
      }

      .floating-element-1 {
        right: -10px;
      }

      .floating-element-2 {
        left: -15px;
      }

      .floating-element-3 {
        right: -20px;
      }
    }

    @media (max-width: 480px) {
      .olimpos-split-hero {
        min-height: 80vh;
        padding: 1rem 0;
      }

      .hero-split-title {
        font-size: 2rem;
      }

      .hero-split-subtitle {
        font-size: 1rem;
      }

      .hero-split-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
      }

      .hero-split-img {
        height: 250px;
      }

      .frame-corner {
        width: 20px;
        height: 20px;
      }

      .frame-corner-tl,
      .frame-corner-tr {
        top: -10px;
      }

      .frame-corner-bl,
      .frame-corner-br {
        bottom: -10px;
      }
    }

    /* ===========================================
       OLIMPOS SIRLARI PUZZLE SECTION - NUMBER SEQUENCE GAME
       =========================================== */

    .puzzle-section {
      padding: 4rem 0;
      background: linear-gradient(135deg, #000033 0%, #1a1a4a 30%, #2d1b69 70%, #4a1a69 100%);
      position: relative;
      overflow: hidden;
    }

    .puzzle-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 20%, rgba(128, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(51, 255, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
      z-index: 1;
    }

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

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

    .puzzle-title {
      font-size: 3rem;
      font-weight: 800;
      margin: 0 0 1rem 0;
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(45deg, #80ff00, #33ffdd, #ff0080);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: olimposGradientShift 3s ease-in-out infinite;
      text-shadow: 0 0 30px rgba(128, 255, 0, 0.5);
    }

    .title-icon {
      font-size: 3.5rem;
      margin-right: 1rem;
      animation: iconFloat 2s ease-in-out infinite;
    }

    .puzzle-description {
      font-size: 1.3rem;
      line-height: 1.6;
      color: #ffffff;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .puzzle-game-container {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 20px;
      padding: 2rem;
      border: 2px solid rgba(128, 255, 0, 0.3);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(10px);
    }

    .game-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .game-stats {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #33ffdd;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: #80ff00;
      text-shadow: 0 0 10px rgba(128, 255, 0, 0.5);
    }

    .game-reset-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.5rem;
      background: linear-gradient(45deg, #ff0080, #ff6b35);
      color: #ffffff;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
    }

    .game-reset-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 0, 128, 0.5);
      background: linear-gradient(45deg, #ff6b35, #ff0080);
    }

    .btn-icon {
      font-size: 1.2rem;
      animation: iconSpin 2s linear infinite;
    }

    .puzzle-board {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 0.5rem;
      max-width: 400px;
      margin: 0 auto 2rem auto;
      background: rgba(0, 0, 0, 0.2);
      padding: 1rem;
      border-radius: 15px;
      border: 2px solid rgba(51, 255, 221, 0.3);
    }

    .puzzle-square {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a1a4a, #2d1b69);
      border: 2px solid rgba(128, 255, 0, 0.3);
      border-radius: 10px;
      font-size: 1.5rem;
      font-weight: 700;
      color: #80ff00;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      user-select: none;
    }

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

    .puzzle-square:hover {
      transform: scale(1.05);
      border-color: #80ff00;
      box-shadow: 0 0 20px rgba(128, 255, 0, 0.4);
      background: linear-gradient(135deg, #2d1b69, #1a1a4a);
    }

    .puzzle-square:hover::before {
      left: 100%;
    }

    .puzzle-square.empty {
      background: transparent;
      border: 2px dashed rgba(128, 255, 0, 0.2);
      cursor: default;
    }

    .puzzle-square.empty:hover {
      transform: none;
      box-shadow: none;
    }

    .puzzle-square.correct {
      background: linear-gradient(135deg, #80ff00, #33ffdd);
      color: #000033;
      border-color: #80ff00;
      animation: correctPulse 0.6s ease-in-out;
    }

    .puzzle-square.selected {
      transform: scale(1.1);
      border-color: #ff0080;
      box-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
      background: linear-gradient(135deg, #ff0080, #ff6b35);
      color: #ffffff;
    }

    .game-message {
      text-align: center;
      font-size: 1.2rem;
      font-weight: 600;
      color: #33ffdd;
      padding: 1rem;
      background: rgba(51, 255, 221, 0.1);
      border-radius: 10px;
      border: 1px solid rgba(51, 255, 221, 0.3);
      animation: messageGlow 2s ease-in-out infinite;
    }

    /* Animations */
    @keyframes iconFloat {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes iconSpin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes correctPulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }

    @keyframes messageGlow {
      0%, 100% {
        text-shadow: 0 0 10px rgba(51, 255, 221, 0.5);
      }
      50% {
        text-shadow: 0 0 20px rgba(51, 255, 221, 0.8);
      }
    }

    /* Mobile Responsive Design */
    @media (max-width: 768px) {
      .puzzle-section {
        padding: 2rem 0;
      }

      .puzzle-container {
        padding: 0 1rem;
      }

      .puzzle-title {
        font-size: 2.5rem;
      }

      .puzzle-description {
        font-size: 1.1rem;
      }

      .puzzle-game-container {
        padding: 1.5rem;
      }

      .game-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
      }

      .game-stats {
        gap: 1.5rem;
      }

      .puzzle-board {
        max-width: 300px;
        gap: 0.3rem;
        padding: 0.8rem;
      }

      .puzzle-square {
        font-size: 1.2rem;
      }

      .game-message {
        font-size: 1rem;
        padding: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .puzzle-title {
        font-size: 2rem;
      }

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

      .puzzle-board {
        max-width: 250px;
        gap: 0.2rem;
        padding: 0.5rem;
      }

      .puzzle-square {
        font-size: 1rem;
      }

      .game-stats {
        gap: 1rem;
      }

      .stat-label {
        font-size: 0.8rem;
      }

      .stat-value {
        font-size: 1.2rem;
      }

      .game-reset-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
    }

    /* ===========================================
       COMPACT FOOTER - OLIMPOS SIRLARI
       =========================================== */

    .compact-footer {
      background: linear-gradient(135deg, #000033 0%, #1a1a4a 50%, #2d1b69 100%);
      border-top: 2px solid rgba(128, 255, 0, 0.3);
      padding: 2rem 0 1rem 0;
      position: relative;
      overflow: hidden;
    }

    .compact-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 20%, rgba(128, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(51, 255, 221, 0.05) 0%, transparent 50%);
      z-index: 1;
    }

    .compact-footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
      position: relative;
      z-index: 2;
    }

    .footer-brand {
      flex: 1;
      min-width: 200px;
    }

    .footer-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
      color: #80ff00;
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(45deg, #80ff00, #33ffdd);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: olimposGradientShift 3s ease-in-out infinite;
    }

    .footer-tagline {
      font-size: 0.9rem;
      color: #33ffdd;
      margin: 0;
      opacity: 0.8;
      font-style: italic;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      flex: 2;
    }

    .footer-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      background: rgba(128, 255, 0, 0.1);
      border: 1px solid rgba(128, 255, 0, 0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

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

    .footer-link:hover {
      color: #80ff00;
      background: rgba(128, 255, 0, 0.2);
      border-color: #80ff00;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(128, 255, 0, 0.3);
    }

    .footer-link:hover::before {
      left: 100%;
    }

    .footer-legal {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      flex: 1;
      min-width: 150px;
    }

    .legal-link {
      color: #33ffdd;
      text-decoration: none;
      font-size: 0.8rem;
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .legal-link:hover {
      color: #80ff00;
      opacity: 1;
      transform: translateY(-1px);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(128, 255, 0, 0.2);
      position: relative;
      z-index: 2;
    }

    .copyright {
      color: #33ffdd;
      font-size: 0.8rem;
      margin: 0;
      opacity: 0.8;
    }

    /* Mobile Responsive Design */
    @media (max-width: 768px) {
      .compact-footer {
        padding: 1.5rem 0 1rem 0;
      }

      .compact-footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
      }

      .footer-brand {
        min-width: auto;
      }

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

      .footer-links {
        flex: none;
        justify-content: center;
        gap: 1rem;
      }

      .footer-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
      }

      .footer-legal {
        flex: none;
        justify-content: center;
        gap: 0.8rem;
      }

      .legal-link {
        font-size: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .compact-footer {
        padding: 1rem 0;
      }

      .footer-title {
        font-size: 1.3rem;
      }

      .footer-tagline {
        font-size: 0.8rem;
      }

      .footer-links {
        gap: 0.8rem;
      }

      .footer-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
      }

      .footer-legal {
        gap: 0.6rem;
      }

      .legal-link {
        font-size: 0.7rem;
      }

      .copyright {
        font-size: 0.75rem;
      }
    }

    