/**
 * POLSKI | POLISH:
 * Wszelkie prawa zastrzeżone © 2025 ShiroeBot.xyz.
 *
 * Niniejszy kod jest własnością ShiroeBot.xyz i stanowi chroniony materiał autorski.
 * Kopiowanie, rozpowszechnianie, modyfikowanie, dekompilacja lub wykorzystywanie jakiejkolwiek części
 * tego kodu w jakiejkolwiek formie, zarówno komercyjnej, jak i niekomercyjnej, bez uprzedniej pisemnej
 * zgody autora jest surowo zabronione.
 *
 * Wszelkie naruszenie powyższych warunków może skutkować odpowiedzialnością cywilną i karną.
 *
 * Jeśli masz pytania dotyczące warunków licencji, skontaktuj się z autorem na serwerze wsparcia.
*/

/**
 * ANGIELSKI | ENGLISH:
 * All rights reserved © 2025 ShiroeBot.xyz.
 *
 * This code is the property of ShiroeBot.xyz and constitutes a protected copyrighted material.
 * Copying, distribution, modification, decompilation, or usage of any part
 * of this code in any form, whether commercial or non-commercial, without prior written
 * consent from the author is strictly prohibited.
 *
 * Any violation of the above terms may result in civil and criminal liability.
 *
 * If you have any questions regarding the licensing terms, please contact the author on the support server.
*/

.main-title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: -15px;
}

.subtitle {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
    flex-wrap: nowrap;
}

.stat-box {
    background-color: #232323;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #000000;
    min-width: 180px;
    width: 40%;
    text-align: center;
    flex-shrink: 1;
}

.stat-number {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 16px;
    color: #b9bbbe;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-image {
    display: block;
    margin: 0 auto;
    max-width: 280px;
    border-radius: 15px;
    margin-bottom: 5px;
    margin-top: 22px;
}

.staffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1300px;
    margin: 0 auto;
    gap: 20px;
    justify-content: center;
    align-items: center;
    place-content: center;
}

.staff-box {
    background-color: #232323;
    border-radius: 10px;
    border: 2px solid #000000;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.staff-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    object-fit: cover;
}

.staff-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    word-wrap: break-word;
}

.staff-text {
    font-size: 18px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.staffs-grid,
.staffs-grid * {
    box-sizing: border-box;
}

.staffs-grid {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.staffs-grid.dragging {
    cursor: grabbing;
    user-select: none;
}

@media (max-width: 800px) {
    .staffs-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-inline: 16px;
        justify-content: flex-start;
        align-items: stretch;
        scroll-behavior: auto;
        overscroll-behavior-x: contain;
    }

    .staff-box {
        flex: 0 0 calc(50% - 10px);
        border: 2px solid #000000;
        box-sizing: border-box;
        min-height: 1px;
    }
}

@media (max-width: 570px) {
    .staffs-grid {
        gap: 20px;
        padding-inline: 16px;
        scroll-snap-type: none;
    }

    .staff-box {
        flex: 0 0 auto;
        box-sizing: border-box;
    }
}

.staffs-grid {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

.staffs-grid::-webkit-scrollbar {
    height: 8px;
}

.staffs-grid::-webkit-scrollbar-track {
    background: transparent;
}

.staffs-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-box {
    background-color: #232323;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #000000;
    text-align: left;
}

.feature-title {
    font-size: 24px;
    text-align: center;
    color: #b9bbbe;
    margin-bottom: 10px;
    border-bottom: 2px solid #000000;
}

.feature-text {
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.separator {
    height: 88px;
}

.separator-black {
    height: 3px;
    background-color: #23272a;
    margin: 40px auto;
    width: 80%;
}

@media (max-width: 768px) {
    .stats-container {
        gap: 20px;
        margin: 30px 0;
    }

    .stat-box {
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-title {
        font-size: 22px;
    }

    .bot-image {
        max-width: 230px;
    }
}

@media (max-width: 480px) {
    .stat-box {
        min-width: unset;
        width: 50%;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .feature-title {
        font-size: 20px;
    }
}