/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Apply Poppins font globally */
}

nav .menu li a.active {
    color: #b19cd9; /* Same color as hover */
    font-weight: bold; /* Make it bold */
}

/* Gradient Background */
body {
    background: linear-gradient(to right, #150120, #020f27); /* Purple to Blue gradient */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10; /* Ensure the navbar stays on top */
}


/* Navbar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #160222;
}

nav .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .menu {
    display: flex;
    align-items: center;
    list-style: none;
}

nav .menu li {
    margin-right: 20px;
}

nav .menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

nav .menu li a:hover, nav .menu li a.active {
    color: #b19cd9; /* Discord-like hover color */
    font-weight: bold; /* Make it bold */
}

/* Hamburger menu for mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 4px;
    margin: 4px;
    background-color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav .menu {
        display: none; /* Hide menu items on small screens */
        flex-direction: column;
        width: 100%;
        background-color: #13021d;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px;
        z-index: 100;
    }

    nav .menu li {
        margin: 10px 0;
        text-align: center;
    }

    nav .hamburger-menu {
        display: flex; /* Show hamburger menu on small screens */
    }

    nav .menu.active {
        display: flex; /* Show menu when active */
    }

    .add-bot-btn {
        width: 100%; /* Full-width button on mobile */
        text-align: center;
        margin-top: 20px;
    }
}



/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

/* Logo Styling */
.logo span {
    font-size: 28px; /* Make text a bit bigger */
    font-weight: 600; /* Make the text slightly bolder */
    color: #7289da; /* Make logo text purple like the button */
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 25%; /* Adjust corners for a nice look */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.logo:hover {
    transform: scale(1.1); /* Slightly enlarge logo on hover */
}

.logo img:hover {
    transform: rotate(10deg); /* Add a subtle rotation effect to the logo */
}

/* Logo Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.logo {
    animation: pulse 2s infinite; /* Pulsing effect on the logo */
}

.logo a, .footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.menu {
    display: flex;
    list-style-type: none;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s;
}

.menu a:hover {
    color: #fff;
}

/* Add Bot Button */
.add-bot a {
    padding: 10px 20px;
    background-color: #7289da; /* Discord purple */
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.add-bot a:hover {
    background-color: #5e73b0; /* Darker purple on hover */
}


/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu span {
    font-size: 30px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #222;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 10px 0;
    }

    .menu li {
        margin: 10px 0;
    }

    .hamburger-menu {
        display: block;
    }

    .menu.active {
        display: flex;
    }
}

/* Full Screen Hero Section */
.hero {
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
    height: 100vh; /* Full height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center; /* Center align text */
    overflow: hidden; /* Ensure shapes do not overflow */
}

.hero-small {
    height: 50vh; /* Set height to 50% of the viewport */
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    max-width: 900px; /* Maximum width for content */
    padding: 20px;
    width: 100%;
    z-index: 2; /* Ensure hero content is above particles */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content */
}

