        body {
            font-family: Arial, sans-serif;
            background: #f4f4f4;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            width: 300px;
            height: 60px;
            background: linear-gradient(90deg, #d7d7d7, #f1f1f1, #d7d7d7);
            border-radius: 30px;
            box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0));
            z-index: 1;
        }

        .slider-handle {
            position: absolute;
            top: 5px;
            left: 5px;
            width: 50px;
            height: 50px;
            background: radial-gradient(circle, #f8f8f8, #c1c1c1);
            border-radius: 50%;
            border: 2px solid #c1c1c1;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 10;
            transition: transform 0.2s ease-in-out;
        }

        .slider-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #717171;
            font-size: 1rem;
            z-index: 2;
            text-align: center;
        }

        .modal-content {
            text-align: center;
            border-radius: 15px;
        }

        .modal-title {
            font-size: 1.5rem;
            color: #333;
            font-weight: bold;
        }

        .modal p {
            font-size: 1rem;
            margin: 15px 0;
        }

        #continueButton {
            background-color: #eb1700;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 1rem;
            border-radius: 5px;
            transition: all 0.3s;
        }

        #continueButton:hover {
            background-color: #b31200;
        }

        .spinner-container {
            display: none;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 3rem;
            height: 3rem;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #eb1700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }
        
        .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

h1 {
    text-align: center;
    font-family: 'Passion One', sans-serif;
    color: #eb1700;
    margin: 0;
    font-size:0.9em;
}