        #christmas-countdown {
            font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            padding: 0.5rem 1rem;
            letter-spacing: 0.02em;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: inline-block;
            border-radius: 8px;
            white-space: pre-wrap;
        }

        #christmas-countdown-container {
            text-align: center;
            margin-top: 2rem;
        }


        /* View Counter */
        #view-counter {
            font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            padding: 0.5rem 1rem;
            letter-spacing: 0.02em;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        #view-counter:hover {
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
            transform: translateY(-2px);
        }

        #view-counter-container {
            text-align: center;
            margin-top: 2rem;
            padding-bottom: 2rem;
        }


        /* Visitor Modal */
        .visitor-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1000;
            padding: 2rem;
            overflow-y: auto;
        }

        .visitor-modal.active {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .visitor-modal-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px) saturate(100%);
            -webkit-backdrop-filter: blur(12px) saturate(100%);
            border-radius: 12px;
            padding: 2rem;
            max-width: 900px;
            width: 100%;
            margin-top: 2rem;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
            position: relative;
        }

        .visitor-modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            padding: 1px;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.4),
                rgba(255, 255, 255, 0.1)
            );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .visitor-list {
            max-height: 70vh;
            overflow-y: auto;
            margin-top: 1rem;
        }

        .visitor-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .visitor-item-header {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .visitor-item-header:hover {
            color: rgba(255, 255, 255, 1);
        }

        .expand-indicator {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease;
        }

        .visitor-item.expanded .expand-indicator {
            transform: rotate(180deg);
        }

        .visitor-item-detail {
            color: rgba(255, 255, 255, 0.7);
            margin: 0.25rem 0;
        }

        .visitor-item-detail strong {
            color: rgba(255, 255, 255, 0.85);
            min-width: 100px;
            display: inline-block;
        }

        .hit-count-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .hits-list {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: none;
        }

        .visitor-item.expanded .hits-list {
            display: block;
        }

        .hit-entry {
            background: rgba(0, 0, 0, 0.2);
            border-left: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.8rem;
        }

        .hit-entry-time {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
        }

        @media (max-width: 768px) {
            .visitor-modal-content {
                padding: 1.5rem;
            }
            .visitor-item {
                font-size: 0.75rem;
            }
            .visitor-item-detail strong {
                display: block;
                margin-bottom: 0.25rem;
            }
        }
