* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures the top bar is always above other elements */
}


.top-bar .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffa500;
}

.top-bar .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.top-bar .nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.top-bar .nav-links a:hover {
    color: #ffa500;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ff7e00, #000000);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.hero .download-btn {
    background: #ffa500;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    animation: fadeInUp 1s ease-out;
}

.hero .download-btn:hover {
    background: #ff5500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientAnimation {
    0% {
        background: radial-gradient(circle, #000000, #ff7e00);
    }
}

/* Information Sections */
.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #111;
}

.info-section.alt {
    background-color: #000;
}

.info-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-image {
    flex: 1;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}


.info-text {
    flex: 1;
    color: #fff;
    text-align: left;
    padding: 20px;
}

.info-text h2 {
    font-size: 36px;
    color: #ffa500;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.info-text p {
    font-size: 18px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ffa500;
    text-decoration: none;
    cursor: pointer;
}

/* Link Styling */
a {
    color: #ffa500; /* Orange color for links */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition for color and underline */
    font-weight: 600; /* Bold text for links */
}

a:hover,
a:focus {
    color: #ff5500; /* Darker orange for hover effect */
    border-bottom: 2px solid #ff5500; /* Underline effect on hover */
    outline: none; /* Remove default focus outline */
}

/* Active Link Styling (optional) */
a:active {
    color: #cc4400; /* Even darker orange for active link */
}

/* Plugins Section Styling */
.plugins-section {
    background: #222; /* Dark background to contrast with the hero section */
    color: #fff; /* White text color */
    padding: 60px 20px; /* Padding around the section */
    text-align: center; /* Center align text */
}

.plugins-content {
    max-width: 800px; /* Maximum width for the content */
    margin: 0 auto; /* Center the content */
}

.plugins-content h2 {
    font-size: 36px; /* Larger font size for the heading */
    margin-bottom: 20px; /* Space below the heading */
    color: #ffa500; /* Orange color for heading */
}

.plugins-content p {
    font-size: 18px; /* Font size for the description */
    margin-bottom: 40px; /* Space below the paragraph */
}

.view-plugins-btn {
    background: #ffa500; /* Orange background for the button */
    color: #000; /* Black text color */
    padding: 15px 30px; /* Padding inside the button */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners for the button */
    font-size: 18px; /* Font size for the button text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background 0.3s, transform 0.3s; /* Smooth transition for background color and scaling */
}

.view-plugins-btn:hover {
    background: #ff5500; /* Darker orange for hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

.view-plugins-btn:focus {
    outline: none; /* Remove default focus outline */
}

/* Footer Styling */
.footer {
    background: #111; /* Dark background for the footer */
    color: #fff; /* White text color */
    padding: 20px; /* Padding around the footer */
    font-size: 14px; /* Font size for footer text */
    border-top: 1px solid #333; /* Border at the top of the footer */
    text-align: center; /* Center align text */
    position: relative; /* Relative positioning for the footer */
}

.footer-brand {
    display: flex; /* Flexbox for horizontal layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    margin-bottom: 20px; /* Space below the logo and title */
}

.footer-logo {
    width: 80px; /* Adjust logo width */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and title */
}

.footer-brand h2 {
    font-size: 24px; /* Font size for the title */
    margin: 0; /* Remove margin for title */
    color: #ffa500; /* Orange color for the title */
}

.footer-content {
    display: flex; /* Flexbox for horizontal layout */
    justify-content: space-between; /* Space between columns */
    flex-wrap: wrap; /* Wrap columns on smaller screens */
    max-width: 1200px; /* Maximum width for the content */
    margin: 0 auto; /* Center the content */
}

.footer-links, .footer-about, .footer-contact {
    flex: 1; /* Equal flex for all sections */
    padding: 10px; /* Padding inside each section */
}

.footer-links h3, .footer-about h3, .footer-contact h3 {
    font-size: 18px; /* Font size for headings */
    margin-bottom: 10px; /* Space below the heading */
    color: #ffa500; /* Orange color for headings */
}

.footer-links ul, .footer-contact ul {
    list-style: none; /* Remove bullets from list */
    padding: 0; /* Remove padding */
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px; /* Space below each list item */
}

.footer-links a, .footer-contact a {
    color: #fff; /* White color for links */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s; /* Smooth transition for color */
}

.footer-links a:hover, .footer-contact a:hover {
    color: #ffa500; /* Orange color for links on hover */
}

.footer-about p {
    margin-top: 0; /* Remove margin at the top */
}

.footer-bottom {
    margin-top: 40px; /* Increased space above the bottom text */
    position: absolute; /* Position the footer-bottom */
    bottom: 10px; /* Ensure it is at the bottom */
    left: 0;
    width: 100%; /* Make sure it stretches the full width */
}

.footer-bottom p {
    font-size: 12px; /* Smaller font size for copyright text */
    color: #888; /* Lighter gray color for copyright text */
    margin: 0; /* Remove margin for a cleaner look */
}