.hero-logo {
    max-width: 150px; /* Set a maximum width for the logo */
    margin-bottom: 30px; /* Space between logo and text */
    border-radius: 25%; /* 25% rounded corners */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.add-bot-btn {
    background-color: #7289da; /* Discord purple */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    display: inline-block; /* Ensure the button only occupies the space around the text */
    width: auto; /* Ensure the button does not take up the whole block */
    text-align: center; /* Center align the button */
}

.add-bot-btn i {
    margin-right: 10px;
}

.add-bot-btn:hover {
    background-color: #5a6e91; /* Darker purple on hover */
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-indicator a {
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

.scroll-indicator a:hover {
    color: #ddd;
}

.scroll-indicator span {
    display: inline-block;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape.circle {
    border-radius: 50%;
}

.shape.square {
    border-radius: 5px;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(255, 255, 255, 0.1);
    background: none;
}

.shape.line {
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
}

.shape.h-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation-duration: 8s;
}

.shape-2 {
    width: 75px;
    height: 75px;
    top: 40%;
    left: 80%;
    animation-duration: 10s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 30%;
    animation-duration: 12s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 50%;
    animation-duration: 9s;
}

.shape-5 {
    width: 75px;
    height: 75px;
    top: 60%;
    left: 20%;
    animation-duration: 11s;
}

.shape-6 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 70%;
    animation-duration: 13s;
}

.shape-7 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 90%;
    animation-duration: 7s;
}

.shape-8 {
    width: 75px;
    height: 75px;
    top: 50%;
    left: 40%;
    animation-duration: 14s;
}

.shape-9 {
    width: 100px;
    height: 100px;
    top: 90%;
    left: 10%;
    animation-duration: 15s;
}

.shape-10 {
    width: 50px;
    height: 50px;
    top: 25%;
    left: 70%;
    animation-duration: 8s;
}

.shape-11 {
    width: 75px;
    height: 75px;
    top: 55%;
    left: 15%;
    animation-duration: 10s;
}

.shape-12 {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 60%;
    animation-duration: 12s;
}

.shape-13 {
    width: 50px;
    height: 50px;
    top: 35%;
    left: 85%;
    animation-duration: 9s;
}

.shape-14 {
    width: 75px;
    height: 75px;
    top: 65%;
    left: 25%;
    animation-duration: 11s;
}

.shape-15 {
    width: 100px;
    height: 100px;
    top: 85%;
    left: 50%;
    animation-duration: 13s;
}

.shape-16 {
    width: 100px;
    height: 2px;
    top: 15%;
    left: 30%;
    animation-duration: 14s;
}

.shape-17 {
    width: 100px;
    height: 2px;
    top: 45%;
    left: 70%;
    animation-duration: 15s;
}

.shape-18 {
    width: 100px;
    height: 2px;
    top: 75%;
    left: 40%;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Card Backgrounds */
.feature-cards, .premium-cards {
    background-color: rgba(0, 0, 10, 0.7); /* Dark background for contrast */
    border-radius: 8px;
}

/* Features Section */
.features {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.features h3.subheading {
    font-size: 24px;
    margin-bottom: 20px;
    color: #b19cd9; /* Discord-like color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: none; /* Remove the black background */
}

.feature-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    color: #fff;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7289da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.feature-card h3 i {
    margin-right: 10px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.feature-card p i, .changelog-card ul li i, .premium-card ul li i, .faq-card p i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 5px; /* Adjust margin to align with the first line */
}

.view-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #7289da;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.view-more-btn:hover {
    background-color: #5a6e91;
}

.view-more-btn i {
    margin-right: 10px;
}

/* Banner Section */
.banner {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                url('assets/banner-background.webp') no-repeat center center/cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.banner p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #b19cd9; /* Discord-like color */
    z-index: 2;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.get-started-btn {
    background-color: #7289da; /* Discord purple */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: inline-block; /* Ensure the button only occupies the space around the text */
    width: auto; /* Ensure the button does not take up the whole block */
    z-index: 2;
    position: relative;
}

.get-started-btn i {
    margin-right: 10px;
}

.get-started-btn:hover {
    background-color: #5a6e91; /* Darker purple on hover */
    transform: scale(1.05);
}

.banner .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.banner .shape.circle {
    border-radius: 50%;
}

.banner .shape.square {
    border-radius: 5px;
}

.banner .shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(255, 255, 255, 0.1);
    background: none;
}

.banner .shape.line {
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
}

.banner .shape.h-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.banner .shape-1 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation-duration: 8s;
}

.banner .shape-2 {
    width: 75px;
    height: 75px;
    top: 40%;
    left: 80%;
    animation-duration: 10s;
}

.banner .shape-3 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 30%;
    animation-duration: 12s;
}

.banner .shape-4 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 50%;
    animation-duration: 9s;
}

