/* ============================================
   Support Us App — Premium Gold Aesthetic
   ============================================ */

.support-app
{
    min-height: 100%;
    background-color: #1a1a2e;
    color: #f5f5f5;
    font-family: var(--font-sans);
    padding: 40px 32px;
}

.support-content
{
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Hero */
.support-hero
{
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid #16213e;
}

.support-title
{
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.support-subtitle
{
    font-size: 1.125rem;
    color: #a0a0b0;
    font-weight: 400;
}

/* Sections */
.support-section
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background-color: #16213e;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
}

.support-section-title
{
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 4px;
}

.support-section p
{
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c0c0d0;
}

/* itch.io Embed */
.support-embed
{
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.support-embed iframe
{
    max-width: 100%;
    border: 2px solid #ffd700;
    border-radius: var(--radius-md);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

/* Buttons */
.support-btn
{
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.support-btn--primary
{
    background-color: #ffd700;
    color: #1a1a2e;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.support-btn--primary:hover
{
    background-color: #e6c200;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* List */
.support-list
{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-list li
{
    font-size: 0.9375rem;
    color: #c0c0d0;
    padding-left: 20px;
    position: relative;
}

.support-list li::before
{
    content: '✦';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Responsive */
@media (max-width: 640px)
{
    .support-app
    {
        padding: 24px 20px;
    }

    .support-title
    {
        font-size: 1.5rem;
    }
}
