/* =====================================================
   BUTTONS & FORMS
   All button styles, form elements, inputs
===================================================== */

/* ===============================
   BUTTONS
================================ */

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1a1a, #ff4400);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,26,26,0.4);
}

.btn-primary:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 25px rgba(255,26,26,0.6);
}

.btn-secondary {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #3a3a3a;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(255,26,26,0.3);
}

.btn-danger {
    background: rgba(255,26,26,0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-danger:hover {
    background: rgba(255,26,26,0.4);
    box-shadow: 0 0 15px rgba(255,26,26,0.4);
}

.btn.small {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-small {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    font-weight: 600;
}

.btn-glow {
    box-shadow: 0 0 18px rgba(255,26,26,0.5);
}

.btn-logout {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* ===============================
   FORM ELEMENTS
================================ */

.upload-box {
    max-width: 720px;
    margin: 30px auto 40px;
    padding: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(20, 10, 10, 0.85);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(255, 26, 26, 0.4),
        0 0 30px rgba(255, 26, 26, 0.2);
}

.upload-box input,
.upload-box select {
    flex: 1 1 180px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 26, 26, 0.3);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
}

.upload-box input::placeholder {
    color: #aaa;
}

.media-card textarea {
    background: rgba(0,0,0,.6);
    border: 1px solid rgba(255,26,26,.4);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-family: inherit;
    line-height: 1.6;
    width: 100%;
}

.media-card.agb-edit-card textarea {
    width: 100%;
    min-height: 220px;
    resize: vertical;

    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,26,26,0.4);
    border-radius: 10px;

    padding: 14px;
    color: #fff;
    font-family: inherit;
    line-height: 1.6;
}

.steam-search {
    width: 100%;
    max-width: 420px;
    padding: 14px 16px;
    margin-bottom: 30px;

    font-size: 15px;
    font-weight: 500;

    color: #ffffff;
    background: rgba(255,255,255,0.10);

    border-radius: 12px;
    border: none;
    outline: none;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 8px 30px rgba(0,0,0,0.35);
}

.steam-search::placeholder {
    color: rgba(255,255,255,0.55);
}

.form-hint {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.logout-form {
    display: inline;
}
