:root {
    --primary: linear-gradient(to bottom right, #1b2631, #34495e);
    --secondary: #e67e22; /* Muted orange */
    --text: #ecf0f1; /* Light text color */
    --bg-color: #2c3e50; /* Dark blue-gray */
    --accent: #f39c12; /* Bright accent color */
    --hover-color: #2980b9; /* Hover color for tabs */
}


/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #202020;
    color: #fff;
}

/* Bouncing or Pulsating Effect for Menu Icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@-webkit-keyframes bounceWithColor {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        color: white; /* Default color is white */
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        color: #e74c3c; /* Mid-bounce color */
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        color: #3498db; /* Another color during the bounce */
    }
}

@keyframes bounceWithColor {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        color: white; /* Default color is white */
    }
    40% {
        transform: translateY(-10px);
        color: #e74c3c; /* Mid-bounce color */
    }
    60% {
        transform: translateY(-5px);
        color: #3498db; /* Another color during the bounce */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.verse-video {
    pointer-events: none;
}


.menu-icon {
    display: none;
    font-size: 30px;
    color: white; /* Default color is white */
    cursor: pointer;
    -webkit-animation: bounceWithColor 2s infinite; /* Webkit prefix for mobile browsers */
    animation: bounceWithColor 2s infinite; /* Regular animation */
}

.menu-icon:hover {
    -webkit-animation: none; /* Webkit prefix */
    animation: none;
    color: var(--hover-color);
}

.navbar {
    width: 100%;
    background-color: #f39c12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--secondary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    flex-direction: row;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    padding: 8px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.navbar ul li a:hover {
    background-color: var(--hover-color);
    color: var(--bg-color);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        -webkit-animation: bounceWithColor 2s infinite;
        animation: bounceWithColor 2s infinite;
    }

    .navbar ul {
        flex-direction: column;
        display: none;
        background-color: #202020;
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .navbar ul.active {
        display: block;
    }

    .navbar ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Welcome Section */
.welcome-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    display: flex; /* Flexbox for centering */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
}

.welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.welcome-content h1 {
    font-size: 2.5rem;
    color: #ffcc00;
}

.welcome-content p {
    font-size: 1.2rem;
}

/* Short Message Section */
.message-section {
    padding: 20px;
    background-color: #333;
    text-align: center;
}

.message-content p {
    font-size: 1.2rem;
}

/* Articles Section */
.articles-section {
    padding: 20px 10px;
    background-color: #444;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    width: 100%;
    overflow-x: hidden; /* Disable horizontal scroll */
}

.article-item {
    background-color: #555;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
}

.article-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-item h3 {
    margin-top: 10px;
    color: #ffcc00;
}

/* Media Queries for Smaller Devices */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .article-item {
        margin-bottom: 20px; /* Add spacing between items */
    }
}

.cbn-link {
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Ensure the text color stays as defined in the div */
}

.cbn-link:hover .cbn-promotion {
    background-color: #444; /* Optional: Add a hover effect on the entire block */
}

.cbn-promotion {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.cbn-logo {
    width: 150px;
    height: auto;
    margin-right: 20px;
}


/* Mobile Optimization */
@media (max-width: 768px) {
    .cbn-promotion {
        flex-direction: column;
        text-align: center;
    }

    .cbn-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }

}

/***** TBN Bible Prophecy Section *****/
.tbn-bible-prophecy-section {
    padding: 40px 20px;
    background-color: #333; /* Dark red background */
    text-align: center;
    margin-top: 40px;
}

.tbn-link {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.tbn-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8b0000; /* Gold button color */
    color: var(--text); /* Dark red text for contrast */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tbn-button:hover {
    background-color: #8b0000bb; /* Slightly darker gold on hover */
    transform: scale(1.05); /* Slight zoom effect */
}


.tbn-header h2 {
    font-size: 2rem;
    color: #8b0000; /* Accent color */
    margin-bottom: 15px;
}

.tbn-header p {
    font-size: 1.2rem;
    color: #fff; /* Light text for contrast */
    margin-bottom: 30px; /* Space between intro and videos */
}

.tbn-videos {
    display: flex; /* Use flexbox to align items */
    justify-content: center; /* Center the videos horizontally */
    flex-wrap: wrap; /* Ensure the videos wrap if there are more */
    gap: 20px; /* Add space between the videos */
}

.tbn-videos .responsive-video {
    width: 100%;
    max-width: 500px; /* Limit the maximum size of the video */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .tbn-videos {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .tbn-videos .responsive-video {
        max-width: 100%; /* Full width on mobile */
        height: auto;
    }
}



/* Bible Verses Section */
.verses-section {
    padding: 20px 10px; /* Reduce padding for mobile */
    background-color: #222;
    text-align: center;
}

.verses-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to a single column on mobile */
    gap: 20px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .verses-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on tablets */
    }
}

@media (min-width: 1024px) {
    .verses-grid {
        grid-template-columns: 1fr 1fr 1fr; /* Three columns on larger screens */
    }
}

.verse-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    text-align: left; /* Aligns text to the left for a more traditional look */
}

.verse-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--accent); /* Title color */
}

.verse-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column; /* Stack image/video and text vertically */
    align-items: center; /* Center content for better presentation on mobile */
}

.verse-item img {
    width: 100%;
    max-width: 300px; /* Limit the maximum width */
    height: auto;
    margin-bottom: 10px; /* Space between the image and text */
    border-radius: 5px;
}

.verse-video {
    width: 100%;
    max-width: 500px; /* Limit the maximum width */
    height: auto;
    margin-bottom: 10px; /* Space between the video and text */
    object-fit: cover; /* Ensure the video covers the entire video area */
    border-radius: 5px; /* Optional: Add rounded corners to match your design */
}

/* Watchman Section */
.watchman-section {
    padding: 40px 20px;
    background-color: #333; /* Same background color as other sections */
    text-align: center;
    margin-top: 40px;
}

.watchman-section h2 {
    font-size: 2rem;
    color: #ffcc00; /* Accent color */
    margin-bottom: 15px;
}

.watchman-section p {
    font-size: 1.2rem;
    color: #fff; /* Light text for contrast */
    margin-bottom: 30px; /* Space between intro and videos */
}

.watchman-videos {
    display: flex; /* Use flexbox to align items */
    justify-content: center; /* Center the videos horizontally */
    flex-wrap: wrap; /* Ensure the videos wrap if there are more */
    gap: 20px; /* Add space between the videos */
}

/* Watchman Section Button Styles */
.watchman-links {
    margin-bottom: 30px; /* Space between links and videos */
}

.watchman-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: var(--accent); /* Accent color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cbn-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #2980b9; /* Accent color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.watchman-button:hover {
    background-color: var(--hover-color); /* Change on hover */
}

.cbn-button:hover {
    background-color: #025994;
}

.watchman-videos .responsive-video {
    width: 100%;
    max-width: 600px; /* Limit the maximum size of the video */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .watchman-videos {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .watchman-videos .responsive-video {
        max-width: 100%; /* Full width on mobile */
        height: auto;
    }
}

/*Video Playlist*/
.container {
    display: flex;
    justify-content: center; /* Center the container */
    width: 100%;
    max-width: 1800px; /* Increase the max-width for even larger displays */
    margin-top: 80px;
}

.main-video {
    flex: 8; /* Maximize space for the video player */
    background-color: #181818;
    margin-right: 20px; /* Add space between video and playlist */
}

.main-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.main-video .title {
    margin-top: 15px;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
}

.video-playlist {
    flex: 1; /* Reduce the width of the playlist to the minimum */
    background-color: #202020;
    padding: 15px;
    border-radius: 8px;
}

.video-playlist > p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.2rem;
}

.video-playlist .videos {
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding-right: 10px;
}

.video-playlist .videos::-webkit-scrollbar {
    width: 8px;
}

.video-playlist .videos::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
}

.video-playlist .videos .video {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.video-playlist .videos .video:hover {
    background-color: var(--hover-color);
}

.video-playlist .videos .video.active {
    background-color: var(--secondary);
}

.video img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.video h3 {
    flex-grow: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.video p.time {
    font-size: 0.8rem;
    color: var(--accent);
}

.play-pause-icon {
    width: 24px;
    height: 24px;
}

/* Button Styling */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #ffcc00; /* Button background color */
    color: #333; /* Text color */
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn:hover {
    background-color: #e6b800; /* Darker shade on hover */
    color: #fff; /* Text color on hover */
}

@media (max-width: 1024px) {

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        margin-bottom: 10px; /* Space between buttons on mobile */
    }

    .container {
        flex-direction: column;
    }

    .main-video {
        width: 100%;
    }

    .video-playlist {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .video-playlist .videos {
        height: auto;
    }
}

/***** Club of Rome Section *****/
.club-rome-section {
    padding: 50px 20px;
    background-color: var(--bg-color); /* Dark theme background */
    color: var(--text);
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.club-rome-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Image Styling */
.club-rome-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* Heading Styles */
.club-rome-section h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.club-rome-section h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Paragraph Styling */
.club-rome-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Unordered List Styling */
.club-rome-list {
    list-style-type: disc;
    text-align: left;
    margin: 20px auto;
    padding-left: 20px;
    max-width: 800px;
}

.club-rome-list li {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.youtube-container {
  max-width: 800px;
  margin: 30px auto; /* centers it */
  aspect-ratio: 16 / 9;
}

.youtube-container iframe {
  width: 100%;
  height: 100%;
  border: none; /* removes border */
  display: block;
}



/***** Mobile Optimization *****/
@media (max-width: 768px) {
    .club-rome-section h1 {
        font-size: 2rem;
    }

    .club-rome-section h2 {
        font-size: 1.5rem;
    }

    .club-rome-section p {
        font-size: 1rem;
    }

    .club-rome-list {
        padding-left: 15px;
    }

    .club-rome-list li {
        font-size: 1.2rem;
    }
}

/* Final Message Section */
.final-message-section {
    padding: 40px 20px;
    background-color: #333; /* Background color for the section */
    text-align: center;
    margin-top: 40px; /* Add space between Bible Verses section */
}

.final-message-image {
    width: 100%;
    max-width: 400px; /* Control the maximum size of the image */
    height: auto;
    margin-bottom: 20px; /* Add spacing between the image and the title */
    border-radius: 10px; /* Optional: Add rounded corners */
}

.final-message-section h3 {
    font-size: 1.5rem; /* Adjust font size for the title */
    margin-bottom: 20px; /* Spacing below the title */
    color: #ffcc00; /* Color for the title */
}

.final-message-content p {
    font-size: 1rem; /* Adjust font size for the message text */
    line-height: 1.8;
    color: #fff; /* White text for better contrast */
}

/* Responsive Video */
.responsive-video {
    width: 600px;
    max-width: 600px; /* Ensures the video doesn't exceed the container width */
    height: auto;
    border-radius: 10px; /* Optional: add rounded corners to match your design */
}

.sling-and-stone-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text);
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sling-and-stone-section h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.sling-and-stone-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: justify;
}

.sling-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sling-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .sling-and-stone-section h1 {
    font-size: 2rem;
  }

  .sling-and-stone-section p {
    font-size: 1rem;
    padding: 0 10px;
  }
}


/* Media Queries for Smaller Devices */
@media (max-width: 768px) {
    .final-message-section {
        padding: 20px 10px; /* Reduce padding for mobile devices */
    }

    .final-message-section h3 {
        font-size: 1.5rem; /* Adjust font size for mobile */
    }

    .final-message-content p {
        font-size: 1.2rem; /* Adjust font size for mobile */
    }

    .responsive-video {
        max-width: 100%; /* Adjust width for smaller screens */
        height: auto;
    }

}

/***** Prophecy Cards Section *****/
.prophecy-cards {
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Light background for contrast */
    color: #333; /* Dark text for readability */
    text-align: center;
}

.card-wrapper {
    display: grid; /* Use CSS Grid for rows and columns */
    grid-template-columns: repeat(3, 1fr); /* Three columns per row */
    gap: 10px; /* Space between the cards */
    justify-items: center; /* Center cards horizontally */
}

/* Card Styles */
.card {
    position: relative;
    width: 300px; /* Fixed width for each card */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); /* Light card background */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.prophecy-cards h1 {
    font-size: 3rem;
    color: #8b0000; /* Dark red for emphasis */
    margin-bottom: 20px; /* Space below the title */
    text-align: center;
}

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8b0000; /* Match section header */
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card-wrapper {
        grid-template-columns: repeat(2, 1fr); /* Two columns per row for tablets */
    }
}

@media (max-width: 768px) {
    .card-wrapper {
        grid-template-columns: 1fr; /* One column per row for mobile devices */
    }

    .prophecy-cards h1 {
        font-size: 2rem;
    }

    .card-content h2 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 90%; /* Ensure cards fit smaller screens */
        margin: 0 auto 20px; /* Center cards and add spacing */
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .card-content h2 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}

/***** Modal Styling *****/
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Transparent background */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80%; /* Restrict modal height */
    color: #333;
    text-align: center;
    position: relative;
    overflow-y: auto; /* Add vertical scrolling if content overflows */
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #8b0000;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close:hover {
    color: #8b0000; /* Match theme color */
}

@media screen and (max-width: 768px) {
    .modal-content {
        padding: 10px;
        max-width: fit-content;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }
    
}


/* Footer Styling */
footer {
    background-color: #202020;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

footer p:last-of-type {
    margin-bottom: 0;
    font-size: 1rem;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 10px;
}

.footer-facebook i {
    font-size: 20px;
    color: #ffffff;
    margin-left: 10px; /* space beside email */
    transition: 0.3s ease;
}

.footer-facebook i:hover {
    color: #3b5998; /* Facebook blue */
    transform: scale(1.1);
}

#progress-container {
    width: 80%;
    background-color: #ecf0f1;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 10px;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #f39c12;
    transition: width 0.5s ease;
}

#progress-text {
    font-size: 1rem;
    color: #ecf0f1;
}