/* ============================================
   FAY.DAR Contact Page
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 20px;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #5865f2;
}

.status-online {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #3ba55c;
    border-radius: 50%;
    border: 4px solid #1a1a2e;
}

h1 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.username {
    color: #b9bbbe;
    font-size: 1rem;
    margin-bottom: 15px;
}

.bio {
    color: #dcddde;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}

.age {
    color: #72767d;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865f2;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-btn svg {
    width: 24px;
    height: 24px;
}

.info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item .label {
    color: #b9bbbe;
    font-size: 0.9rem;
}

.info-item .value {
    color: #fff;
    font-weight: 600;
}

.footer {
    color: #72767d;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .discord-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Animation
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.6s ease;
}
