        #main-logo {
            cursor: default !important;
            transition: opacity 0.2s;
        }

        .loader-container {
            width: 300px;
            height: 4px;
            background: #333;
            border-radius: 2px;
            margin: 20px 0;
            overflow: hidden;
            display: none;
        }

        .progress-bar {
            width: 0%;
            height: 100%;
            background: #00ff88;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(0,255,136,0.3);
        }

        .easter-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 9999;
        }

        .secret-image {
            max-width: 90%;
            max-height: 90vh;
            display: none;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }
