body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(45deg, green, blue, black, pink);
    background-size: 300% 300%;
    animation: rotateGradient 10s infinite linear;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

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

.container {
    text-align: center;
    animation: fadeIn 2s ease-in;
    padding: 20px;
    padding-bottom: 120px;
    width: 100%;
    max-width: 1200px;
}

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

h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.icon-container {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    animation: fadeIn 2s ease-in;
    z-index: 100;
}

.youtube-icon, .info-icon {
    margin-left: 10px;
    transition: transform 0.3s, filter 0.3s;
}

.youtube-icon img, .info-icon img {
    width: 35px;
    height: 35px;
    cursor: pointer;
    opacity: 0.8;
}

.youtube-icon img:hover, .info-icon img:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in;
    z-index: 99;
}

.footer a {
    color: #00f;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.context-menu {
    display: none;
    position: absolute;
    background: linear-gradient(145deg, #f05454, #ff7675);
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    list-style: none;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-out;
    animation: fadeInMenu 0.2s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes fadeInMenu {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.context-menu ul {
    padding: 0;
    margin: 0;
}

.context-menu li {
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s, color 0.3s, box-shadow 0.2s;
    color: #fff;
    display: flex;
    align-items: center;
}

.context-menu li:hover {
    background-color: #ff4f5e;
    transform: translateX(10px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.context-menu li:active {
    background-color: #e03e47;
    transform: scale(0.98);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

.context-menu li a {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.context-menu li a:hover {
    color: #ffea00;
}

#visitor-count {
    font-size: 0.85rem;
    color: #aaa;
    margin: 5px 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 15px;
        padding-bottom: 100px;
    }
    
    .icon-container {
        top: 5px;
        right: 5px;
    }
    
    .youtube-icon img, .info-icon img {
        width: 28px;
        height: 28px;
    }
    
    .footer {
        padding: 12px 10px;
        font-size: 0.75rem;
    }
    
    .footer p {
        margin: 5px 0;
    }
}

