/* Global Styles */
body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding: 20px;
}

a {
    color: #ff4500;
}

a:hover {
    color: #dc3700;
}

/* Header Styles */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}



.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .gradient-text {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(270deg, #ff0054, #ffcc00, #00ff00, #00ccff, #ff00ff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 5s ease infinite;
}

.navbar .nav-link {
    color: #fff;
}

.navbar .nav-link:hover {
    color: #ff4500;
}

/* Gradient Text */
.gradient-text {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(270deg, #ff0054, #ffcc00, #00ff00, #00ccff, #ff00ff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.logo {
    font-size: 2rem;
    font-weight: bold;
}

/* Banner Styles */
.banner {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    text-align: center;
}

.welcome-message {
    font-size: 3rem; /* Larger font size for PCs */
    margin-bottom: 20px;
}

.introduction {
    font-size: 1.5rem; /* Larger font size for PCs */
    max-width: 800px;
    margin: 0 auto;
}

.btn-primary {
    background-color: #ff4500;
    border-color: #ff4500;
}

.btn-primary:hover {
    background-color: #dc3700;
    border-color: #dc3700;
}

/* Section Styles */
.section {
    padding: 50px 0;
    background-color: #1a1a1a;
}

.section-title {
    color: #ff4500;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

.bg-dark-section {
    background-color: #1a1a1a;
}

ol {
    list-style-type: decimal;
    margin-left: 20px;
    color: #fff;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #fff;
}

/* Download Section */
.download p, .about p {
    color: #ccc;
    text-align: center;
    margin-bottom: 30px;
}

.download-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    min-width: 180px;
    text-align: center;
    margin-bottom: 10px; /* For spacing between buttons */
}

.about .btn-primary {
    margin: 0 10px; /* Adjust margin as needed */
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

/* Media query for PCs (desktops) */
@media (min-width: 992px) {
    .jumbotron .display-4 {
        font-size: 4rem; /* Increase the font size for PCs */
    }

    .jumbotron .lead {
        font-size: 1.5rem; /* Increase the font size for PCs */
    }
}

