.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.regular-button {
    padding: 10px 20px;
    background-color: #1d1d23;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    border: 2px solid white;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    width: auto;
}

.regular-button:hover {
    background-color: white;
    color: #1d1d23;
    border-color: #1d1d23;
}

.regular-button:active {
    transform: scale(0.98);
}

.coming-soon-button {
    padding: 10px 20px;
    background-color: #555;
    color: #aaa;
    text-decoration: none;
    font-size: 1.5rem;
    border: 2px solid #aaa;
    border-radius: 6px;
    width: auto;
    cursor: not-allowed;
    pointer-events: none;
}

.coming-soon-button:hover {
    background-color: #555;
    color: #aaa;
    border-color: #aaa;
}

.coming-soon-button:active {
    transform: none;
}
