/*
  =================================
  Style for Support Page
  Created by: Kanibal (and Gemini)
  Date: [8.07.2025]
  Updated: [9.07.2025]
  Description: Maybe it was created with AI, and who cares? I'm not a web designer, im a LuaU coder!
  =================================
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #E0E0E0;
    margin: 0;
    padding: 2rem;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1E1E1E;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

header {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    border-bottom: 1px solid #3a2d47;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #BB86FC;
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.6);
}

.user-text-wrapper {
    text-align: left;
}

.user-text-wrapper h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #BB86FC;
    text-shadow: 0 0 25px rgba(187, 134, 252, 0.9);
}

.header-subtitle {
    color: #a0a0a0;
    margin: 0.25rem 0 0 0;
    font-size: 1rem;
}

main {
    padding: 2rem;
}

.donation-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column h2 {
    color: #E0E0E0;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.donation-button {
    display: block;
    text-decoration: none;
    font-weight: bold;
    color: #BB86FC;
    background-color: transparent;
    border: 1px solid #BB86FC;
    padding: 10px 0;
    text-align: center;
    border-radius: 50px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.7);
}

.donation-button:hover {
    background-color: #BB86FC;
    color: #1E1E1E;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.9);
}

.back-button {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    color: #BB86FC;
    border: 1px solid #BB86FC;
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.7);
}

.back-button:hover {
    background-color: #BB86FC;
    color: #1E1E1E;
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.9);
}

@media (max-width: 600px) {
    .donation-container {
        flex-direction: column;
    }
    
    .button-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}