/*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Arial,sans-serif;
}*/

:root{
    --primary:#ff4fa3;
    --primary-dark:#e6398d;
    --primary-light:#fff0f7;
    --text:#333;
    --bg:#fff6fa;
    --card:#ffffff;
}


body{
    background:var(--bg);
    margin:0;
    padding:0;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 4px 20px rgba(255,79,163,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 40px;
    border-bottom:3px solid var(--primary);
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}

.menu a{
    color:#555;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    border-radius: 30px;
    border: 2px solid #ffd4e7;
    padding: 11px 24px;
}

.menu a:hover{
    color:var(--primary);
}

#menu-toggle{
    display:none;
}

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* CONTENT */

.container{
    max-width:1000px;
    margin:40px auto;
    padding:0 20px;
}

.country-flag{
    width:22px !important;
    height:13px !important;
    background:#fff;
    color: #1c1c1c;
    border-radius:2px;
    font-size: 11px;
    position:absolute;
    border:1px solid #dadada;
    z-index:5;
    font-weight: 900;
    margin-top: 4px;
}


/* ================= CATEGORIES CONTENT ================= */

.tag-menu{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

/* Each menu automatically sizes itself */
.tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    background:white;

    border:1px solid #d8d8d8;

    border-radius:999px;

    text-decoration:none;

    color:#333;

    font-size:15px;

    font-weight:600;

    transition:.25s;

    white-space:nowrap;

}

.tag:hover{

    background:#ff4fa3;

    color:#fff;

    border-color:#ff4fa3;
    text-decoration:none;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(37,99,235,.25);

}

.tag.active{

    background:#111827;

    color:white;

    border-color:#111827;

}

@media(max-width:768px){

    /*body{
        padding:15px;
    }*/

    .tag{

        flex:1 1 calc(50% - 12px);

        justify-content:center;

    }

}

@media(max-width:480px){

    .tag{

        flex:1 1 100%;

    }

}



/* FOOTER */

footer.hidden {
    display: none;
}

.footer{
    background:#fff;
    margin-top:10px;
    border-top:3px solid var(--primary);
    box-shadow:0 -5px 25px rgba(255,79,163,.08);
    padding:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.footer-links a{
    color:#666;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.footer-links a:hover{
    color:var(--primary);
}

.copyright{
    border-top:1px solid #eee;
    padding-top:15px;
    text-align:center;
    color:#888;
    font-size:14px;
}

/* Mobile */
@media (max-width:600px){

    .footer{
        padding:20px 15px;
    }

    .footer-links{
        flex-direction:column;
        gap:12px;
    }

    .footer-links a{
        display:block;
        text-align:center;
    }

}


.container{
    max-width:1000px;
    margin:auto;
    min-height: 5000px;
}

h1{
    text-align:center;
    margin-bottom:35px;
    color:#d81b77;
    letter-spacing:2px;
}

.profile{
    display:flex;
    align-items:center;
    gap:25px;

    background:#fff;
    border-radius:20px;
    padding:20px;
    margin-bottom:22px;

    border:2px solid #ffd4e7;

    box-shadow:0 8px 25px rgba(255,79,163,.08);
    transition:.3s;
}

.profile:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(255,79,163,.18);
}

.avatar{
    flex-shrink:0;
}

.avatar img{
    width:190px;
    height:190px;
    border-radius:50%;
    object-fit:cover;

    border:5px solid var(--primary);

    transition:.3s;
}

.profile:hover .avatar img{
    transform:scale(1.05);
}

.info{
    flex:1;
}

.info h2{
    color:#222;
    margin-bottom:6px;
}

.username{
    color:var(--primary);
    font-weight:700;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.hidden-tag{
    display:none;
}

.toggle-tags{
    margin: 0px 0px 10px 0px;
    background:none;
    border:none;
    color:#ff4f9a;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
}

.toggle-tags:hover{
    text-decoration:underline;
}

.stats{
    display:flex;
    gap:25px;
    font-size:14px;
    color:#555;
}

.stat strong{
    display:block;
    font-size:18px;
    color:#111;
}

.button_model{
    text-decoration:none;
    padding:11px 24px;
    border:none;
    border-radius:30px;
    cursor:pointer;

    color:#fff;
    font-weight:600;

    background:linear-gradient(135deg,#ff4fa3,#ff76ba);

    transition:.3s;
}

.button_model:hover{
    color:#fff;
    text-decoration:none;
    transform:translateY(-2px);

    background:linear-gradient(135deg,#e6398d,#ff4fa3);

    box-shadow:0 8px 20px rgba(255,79,163,.35);
}

/********** POP UP MODAL ***********/
/* Overlay */

/* Smooth transition */
#page-content{
    transition: filter .9s ease;
}

/* Blur background */
#page-content.blur{
    filter: blur(14px);
    pointer-events: none;   /* Prevent clicking behind popup */
    user-select: none;
}

.modal-overlay{

    display:none;

    position:fixed;
    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.75);

    justify-content:center;
    align-items:center;

    z-index:99999;
}

/* Popup */

.modal-box{

    position:relative;

    width:90%;
    max-width:450px;

    background:#fff;

    border-radius:15px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

    animation:popup .35s ease;
}

@keyframes popup{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

.popup-logo{

    width:90px;
    margin-bottom:20px;

}

.modal-box h2{

    font-size:28px;
    margin-bottom:15px;
    color:#333;

}

.modal-box p{
    line-height:1.6;
    margin-bottom:30px;

}

.continue-btn{

    background:red;/*#2b7cff;*/

    color:#fff;

    border:none;

    padding:14px 35px;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;
}

.continue-btn:hover{

    background:#145fd6;

}

.close-popup{

    position:absolute;

    right:15px;
    top:10px;

    border:none;
    background:none;

    font-size:30px;

    cursor:pointer;

    color:#777;

}

.close-popup:hover{

    color:#000;

}

.modal-box h4, .modal-box .agreement-terms{
    margin: 10px 0px 10px 0px;
}

.agreement-terms, .warnings{
    font-size: 12px;
    color:#666;
    line-height: 16px;
}
@media(max-width:600px){

    .modal-box{

        padding:25px;

    }

    .modal-box h2{

        font-size:24px;

    }

}

#gallery-loader{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:30px;
    color:#666;
    gap:12px;
}

.spinner{
    width:42px;
    height:42px;
    border:4px solid #ffd5e8;
    border-top:4px solid #ff4fa3;
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@media(max-width:700px){

    .header{
        padding:15px 20px;
        flex-wrap:wrap;
    }

    .hamburger{
        display:block;
    }

    .menu{
        display:none;
        width:100%;
        flex-direction:column;
        margin-top:15px;
    }

    .menu a{
        color:#555;
        text-decoration:none;
        font-weight:600;
        transition:.3s;
        border-radius: 30px;
        border: 2px solid #ffd4e7;
        padding: 11px 24px;
        margin: 3px;

    }


    #menu-toggle:checked ~ .menu{
        display:flex;
    }

    .profile{
        flex-direction:column;
        text-align:center;
    }

    .stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .button_model{
        width:100%;
    }


}
