@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.profile-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.bio {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.link-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.welcome-text {
    margin-top: 30px;
    font-size: 16px;
}

.sub-text {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
}

.ar-text {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #36393f;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    color: #dcddde;
}

.close-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #72767d;
}

.close-btn:hover {
    color: #ffffff;
}

.discord-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discord-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #5865f2;
}

.discord-username {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.discord-tag {
    font-size: 16px;
    color: #b9bbbe;
    margin-bottom: 20px;
}

.discord-about {
    margin-top: 15px;
    text-align: center;
    background-color: #2f3136;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.discord-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3ba55c; 
    margin-left: 8px;
}

.discord-copy {
    background-color: #5865f2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.discord-copy:hover {
    background-color: #4752c4;
}
