@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);
}

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

.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;
}

.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);
}

.close {
    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 {
    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;
}
