            .footer {
                background-color: #1f6fcd;
                position: relative;
                padding: 40px 20px 30px;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            }

            .blue-line {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #2563eb, #3b82f6, #1d4ed8);
                box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
            }

            .footer-content {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 5px;
                flex-wrap: wrap;
                background-color: #1a1a1a;
                border-radius: 50px;
                padding: 10px;
                width: fit-content;
            }

            .footer-item {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 160px;
                height: 50px;
                background-color: #1a1a1a;
                border-radius: 50px;
                transition: all 0.3s ease;
                cursor: pointer;
                position: relative;
                overflow: hidden;
            }

            .footer-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
                transition: left 0.5s ease;
            }

            .footer-item:hover::before {
                left: 100%;
            }

            .footer-item:hover {
                background-color: #333;
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            }

            .footer-item a {
                color: white;
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                text-align: center;
                z-index: 1;
                position: relative;
            }

            .footer-item:hover a {
                color: #e0e0e0;
            }

            @media (max-width: 768px) {
                .footer-content {
                    flex-direction: column;
                    gap: 5px;
                    padding: 10px;
                }
                
                .footer-item {
                    width: 180px;
                }
            }
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Arial', sans-serif;
                background: #000000;
                min-height: 100vh;
                padding: 20px;
            }

            .gallery-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 40px 20px;
            }

            .gallery-title {
                text-align: center;
                color: white;
                font-size: 2.5rem;
                margin-bottom: 40px;
                text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            }

            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 25px;
                margin-bottom: 40px;
            }

            .photo-item {
                position: relative;
                border-radius: 15px;
                overflow: hidden;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 8px 25px rgba(255,255,255,0.1);
                background: #1a1a1a;
                padding: 10px;
            }

            .photo-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(255,255,255,0.2);
            }

            .photo-item img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                border-radius: 10px;
                transition: transform 0.4s ease;
            }

            .photo-item:hover img {
                transform: scale(1.1);
            }

            .photo-overlay {
                bottom: 10px;
                left: 10px;
                right: 10px;
                background: linear-gradient(transparent, rgba(0,0,0,0.8));
                color: white;
                padding: 20px 15px 15px;
                border-radius: 0 0 10px 10px;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .photo-item:hover .photo-overlay {
                opacity: 1;
            }

            .photo-title {
                font-size: 1.1rem;
                font-weight: bold;
                margin-bottom: 5px;
            }

            .photo-description {
                font-size: 0.9rem;
                opacity: 0.9;
            }

            /* Стили для слайдера */
            .slider-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.9);
                z-index: 1000;
                display: none;
                align-items: center;
                justify-content: center;
            }

            .slider-container {
                position: relative;
                width: 70vw;
                height: 50vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .slider-image {
                max-width: 100%;
                max-height: 100%;
                width: auto;
                height: auto;
                object-fit: contain;
                border-radius: 10px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.8);
            }

            .slider-nav {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255,255,255,0.2);
                color: white;
                border: none;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                font-size: 1.5rem;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }

            .slider-nav:hover {
                background: rgba(255,255,255,0.3);
                transform: translateY(-50%) scale(1.1);
            }

            .slider-prev {
                left: -80px;
            }

            .slider-next {
                right: -80px;
            }

            .slider-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255,255,255,0.2);
                color: white;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                font-size: 1.2rem;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }

            .slider-close:hover {
                background: rgba(255,255,255,0.3);
                transform: scale(1.1);
            }

            .slider-counter {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(0,0,0,0.7);
                color: white;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 0.9rem;
            }

            @media (max-width: 768px) {
                .gallery-grid {
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 15px;
                }
                
                .gallery-title {
                    font-size: 2rem;
                }
                
                .slider-container {
                    width: 90vw;
                    height: 40vh;
                }
                
                .slider-nav {
                    width: 40px;
                    height: 40px;
                    font-size: 1.2rem;
                }
                
                .slider-prev {
                    left: -60px;
                }
                
                .slider-next {
                    right: -60px;
                }
            }

            @media (max-width: 480px) {
                .slider-container {
                    width: 95vw;
                    height: 35vh;
                }
                
                .gallery-container {
                    padding: 20px 10px;
                }
            }

            .btns {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .play-store-button {
                display: inline-flex;
                margin: 30px;
                align-items: center;
                background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
                color: #000;
                text-decoration: none;
                padding: 12px 24px;
                border-radius: 12px;
                font-weight: 600;
                font-size: 16px;
                box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
                transition: all 0.3s ease;
                border: 2px solid rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(10px);
                z-index: 10;
                overflow: hidden;
            }

            .play-store-button:hover {
                box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
                background: linear-gradient(135deg, #FFED4E 0%, #FF8C00 100%);
            }

            .play-store-button:active {
                box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            }

            .play-store-button::before {
                content: '';
                top: 0;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: left 0.5s ease;
            }

            .play-store-button:hover::before {
                left: 100%;
            }

            .play-icon {
                width: 24px;
                height: 24px;
                margin-right: 12px;
                fill: currentColor;
            }

            .button-text {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .button-subtitle {
                font-size: 12px;
                font-weight: 400;
                opacity: 0.8;
                line-height: 1;
                margin-bottom: 2px;
            }

            .button-title {
                font-size: 18px;
                font-weight: 700;
                line-height: 1;
            }

            .app-store-button {
                display: inline-flex;
                margin: 30px;
                align-items: center;
                background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
                color: #000;
                text-decoration: none;
                padding: 12px 24px;
                border-radius: 12px;
                font-weight: 600;
                font-size: 16px;
                box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
                transition: all 0.3s ease;
                border: 2px solid rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(10px);
                z-index: 10;
                overflow: hidden;        
            }

            .app-store-button:hover {
                box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
                background: linear-gradient(135deg, #FFED4E 0%, #FF8C00 100%);
            }

            .app-store-button:active {
                transform: translateY(0);
                box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            }

            .app-store-button::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;
            }

            .app-store-button:hover::before {
                left: 100%;
            }

            .app-icon {
                width: 24px;
                height: 24px;
                margin-right: 12px;
                fill: currentColor;
            }

            .liquid-image-container {
                position: relative;
                width: 100%;
                border-radius: 10px;
                overflow: hidden;
                background: #222;
                box-shadow: 0 10px 30px rgba(0,255,100,0.3);
            }
            .liquid-canvas2 {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                pointer-events: none; 
            }
            .liquid-canvas {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                pointer-events: none; 
            }
            .game-name {
                color: yellow;
                z-index: 10;
                pointer-events: none;
            }
            .test {
                z-index: 1;
                display: flex;
                flex-direction: column;
                height: 100%;
            }
            .logo {
                display: flex;
                justify-content: center;
            }
            .iframe {
                margin-bottom: 40px;
                display: flex;
                justify-content: center;
            }
            .text {
                z-index: 9999;
                margin-top: 10px;
                font-size: 1.5em;
                display: flex;
                flex-direction: column;
                color: white;
                text-align: center;
            }

            @media (max-width: 600px) {
                .btns {
                    flex-direction: column;
                }
                iframe {
                    width: 100%
                }
            }
            .beneath {
                color: #FF8C00;
            }
            h1 {
                font-size: 30px;
                color: white;
            }
            .wish {
                font-size: 45px;
                color: #FF8C00;
                text-decoration: underline;
            }
            .section {
                position: relative;
                width: 100%;
                min-height: 600px;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
            }
            .info {
                padding: 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                z-index: 999;
            }
            .info h1{
                z-index: 999;
                font-size: 55px;
            }
            .info2 a{
                text-decoration: none;
                color: #FF8C00;
                z-index: 999;
            }
            .info2 {
                display: flex;
                flex-direction: column;
                text-align: center;
                z-index:  999;
                color: white;
                text-decoration: none;
            }
