@font-face {
    font-family: 'Open Sans PX';
    src: url('open-sans-px.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans PX';
    color: rgba(255, 255, 255, 0.39);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    background-color: rgb(13, 13, 13);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgb(25, 25, 25);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease;
}

.login-btn:hover {
    background-color: rgb(30, 30, 30);
}

.login-btn svg {
    color: rgba(255, 255, 255, 0.6);
}

.login-btn:hover svg {
    color: rgba(255, 255, 255, 0.8);
}


.box {
    background-color: rgb(20, 20, 20);
    padding: 2rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.name {
    font-size: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.splash {
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 0.8;
    font-style: italic;
    margin-bottom: -1rem;
    max-width: 300px;
    word-wrap: break-word;
    white-space: pre-wrap;
    line-height: 1.4;
}

.logo {
    width: 300px;
}

.buy, .discord2, .media {
    background-color: rgb(25, 25, 25);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.buy:hover, .discord2:hover, .media:hover {
    background-color: rgb(30, 30, 30);
}

.popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup2 {
    background-color: rgb(20, 20, 20);
    padding: 2rem;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 500px;
}

.popup2 h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.payment {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-scroll {
    max-height: 400px;
    overflow-y: auto;
    gap: 8px;
}

.option {
    text-align: center;
}

.option button {
    background-color: rgb(25, 25, 25);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 100%;
}

.option button:hover {
    background-color: rgb(30, 30, 30);
}

.payment-link {
    display: block;
    background-color: rgb(25, 25, 25);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.payment-link:hover {
    background-color: rgb(30, 30, 30);
}

.reseller-block {
    text-align: left;
    padding: 15px;
    background-color: rgb(25, 25, 25);
    border-radius: 5px;
}

.reseller-title {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.reseller-desc {
    margin-bottom: 10px;
}

.reseller-buttons {
    display: flex;
    gap: 10px;
}

.reseller-btn-wrapper {
    flex: 1;
    margin: 0;
}

.reseller-link {
    display: block;
    padding: 8px;
    font-size: 1rem;
    width: 100%;
    background-color: rgb(40, 40, 40);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    color: rgb(124, 124, 124) !important;
    font-weight: 400 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: background-color 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0;
}

.reseller-link:link,
.reseller-link:visited,
.reseller-link:active {
    color: rgb(124, 124, 124) !important;
    font-weight: 400 !important;
    text-rendering: optimizeLegibility;
}

.reseller-link:hover {
    background-color: rgb(50, 50, 50);
}


.payment-scroll::-webkit-scrollbar {
    width: 8px;
}

.payment-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.payment-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.payment-scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.payment-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.close, .closeresellers {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.close:hover, .closeresellers:hover {
    color: rgba(255, 255, 255, 0.6);
}

.button-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.media-button-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -0.5rem;
}
