/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #444;
}

/* Features Section */
.features {
    margin: 20px 0;
}

.features h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 18px;
    padding: 5px 0;
}

/* Control Panel */
#overlay {
    background: rgba(20, 20, 20, 0.9);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
/* Button Styling */
button {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    border: none;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(255, 65, 108, 0.4);
}

/* Hover Animation */
button:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(255, 75, 43, 0.6);
}

/* Button Click Effect */
button:active {
    transform: scale(0.98);
    box-shadow: 0px 3px 8px rgba(255, 75, 43, 0.5);
}

/* Glowing Effect */
@keyframes glowing {
    0% { box-shadow: 0px 0px 5px #ff416c; }
    50% { box-shadow: 0px 0px 20px #ff4b2b; }
    100% { box-shadow: 0px 0px 5px #ff416c; }
}

button.glow {
    animation: glowing 1.5s infinite alternate;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.toggle-switch input {
    display: none;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background-color: #27ae60;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Timer Position Fixed */
#timer {
    font-size: 18px;
    font-weight: bold;
    color: #f1c40f;
    margin-top: 15px;
}

/* Footer */
footer {
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #444;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.windows-alert {
    background-color: rgba(255, 75, 43, 0.1);
    color: #ff4b2b;
    padding: 10px;
    border: 1px solid #ff4b2b;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    margin: 15px auto;
    width: 80%;
}
.glow-container {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.glow-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.6), transparent);
    border-radius: 50%;
    filter: blur(15px);
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.moving-border {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 5px 10px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
}

.moving-border::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid blue;
    border-radius: 5px;
    box-sizing: border-box;
    animation: moveBorder 3s linear infinite;
}

@keyframes moveBorder {
    0% {
        clip-path: inset(0 100% 98% 0);
    }
    25% {
        clip-path: inset(0 0 98% 0);
    }
    50% {
        clip-path: inset(0 0 0 98%);
    }
    75% {
        clip-path: inset(98% 0 0 0);
    }
    100% {
        clip-path: inset(0 100% 98% 0);
    }
}


