@import url('https://fonts.maateen.me/bangla/font.css');
body {
    font-family: 'Bangla', sans-serif;
    background-color: #15202B;
    color: #E1E8ED;
    text-align: center;
    margin: 0;
}

.profile-box {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #38444D;
    justify-content: space-between;
}

.profile-info {
    text-align: left;
    flex-grow: 1;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a {
    margin-left: 10px;
    font-size: 18px;
    color: #E1E8ED;
    text-decoration: none;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

.image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    text-align: justify;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.share-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #1A1A1A;
    padding: 20px;
    border-radius: 10px;
    text-align: justify;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: white;
}

.popup img {
    width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

.share-options {
    display: none;
    position: absolute;
    background: #1A1A1A;
    padding: 5px;
    border-radius: 5px;
}

.share-options button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    margin: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.alert-box {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: green;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
