
.to-top-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .to-top-title {
            text-align: center;
            margin: 30px 0;
            color: #2c3e50;
        }
        
        .to-top-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .to-top-content p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .to-top-progress-ring {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1000;
			
        }
        
        .to-top-progress-ring:hover {
            transform: scale(1.1);
        }
        
        .to-top-progress-ring circle {
            transition: stroke-dashoffset 0.3s ease;
        }
        
        .to-top-progress-ring text {
            font-size: 14px;
            font-weight: bold;
            fill: #3498db;
        }
        
        .to-top-progress-bg {
            stroke: #e0e0e0;
            fill: none;
        }
        
        .to-top-progress-fill {
            stroke: #3498db;
            fill: none;
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
        }
        
        .to-top-arrow {
            fill: #3498db;
            transition: transform 0.3s ease;
        }
        
        .to-top-progress-ring:hover .to-top-arrow {
            transform: translateY(-2px);
        }
        
        .to-top-hidden {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .to-top-footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: #7f8c8d;
        }
        
        .to-top-highlight {
            color: #e74c3c;
            font-weight: bold;
        }