@font-face {
    font-family: swag;
    src: url('swag.ttf') format('truetype');
}

body {
    margin: 0;
    background: #0a0a0a;
    color: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    color: #ccc;
    letter-spacing: 1px;
    font-family: 'swag', sans-serif;
}

.title2 {
    font-size: 1rem;
    color: #ccc;
    letter-spacing: 1px;
    font-family: 'swag', sans-serif;

    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}


.button {
    display: flex;
    gap: 24px;
    font-size: 1.5rem;
    align-items: center;
}

a {
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    background: #1a1a1a;
    border: 1px solid #333;
    transition: background 0.2s ease, color 0.2s ease;
}

a:hover {
    background: #fff;
    color: #000;
}

.separator {
    width: 1px;
    height: 40px;
    background-color: #333;
}

.discord-button a {
    font-size: 1.2rem;
    color: #7289da;
    border-color: #7289da;
    background: transparent;
}

.discord-button a:hover {
    background: #7289da;
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: #111;
    border: 1px solid #333;
    padding: 24px;
    border-radius: 8px;
    color: #fff;
    font-family: sans-serif;
    width: 300px;
    text-align: left;
}

.modal-content h2, .modal-content h3 {
    margin-top: 0;
    color: #ccc;
}

.modal-content ul {
    padding-left: 20px;
}

.modal-content button {
    margin-top: 20px;
    padding: 6px 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-content button:hover {
    background: #fff;
    color: #000;
}
