body {
    background-image: url('https://media.discordapp.net/attachments/851074585741754398/967052509153738762/Untitled_design_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -100;
}

/* دارک مود برای کادر پروفایل */
#profile-card {
    background-color: #02060c; /* خاکستری تیره */
    color: #f3f4f6; /* متن روشن */
    border: 2px solid #10b981; /* سبز نئونی */
    opacity: 97%;
    transition: all 0.3s ease-in-out;
}

#profile-card:hover {
    background-color: #0c1529; /* کمی تیره‌تر موقع هاور */
    border-color: #059669; /* سبز پررنگ‌تر */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* تیترها و متن */
#profile-card h1 {
    color: #ffffff;
}

#profile-card p {
    color: #d1d5db; /* خاکستری روشن برای متن */
}

#profile-card svg {
    color: #10b981; /* آیکون سبز */
}

/* دکمه دارک مود */
#profile-card button {
    background-color: #10b981;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

#profile-card button:hover {
    background-color: #059669;
}

/* عکس پروفایل */
.profile-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #10b981;
    overflow: hidden;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .profile-image-container {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}
