/* Main Content */
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    flex-direction: column;
}

.button-container {
    margin-top: 20px;
    padding: 20px;
    width: 350px;
    background: linear-gradient(145deg, #444, #222);
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), -5px -5px 15px rgba(100, 100, 100, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.button-container:hover {
    transform: scale(1.1);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.7), -10px -10px 25px rgba(100, 100, 100, 0.3);
}

.action-button {
    padding: 20px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: none;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: color 0.3s;
}

.action-button:hover {
    color: #00aaff;
}

/* Media Queries */
@media (max-width: 768px) {
    .button-container {
        width: 90%;
    }

    .twitch-button {
        width: 50px;
        height: 50px;
    }

    .modal {
        width: 90%;
        height: auto;
    }
}
