@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #17171A;
    color: #BBB;
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.center-cluster {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 24px; */
    /* padding-block: 32px; */
    align-items: center;
    text-align: center;
}

.header-subtitle {
    font-weight: 500;
    font-size: 14px;
    color: #BBB;
    margin: 0;
}

.header-title {
    font-weight: 900;
    font-size: 54px;
    margin: 5px 0;
    background: linear-gradient(to bottom, #FFFFFF, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 38.7px rgba(255, 255, 255, 0.25);
    margin-top: -2px;
    margin-bottom: -2px;
}

.header-description {
    max-width: 800px;
    font-weight: 300;
    font-size: 17px;
    color: #BBB;
    margin: 0 0 10px;
    text-wrap: balance;
}

.button-group {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(48, 48, 51, 0.75);
    border: 1px solid #3F444D;
    padding: 6px 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    position: relative;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button-text {
    background: linear-gradient(to bottom, #FFFFFF, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button:hover {
    background-color: rgba(48, 48, 51, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.badge {
    background-color: rgba(21, 255, 0, 0.2);
    padding: 2px 8px;
    margin-left: 8px;
    font-weight: 800;
    font-size: 10px;
    color: #61EA71;
    border-radius: 4px;
}

.badge.soon {
    background-color: rgba(0, 111, 255, 0.2);
    color: #61C1EA;
}

@media (max-width: 1024px) and (min-width: 601px) {
    .header-subtitle {
        font-size: 13px;
    }

    .header-title {
        font-size: 44px;
        text-shadow: 0 0 28px rgba(255, 255, 255, 0.25);
    }

    .header-description {
        font-size: 16.5px;
        margin: 0 40px;
        text-wrap: unset;
    }

    .button {
        font-size: 14px;
        padding: 6px 14px;
    }

    .button-icon {
        width: 15px;
        height: 15px;
        margin-right: 6px;
    }

    .badge {
        padding: 2px 7px;
        font-size: 9px;
        margin-left: 6px;
    }

    .button-group {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 1499px) and (min-width: 1025px) {
    .header-subtitle {
        font-size: 13.5px;
    }

    .header-title {
        font-size: 48px;
        text-shadow: 0 0 32px rgba(255, 255, 255, 0.25);
    }

    .header-description {
        font-size: 17px;
        margin: 0 60px;
        max-width: 700px;
    }

    .button {
        font-size: 15px;
        padding: 6px 14px;
    }

    .button-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    .badge {
        padding: 2px 7px;
        font-size: 9px;
        margin-left: 6px;
    }

    .button-group {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .header-subtitle {
        font-size: 12px;
    }

    .header-title {
        font-size: 36px;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    }

    .header-description {
        font-size: 16px;
        margin: 0 25px;
        text-wrap: unset;
    }

    .button {
        font-size: 11px;
        padding: 6px 12px;
    }

    .button-icon {
        width: 14px;
        height: 14px;
        margin-right: 6px;
    }

    .badge {
        padding: 2px 6px;
        font-size: 8px;
        margin-left: 6px;
    }

    .button-group {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 1200px;
}

.service-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.service {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgba(37, 37, 37, 1.0);
    border: 1px solid rgba(92, 92, 92, 1.0);
    padding: 15px 20px;
    border-radius: 5px;
    /* font-family: 'Space Grotesk', sans-serif; */
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s, border 0.3s;
    user-select: none;
}

.service:hover {
    background-color: rgba(44, 44, 44, 1.0);
    border: 1px solid rgba(93, 93, 93, 1.0);
}

.service.gamestatus {
    background-color: rgba(0, 111, 255, 0.07);
    border: 1px solid rgba(0, 111, 255, 0.2);
}

.service.gamestatus:hover {
    background-color: rgba(0, 111, 255, 0.12);
    border: 1px solid rgba(0, 111, 255, 0.2);
}

.service.dutylogs {
    background-color: rgba(78, 209, 78, 0.07);
    border: 1px solid rgba(78, 209, 78, 0.2);
}

.service.dutylogs:hover {
    background-color: rgba(78, 209, 78, 0.12);
    border: 1px solid rgba(78, 209, 78, 0.2);
}

.service img {
    width: 64px;
    height: 64px;
    margin-right: 12px;
}

.service-title {
    font-weight: 900;
    font-size: 18px;
    background: linear-gradient(to bottom, #FFFFFF, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    font-weight: 300;
    font-size: 14px;
    color: #BBB;
    font-family: 'Space Grotesk', sans-serif;
}

@media (max-width: 768px) {
    .center-cluster {
        justify-content: flex-start;
        gap: 24px;
        padding-block: 32px;
    }

    .services {
        width: 90%;
        gap: 15px;
        /* padding: 0 15px; */
    }

    .service-row {
        flex-direction: column;
        gap: 15px;
    }

    .service {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .service img {
        width: 48px;
        height: 48px;
        margin: 0 0 12px 0;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 13px;
    }
}