.banner .shape-5 {
    width: 75px;
    height: 75px;
    top: 60%;
    left: 20%;
    animation-duration: 11s;
}

.banner .shape-6 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 70%;
    animation-duration: 13s;
}

.banner .shape-7 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 90%;
    animation-duration: 7s;
}

.banner .shape-8 {
    width: 75px;
    height: 75px;
    top: 50%;
    left: 40%;
    animation-duration: 14s;
}

.banner .shape-9 {
    width: 100px;
    height: 100px;
    top: 90%;
    left: 10%;
    animation-duration: 15s;
}

.banner .shape-10 {
    width: 50px;
    height: 50px;
    top: 25%;
    left: 70%;
    animation-duration: 8s;
}

.banner .shape-11 {
    width: 75px;
    height: 75px;
    top: 55%;
    left: 15%;
    animation-duration: 10s;
}

.banner .shape-12 {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 60%;
    animation-duration: 12s;
}

.banner .shape-13 {
    width: 50px;
    height: 50px;
    top: 35%;
    left: 85%;
    animation-duration: 9s;
}

.banner .shape-14 {
    width: 75px;
    height: 75px;
    top: 65%;
    left: 25%;
    animation-duration: 11s;
}

.banner .shape-15 {
    width: 100px;
    height: 100px;
    top: 85%;
    left: 50%;
    animation-duration: 13s;
}

.banner .shape-16 {
    width: 100px;
    height: 2px;
    top: 15%;
    left: 30%;
    animation-duration: 14s;
}

.banner .shape-17 {
    width: 100px;
    height: 2px;
    top: 45%;
    left: 70%;
    animation-duration: 15s;
}

.banner .shape-18 {
    width: 100px;
    height: 2px;
    top: 75%;
    left: 40%;
    animation-duration: 16s;
}

/* New Banner Section */
#join-team-banner {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                url('assets/banner-background.webp') no-repeat center center/cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#join-team-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#join-team-banner h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#join-team-banner p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #b19cd9; /* Discord-like color */
    z-index: 2;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.join-team-btn {
    background-color: #7289da; /* Discord purple */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: inline-block; /* Ensure the button only occupies the space around the text */
    width: auto; /* Ensure the button does not take up the whole block */
    z-index: 2;
    position: relative;
}

.join-team-btn i {
    margin-right: 10px;
}

.join-team-btn:hover {
    background-color: #5a6e91; /* Darker purple on hover */
    transform: scale(1.05);
}

/* Bot Statistics Section */
.bot-stats {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.bot-stats h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.stats-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stats-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7289da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.stats-card p {
    font-size: 20px;
    font-weight: bold;
}

.stats-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

/* Tick Marks */
.green-tick {
    color: #7289da; /* Discord purple color for tick marks */
    margin-right: 10px;
}

/* Changelog Section */
.changelog {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.changelog h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.changelog-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.changelog-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    color: #fff;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.changelog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.changelog-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7289da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.changelog-card .changelog-date {
    font-size: 14px;
    color: #b19cd9; /* Secondary color for dates */
    margin-bottom: 10px;
}

.changelog-card ul {
    list-style: none;
    padding: 0;
}

.changelog-card ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.changelog-card ul li i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 5px; /* Adjust margin to align with the first line */
}

/* Team Section */
.team {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.team .subheading {
    font-size: 24px;
    margin-bottom: 40px;
    color: #b19cd9; /* Secondary color */
}

.team-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card .online-status {
    display: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #7289da;
}

.team-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card .social-links a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.team-card .social-links a:hover {
    color: #b19cd9; /* Secondary color on hover */
}

/* Premium Section */
.premium {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.premium h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.premium .subheading {
    font-size: 24px;
    margin-bottom: 40px;
    color: #b19cd9; /* Secondary color */
}

.premium-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: none; /* Remove the black background */
}

.premium-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    color: #fff;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.premium-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7289da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.premium-card h3 i {
    margin-right: 10px;
}

