body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            background-color: #f4f4f4;

        }

        .container {
            width: 100%;
            max-width: 1000px;
            margin: 20px auto;
            padding: 10px;
        }

        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }

        .search-container {
            margin: 20px 0;
            text-align: center;
        }

        .search-input {
            width: 60%;
            max-width: 400px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            margin-bottom: 50px;
        }

        .gallery-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        .gallery img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .play-button {
            opacity: 1;
        }

        .progress-bar {
            width: 100%;
            height: 20px;
            background-color: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
            margin-top: 10px;
            position: relative;
            text-align: center;
            font-size: 12px;
            color: white;
            font-weight: bold;
        }

        .progress-bar div {
            height: 100%;
            width: 0;
            background-color: red;
            transition: width 0.5s ease, background-color 0.5s ease;
            text-align: center;
            line-height: 20px;
        }

        .visitor-box {
            margin-top: 10px;
            padding: 5px 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
            font-size: 14px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .online-indicator {
            width: 10px;
            height: 10px;
            background-color: green;
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .play-button:hover {
            background: linear-gradient(90deg, #0056b3, #0099ff);
        }

        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
                .menu-container {
            width: 1000px;
            max-width: 100%;
			background: #022f50;
            overflow-x: auto; 
            white-space: nowrap; 
            padding: 10px 0; 
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
        }

        .menu {
            display: inline-block; 
        }

        .menu img {
            width: 50px;
            height: 50px;
            margin: 0 10px;
            transition: transform 0.3s; 
        }

        .menu img:hover {
            transform: scale(1.1); 
        }
        

        .footer {
            position: fixed;
            bottom: 0px;
            left: 50%; 
            transform: translateX(-50%); 
            width: 1000px;
            max-width: 100%; 
            background: linear-gradient(145deg, #007bff, #4da8ff, #0056b3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            margin: 0;
            z-index: 1000;
        }

        
        .footer-menu {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .footer-menu:hover {
            transform: scale(1.1);
        }

        
        .footer-menu img {
            width: 30px;
            height: 30px;
            margin-bottom: 5px;
        }

        
        .footer-menu span {
            font-size: 14px;
            font-weight: bold;
        }

       
        @media (max-width: 768px) {
            .footer-menu img {
                width: 30px;
                height: 30px;
            }

            .footer-menu span {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .footer-menu img {
                width: 30px;
                height: 30px;
            }

            .footer-menu span {
                font-size: 10px;
            }
        }