* {
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #000911;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

main {
    color: white;
}

.bot-page-hero {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 56px 24px 24px;
    text-align: center;
}

.bot-page-avatar {
    display: block;
    width: min(220px, 58vw);
    aspect-ratio: 1;
    margin: 0 auto 28px;
    padding: 0;
    background: rgba(52, 152, 219, 0.08);
    border: 4px solid #3498DB;
    border-radius: 18px;
    box-shadow: 0 0 34px rgba(52, 152, 219, 0.2);
    object-fit: contain;
}

.bot-page-title {
    margin: 0;
    color: white;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transform: skewX(-6deg);
}

.bot-page-highlight {
    color: #3498DB;
}

.bot-page-description {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2vw, 1.24rem);
    line-height: 1.7;
}

.add-app-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 48px;
    margin-top: 28px;
    padding: 12px 24px;
    color: #7CCBFF;
    background: rgba(124, 203, 255, 0.12);
    border: 1px solid rgba(124, 203, 255, 0.42);
    border-radius: 8px;
    box-shadow: 0 0 28px rgba(124, 203, 255, 0.1);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.add-app-button:hover {
    background: rgba(124, 203, 255, 0.18);
    border-color: rgba(124, 203, 255, 0.7);
    box-shadow: 0 0 42px rgba(124, 203, 255, 0.24);
    transform: translateY(-2px);
}

.giveaway-preview-section {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
}

.giveaway-preview-main {
    padding-top: 8px;
    padding-bottom: 12px;
}

.giveaway-preview-modal {
    width: 100%;
    padding: 46px 0 0;
}

.giveaway-preview-frame {
    width: min(100%, 420px);
    padding: 7px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(52, 152, 219, 0.32);
    border-radius: 8px;
    box-shadow: 0 0 34px rgba(52, 152, 219, 0.16);
    overflow: hidden;
}

.giveaway-preview-modal .giveaway-preview-frame {
    width: min(100%, 420px);
}

.giveaway-preview-reroll .giveaway-preview-frame {
    width: min(100%, 620px);
}

.giveaway-preview-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}

.comparison-intro {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 34px 24px 0;
    text-align: center;
}

.comparison-title {
    margin: 0;
    color: white;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.15;
}

.comparison-section {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 30px 24px 12px;
}

.comparison-scroll {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.026);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.18);
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th {
    color: #7CCBFF;
    background: rgba(124, 203, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-success {
    color: #36D67C;
    font-size: 1.25rem;
    font-weight: 800;
}

.comparison-fail {
    color: #FF5D6C;
    font-size: 1.25rem;
    font-weight: 800;
}

.requirements-section {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 42px 24px 22px;
    text-align: center;
}

.requirement-list {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(56px, 10vw, 132px);
    row-gap: 52px;
    align-items: center;
}

.requirement-item {
    color: #7CCBFF;
    font-size: clamp(1.15rem, 2.4vw, 1.72rem);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.commands-intro {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 36px 24px 0;
    text-align: center;
}

.command-list {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 30px 24px 76px;
    display: grid;
    gap: 34px;
}

.command-row {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 54px);
    align-items: baseline;
    opacity: 1;
    transform: none;
}

.flow-pending {
    opacity: 0;
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.flow-from-left.flow-pending:not(.flow-visible) {
    transform: translateX(-70px);
}

.flow-from-right.flow-pending:not(.flow-visible) {
    transform: translateX(70px);
}

.flow-from-bottom.flow-pending:not(.flow-visible) {
    transform: translateY(42px);
}

.flow-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.command-name {
    color: #7CCBFF;
    font-size: clamp(1.25rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.command-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.7;
}

.command-muted-note {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.9em;
}

.bot-page-note {
    padding: 0 24px 30px;
    text-align: center;
}

.back-home-section {
    padding: 0 24px 48px;
    text-align: center;
}

footer {
    padding: 24px;
    text-align: center;
    height: 110px;
    background-color: rgb(0, 0, 0);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-left {
    justify-self: end;
    margin-right: 200px;
}

.footer-center {
    justify-self: center;
}

.footer-right {
    justify-self: start;
    margin-left: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

footer p {
    margin: 0;
    color: white;
}

.footer-subtext {
    margin-top: 4px;
    color: rgb(82, 82, 82);
    font-size: 0.65rem;
}

footer a {
    color: #3498DB;
    text-decoration: none;
}

@media (max-width: 760px) {
    .bot-page-hero {
        padding: 40px 20px 18px;
    }

    .command-list {
        padding: 22px 20px 56px;
        gap: 30px;
    }

    .comparison-section {
        padding: 24px 20px 10px;
    }

    .comparison-intro {
        padding: 28px 20px 0;
    }

    .giveaway-preview-section {
        padding: 12px 20px;
    }

    .giveaway-preview-main {
        padding-top: 8px;
        padding-bottom: 10px;
    }

    .giveaway-preview-modal {
        padding: 34px 0 0;
    }

    .giveaway-preview-frame {
        padding: 7px;
    }

    .requirements-section {
        padding: 34px 20px 12px;
    }

    .commands-intro {
        padding: 30px 20px 0;
    }

    .requirement-list {
        margin-top: 34px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .requirement-item {
        margin: 0 auto;
    }

    .command-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    footer {
        height: auto;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-self: center;
        margin: 0;
    }
}
