* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    text-transform: capitalize;
}

body {
    background-color: #292424;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1818;
    color: #ffffff;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #dd0000;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: rgba(221, 0, 0, 0.2);
    color: #dd0000;
}

nav ul li a.active {
    background-color: #dd0000;
    color: #ffffff;
}

.header {
    margin-top: 70px;
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('https://gcdn.bionluk.com/uploads/message/6669fcca-8c5a-4b5d-9be1-37af1a85fd18.png') center/cover no-repeat;
    overflow: hidden;
}

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

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.headertitle {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0px rgba(221, 0, 0, 0.7);
}

.header-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.headerButton {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.headerButton a {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #dd0000;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
}

.headerButton a:hover {
    transform: translateY(-3px);
    background-color: #ff0000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.hakkimizda {
    background-color: #1a1818;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hakkimizdaTitle {
    font-size: 2rem;
    color: #dd0000;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.hakkimdaHr {
    border: none;
    height: 3px;
    background-color: #dd0000;
    width: 100px;
    margin: 0 auto 2rem;
}

.hakkimdaContentTitle {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hakkimdaContentText {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hakkimdaContentText span {
    display: block;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.hakkimdaContentText b {
    color: #dd0000;
    font-weight: 700;
}

.profiles {
    background-color: #1a1818;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
}

.banner {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.botImage {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #dd0000;
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.botImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commands {
    padding: 5rem 2rem 2rem;
}

.commandTitle {
    font-size: 1.8rem;
    text-align: center;
    color: #dd0000;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.commandList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.command {
    background-color: #292424;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: capitalize;
    border-left: 3px solid #dd0000;
}

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

.commandName {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dd0000;
    margin-bottom: 0.8rem;
}

.commandDescription {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

footer {
    background-color: #1a1818;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 3px solid #dd0000;
    text-transform: capitalize;
}

.footer {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.prefix {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.prefix b {
    color: #dd0000;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 0.8rem 1rem;
    }

    .logo {
        margin-bottom: 0.8rem;
    }

    nav ul {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 0.3rem;
    }

    .header {
        height: 400px;
        margin-top: 110px;
    }

    .headertitle {
        font-size: 2.5rem;
    }

    .header-description {
        font-size: 1rem;
    }

    .banner {
        height: 160px;
    }

    .botImage {
        width: 120px;
        height: 120px;
        top: 100px;
    }

    .commands {
        padding-top: 4rem;
    }
}

@media screen and (max-width: 480px) {
    .header {
        height: 350px;
        margin-top: 180px;
    }

    .headertitle {
        font-size: 2rem;
    }

    .headerButton {
        flex-direction: column;
        width: 100%;
    }

    .headerButton a {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .hakkimizdaTitle,
    .commandTitle {
        font-size: 1.5rem;
    }

    .hakkimdaContentTitle {
        font-size: 1.3rem;
    }

    .botImage {
        width: 100px;
        height: 100px;
        top: 110px;
    }

    .commands {
        padding: 3.5rem 1rem 1.5rem;
    }
}