

.video-container {
    width: 70%;  /* Make the video container smaller, adjust to fit your layout */
    max-width: 800px;  /* Limit the maximum width */
    margin: 20px auto;  /* Center the video container */
    padding: 10px;
    background-color: #333;  /* Optional: add background color for the video container */
    border-radius: 8px;  /* Optional: rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);  /* Optional: add a subtle shadow */
}

video, iframe {
    width: 100%;  /* Make the video responsive */
    height: auto;  /* Maintain the aspect ratio */
}
/* Body */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;  /* Dark background */
    color: #ddd;  /* Light text */
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Bar */
.header-bar {
    background-color: #1d1d1d;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header h1 {
    font-size: 2rem;
    margin: 0;
}

header nav {
    background-color: #333;
    padding: 5px 15px;
    border-radius: 5px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 15px;
}

header nav ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #8e44ad;  /* Purple color */
    color: #fff;
}

/* Main Content */
.container {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}

#main-content {
    text-align: center;
}

#download-content {
    text-align: center;
}

/* Button Style */
.button {
    background-color: #8e44ad;  /* Purple color */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 300px;
    margin-top: 20px;
    display: inline-block;
}

.button:hover {
    background-color: #9b59b6;  /* Lighter Purple */
    transform: translateY(-3px);  /* Slight upward animation */
}

a {
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #1d1d1d;
    text-align: left;
    padding: 15px;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Tab Switch Animation */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header h1 {
        font-size: 2rem;
    }

    header nav ul li {
        margin-left: 10px;
    }

    .button {
        max-width: 90%;
    }
}

