body {
    background-color: #212121;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

header {
    background-color: #ffc107;
    color: #1a1a1a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

h1 {
    text-align: center;
    font-size: 36px;
    margin-top: 100px;
    margin-bottom: 30px;
    padding-left: 60px;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.command {
    display: flex;
    align-items: center;
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    cursor: pointer;
}

.command:hover {
    background-color: #3d3d3d;
}

.code-container {
    display: flex;
    align-items: center;
}

code {
    background-color: #f8c94c;
    padding: 3px 5px;
    border-radius: 5px;
    color: #212121;
    font-weight: bold;
    font-size: 16px;
    margin-right: 5px;
}

.command-description {
    font-size: 18px;
    margin-top: 20px;
    display: none;
}

.command.active .command-description {
    display: block;
}

button {
    background-color: #ffc107;
    border: none;
    border-radius: 5px;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 1.2em;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e0a800;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

nav a:hover {
    background-color: black;
    color: #ffc107;
}

.bot-title {
    display: flex;
    align-items: center;
    margin: 0;
}

.bot-icon {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.bot-name {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
}

.title-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border: 3.5px solid black;
    border-radius: 50%;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info {
    display: flex;
    align-items: center;
}

.bot-info img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    border-radius: 50%;
}

.bot-info a {
    color: #ffd700;
    font-size: 24px;
    text-decoration: none;
}

.footer-column {
    margin-left: 50px;
}

.footer-column h3 {
    color: #ffc107;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
}

.footer-column li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column li a:hover {
    color: #7289DA;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

nav a:hover {
    background-color: black;
    color: #ffc107;
}

.mobile-menu-btn {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu-btn i {
    color: #000000;
    font-size: 1.5em;
}

@media screen and (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        z-index: 998;
        border-radius: 10px;
        margin-right: 10px;
        border: 4px solid black;
        background-color: #f9d327;
        backdrop-filter: blur(20px);
    }

    nav.show {
        display: block;
    }

    nav a {
        display: block;
        margin: 10px;
        padding: 10px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn:hover {
        color: white;
        background-color: #ffc107;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .bot-info {
        margin-bottom: 20px;
    }

    .footer-column {
        margin: 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .bot-info img {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }

    .bot-info a {
        font-size: 18px;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .footer-column li {
        margin-bottom: 8px;
    }
}