/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif; /* Modern and stylish font */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff; /* White text */
    background: linear-gradient(135deg, #667eea, #764ba2); /* Gradient background */
}

/* Container Styling */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism effect */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* Subtle shadow */
    backdrop-filter: blur(10px); /* Blurring effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 500px;
    width: 100%;
}

/* Fact Text Styling */
.fact {
    margin: 20px 0;
    font-size: 1.5em;
}

/* Button Styling */
button {
    padding: 12px 24px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    background-color: #007BFF; /* Primary color */
    color: white;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Hover Effect */
button:hover {
    background-color: #0056b3; /* Darker shade on hover */
    box-shadow: 0 4px 15px rgba(0, 91, 234, 0.5);
}

/* Audio Controls Styling */
.audio-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Audio Control Buttons */
.audio-controls button {
    margin-right: 10px;
}

/* YouTube Follow Button Styling */
.youtube-follow {
    margin-top: 20px;
}

#follow-button {
    background-color: #FF0000; /* YouTube Red */
}

#follow-button:hover {
    background-color: #CC0000; /* Darker Red on hover */
}

/* Progress Bar Styling */
.progress-bar {
    margin-top: 20px;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-inner {
    width: 0;
    height: 100%;
    background: #007BFF;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
    button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}