.premium-card ul {
    list-style: none;
    padding: 0;
}

.premium-card ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.premium-card ul li i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 5px; /* Adjust margin to align with the first line */
}

.add-bot-btn, .contact-us-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #7289da;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    text-align: center; /* Center align the button */
    width: auto; /* Ensure the button only takes the space around the text */
    margin-left: auto;
    margin-right: auto;
}

.add-bot-btn i, .contact-us-btn i {
    margin-right: 10px;
}

.add-bot-btn:hover, .contact-us-btn:hover {
    background-color: #5a6e91;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.faq-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    color: #fff;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.faq-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7289da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start; /* Align icon with the first line of the text */
}

.faq-card h3 i {
    margin-right: 10px;
    margin-top: 5px; /* Adjust margin to align with the first line */
}

.faq-card p {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start; /* Align items to the start */
}

.faq-card p i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 5px; /* Adjust margin to align with the first line */
}

.more-faq-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #7289da;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.more-faq-btn i {
    margin-right: 10px;
}

.more-faq-btn:hover {
    background-color: #5a6e91;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #160222;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    border-radius: 25%;
    margin-right: 10px; /* Add margin to create space between the logo and text */
}

.footer-logo span {
    font-size: 24px;
    font-weight: 600;
    color: #7289da;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #b19cd9;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #b19cd9;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #b19cd9;
}

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-logo span {
        font-size: 20px;
    }

    .footer-menu a {
        font-size: 14px;
    }

    .footer-social a {
        font-size: 20px;
    }

    .footer-legal a {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* Contact Us Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9));
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card, .method-card, .form-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover, .method-card:hover, .form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 2rem;
    color: #7289da;
}

.card-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
}

.support-stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(114, 137, 218, 0.2);
    border-bottom: 1px solid rgba(114, 137, 218, 0.2);
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-button.discord {
    background: #7289da;
    color: #ffffff;
}

.contact-button.discord:hover {
    background: #8299e4;
    transform: translateY(-2px);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.method-card {
    text-align: center;
}

.method-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.method-card.email i {
    color: #ea4335;
}

.method-card.twitter i {
    color: #1da1f2;
}

.method-card h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.method-card p {
    color: #99aab5;
    margin: 0 0 1rem 0;
}

.method-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #99aab5;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #99aab5;
}

.status-dot.active {
    background: #57f287;
    box-shadow: 0 0 10px rgba(87, 242, 135, 0.3);
    animation: blink 1s infinite;
}

.method-card.email .status-dot.active {
    display: none;
}

.contact-form-container {
    position: relative;
}

.form-card {
    backdrop-filter: blur(10px);
}

.form-card h3 {
    color: #ffffff;
    margin: 0 0 2rem 0;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #7289da;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: rgba(114, 137, 218, 0.1);
    border: 1px solid rgba(114, 137, 218, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    padding-left: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7289da;
    background: rgba(114, 137, 218, 0.15);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #7289da;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: #8299e4;
    transform: translateY(-2px);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

.contact-section .section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.contact-section .section-header h3 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #b19cd9; /* Secondary color */
    text-align: center;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
}

/* Commands Section */
.commands {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(21, 1, 32, 0.9), rgba(2, 15, 39, 0.9)), 
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.1) 0,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px,
                    transparent 10px
                ),
                repeating-linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.05) 0,
                    rgba(255, 255, 255, 0.05) 1px,
                    transparent 1px,
                    transparent 10px
                );
    color: #fff;
}

.commands h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.command-category-heading {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #7289da;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.command-category-heading i {
    font-size: 32px;
}

.command-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.command-card {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(114, 137, 218, 0.5);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    color: #fff;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.command-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.command-card code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    color: #b19cd9; /* Updated color to match subheading */
    margin-right: 10px;
    flex-shrink: 0;
}

.command-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}
