/* Profile Layout */
.profile-header {
    position: relative;
    height: 65vh;
    margin-bottom: 2rem;
}

.profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.profile-avatar {
    position: absolute;
    top: 20vh;
    left: 20px; 
    width: auto;
    height: 40vh;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    border: 2px solid #333;
}

/* Contact / Ticket Form */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Starcraft Regular', sans-serif;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.form-group select, .form-group textarea {
    background: #111;
    border: 1px solid #555;
    color: white;
    padding: 10px;
    font-family: 'Audiowide Regular', sans-serif;
    border-radius: 5px;
}

.ticket-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.send-option {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.send-divider {
    font-weight: bold;
    color: var(--text-silver);
}