*,
*::before,
*::after{
box-sizing:border-box;
}

body{
margin:0;
font-family:'Inter',sans-serif;
color:white;
background:radial-gradient(ellipse at top,#1a1a1a 0%,#000000 100%);
}

/* BG GLOW */
.bg-gradient{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:radial-gradient(circle at 50% -20%,rgba(255,0,70,0.17),transparent 65%);
z-index:-1;
pointer-events:none;
}

/* CONTENT */
.main-content{
margin-left:240px;
width:calc(100% - 240px);
display:flex;
flex-direction:column;
align-items:center;
min-height:100vh;
}

.blog-container{
max-width:700px;
width:100%;
padding:20px;
}

/* LOGO */
.logo-box{
text-align:center;
margin:60px 0 20px;
}

.blog-logo{
max-width:300px;
width:100%;
}

.seo-h1{
position:absolute;
left:-9999px;
}

/* POSTS */
.posts{
width:100%;
display:flex;
flex-direction:column;
align-items:center;
padding:0 6px;
}

.post{
margin-bottom:60px;
text-align:center;
width:100%;
max-width:420px;
min-width:0;
}

.card{
width:100%;
max-width:420px;
margin:30px 0;
position:relative;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.7);
}

.card{
aspect-ratio:4/5;
}

.card-img{
width:100%;
display:block;
transition:0.6s;
}

.card-img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:0.6s;
}

.card:hover .card-img{
transform:scale(1.08);
}

.gradient{
position:absolute;
bottom:0;
left:0;
width:100%;
height:40%;
background:linear-gradient(to top,rgba(0,0,0,0.8),transparent);
}

/* CTA */
.date-btn{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
width:60%;
height:60px;
margin:15px auto;
border-radius:999px;
text-decoration:none;
font-weight:600;
color:#fff;
background:linear-gradient(90deg,#ff0046 0%,#ff2d6c 100%);
box-shadow:0 0 25px rgba(255,0,70,0.4),0 10px 30px rgba(255,0,70,0.2);
transition:0.3s;
flex-wrap:wrap;
text-align:center;
padding:0 16px;
}

.date-btn:hover{
transform:scale(1.03);
box-shadow:0 0 40px rgba(255,0,70,0.7),0 15px 40px rgba(255,0,70,0.4);
}

/* VOTES */
.vote-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
display:flex;
}

.vote-overlay .vote-btn{
width:50%;
height:60px;
background:rgba(0,0,0,0.3);
border:none;
color:#fff;
font-size:20px;
backdrop-filter:blur(10px);
}

.votes-row{
position:absolute;
bottom:80px;
left:10px;
right:10px;
display:flex;
gap:8px;
transition:0.4s;
}

.votes-row.move-down{
bottom:15px;
}

.votes-row .votes-badge{
flex:1;
background:rgba(0,0,0,0.5);
padding:6px 10px;
border-radius:20px;
font-size:12px;
display:flex;
align-items:center;
justify-content:center;
gap:5px;
backdrop-filter:blur(10px);
}

.votes-badge.like i{color:#ff0046;}
.votes-badge.dislike i{color:#aaa;}

/* PROFILE */
.profile-gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin:20px 0;
}

.profile-gallery .card{
margin:0!important;
aspect-ratio:4/5;
}

.profile-gallery .card-img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

/* FOOTER */
footer{
width:100%;
max-width:700px;
margin-top:auto;
text-align:center;
font-size:0.7rem;
color:#666;
padding:20px 20px 40px;
border-top:1px solid rgba(255,255,255,0.05);
}

/* PAGINATION */
.pagination{
display:flex;
justify-content:center;
gap:10px;
margin:40px 0;
}

.pagination a{
padding:10px 18px;
background:#1a1a1a;
color:#fff;
text-decoration:none;
border-radius:8px;
}

/* ===== SIDEBAR DESKTOP ===== */

.sidebar{
position:fixed;
top:0;
left:0;
width:240px;
height:100vh;
background:#070707;
display:flex;
flex-direction:column;
justify-content:center; /* 🔥 TO CENTRUJE */
align-items:stretch;
z-index:9999;
border-right:1px solid rgba(255,255,255,0.05);
}

.nav-link{
display:flex;
align-items:center;
gap:14px;
padding:16px 24px;
color:#ccc;
text-decoration:none;
font-size:15px;
transition:0.25s;
}

.nav-link i{
font-size:18px;
width:22px;
text-align:center;
}

.nav-link:hover{
background:linear-gradient(
90deg,
rgba(255,255,255,0.12),
transparent
);
color:#fff;
}

.nav-link.active{
background:linear-gradient(
90deg,
rgba(255,255,255,0.25),
transparent
);
color:#fff;
}

/* ===== MOBILE BOTTOM NAV ===== */

@media(max-width:768px){

.sidebar{
position:fixed;
bottom:0;
top:auto;
width:100%;
height:70px;
flex-direction:row;
justify-content:center;
align-items:center;
gap:40px;
border-top:1px solid rgba(255,255,255,0.08);
background:#070707;
}

.nav-link{
flex-direction:column;
justify-content:center;
align-items:center;
font-size:11px;
gap:4px;
margin:0;
padding:0;
width:auto;
height:auto;
}

.nav-link span{
font-size:10px;
line-height:1;
}

.main-content{
margin-left:0!important;
width:100%!important;
padding-bottom:80px;
}

}

.footer-links{
margin-bottom:15px;
color:#aaaaaa;
font-size:0.7rem;
}

.footer-disclaimer{
font-size:0.65rem;
line-height:1.6;
opacity:0.7;
color:#888;
max-width:800px;
margin:0 auto;
}

.profile-hero{
text-align:center;
max-width:700px;
margin:60px auto 30px auto;
}

.profile-hero h1{
margin-bottom:10px;
}

.profile-cta{
width:100%;
height:60px;
font-size:16px;
margin:20px 0;
display:flex;
align-items:center;
justify-content:center;
border-radius:999px;
}

@media(max-width:768px){
.profile-cta{
height:52px;
font-size:15px;
}
}

.city-btn{
background:transparent;
border:2px solid #ff0046;
color:#fff;
box-shadow:none;
width:100%;
max-width:420px;
text-align:center;
padding:0 20px;
white-space:normal;
line-height:1.2;
min-width:0;
word-break:break-word;
}

@media(max-width:768px){

.blog-container{
padding:20px 16px;
}

.posts{
padding:0 4px;
}

.card{
width:100%;
margin:20px 0;
}

.profile-gallery{
padding:0 4px;
}

p{
padding:0 4px;
}

}
.profile-hero + p{
padding:0 8px;
}

@media(max-width:768px){

.nav-link.active{
background:none;
box-shadow:none;
}

.nav-link:active{
background:none;
box-shadow:none;
}

}
/* ===========================
CITY LIST – NO ZOOM
=========================== */

.city-posts .card-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover !important;
    object-position:center;
    background:none;
}

.city-posts .card:hover .card-img{
transform:none !important;
}

.articles{
width:100%;
max-width:700px;
display:flex;
flex-direction:column;
gap:30px;
}

.article-row{
display:flex;
gap:20px;
align-items:flex-start;
}

.article-img{
width:220px;
height:150px;
object-fit:cover;
border-radius:12px;
}

.article-text h2{
margin:0 0 10px;
}

.article-text p{
opacity:0.8;
line-height:1.5;
}

.read-more{
color:#ff2d6c;
text-decoration:none;
font-weight:600;
}

/* =========================
ARTICLES LIST
========================= */

.articles{
width:100%;
max-width:900px;
margin:40px auto;
display:flex;
flex-direction:column;
gap:40px;
}

.article-card{
display:flex;
gap:20px;
align-items:flex-start;
border-bottom:1px solid rgba(255,255,255,0.08);
padding-bottom:30px;
}

.article-img{
width:220px;
height:160px;
flex-shrink:0;
border-radius:12px;
overflow:hidden;
}

.article-img img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.article-content{
flex:1;
}

.article-content h2{
margin:0 0 10px 0;
font-size:22px;
}

.article-content p{
margin:0 0 12px 0;
opacity:0.85;
line-height:1.6;
}

.read-more{
color:#4da3ff;
text-decoration:none;
font-weight:500;
}

.read-more:hover{
text-decoration:underline;
}

@media(max-width:768px){

.article-card{
flex-direction:column;
}

.article-img{
width:100%;
height:220px;
}

}

/* ARTICLE BUTTON */

.article-btn{
width:200px;
height:50px;
margin:15px 0 0 0;
font-size:14px;
}

/* =========================
ARTICLE TITLE LINK
========================= */

.article-title{
text-decoration:none;
color:#fff;
}

.article-title:hover h2{
text-decoration:underline;
}

/* ARTICLE BUTTON */

.article-btn{
width:200px;
height:50px;
margin:15px 0 0 0;
font-size:14px;
}

/* =========================
RELATED GIRLS
========================= */

.related-girls{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin:20px 0;
}

.related-girl{
text-align:center;
}

.related-img{
width:100%;
border-radius:16px;
aspect-ratio:4/5;
object-fit:cover;
margin-bottom:10px;
}

.related-btn{
width:100%;
height:50px;
font-size:14px;
}

@media(max-width:768px){

.related-girls{
grid-template-columns:1fr;
}

}

.age-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:flex;
align-items:center;
justify-content:center;
z-index:99999;
backdrop-filter:blur(10px);
}

.age-box{
background:rgba(255,255,255,0.05);
padding:40px 30px;
border-radius:20px;
text-align:center;
max-width:350px;
width:90%;
box-shadow:
0 0 40px rgba(255,0,70,0.2),
0 10px 40px rgba(0,0,0,0.6);
}

.age-actions{
display:flex;
gap:10px;
margin-top:20px;
}

.age-actions button{
flex:1;
height:50px;
border:none;
border-radius:999px;
font-weight:600;
cursor:pointer;
color:#fff;
background:linear-gradient(90deg,#ff0046 0%,#ff2d6c 100%);
box-shadow:
0 0 25px rgba(255,0,70,0.4),
0 10px 30px rgba(255,0,70,0.2);
}

/* VIDEO BLUR DEFAULT */
.giph-video{
filter:blur(6px);
transition:0.4s;
}

/* PO NAJECHANIU */
.card:hover .giph-video{
filter:blur(0);
}

/* ===== CLEAN VIEWS (BEZ TŁA) ===== */

.views-clean{
position:absolute;
bottom:15px;
left:15px;
display:flex;
align-items:center;
gap:6px;
font-size:14px;
color:#fff;
z-index:2;
}

/* oko */
.views-clean i{
color:#fff;
font-size:14px;
opacity:0.9;
}

/* liczba */
.views-clean span{
font-weight:500;
}

@media(max-width:768px){

.sidebar a:nth-child(2){
display:none;
}

}

/* ===== MOBILE FULL MENU ===== */

.mobile-menu{
display:none;
}

@media(max-width:768px){

.mobile-menu{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;
z-index:99999;
display:none;
align-items:center;
justify-content:center;
}

.mobile-menu.active{
display:flex;
}

}

.mobile-menu-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
width:90%;
max-width:500px;
}

.mobile-tile{
display:flex;
align-items:center;
justify-content:center;
height:120px;
border-radius:20px;
text-decoration:none;
color:#fff;
font-size:16px;
font-weight:600;
background:rgba(255,255,255,0.05);
box-shadow:
0 0 30px rgba(255,0,70,0.2),
0 10px 30px rgba(0,0,0,0.6);
transition:0.3s;
}

.mobile-tile:active{
transform:scale(0.95);
}

/* ===== MOBILE / DESKTOP SWITCH ===== */

.desktop-only{
display:flex;
}

.mobile-only{
display:none;
}

@media(max-width:768px){

.desktop-only{
display:none;
}

.mobile-only{
display:flex;
}

}

.mobile-tile{
flex-direction:column;
gap:10px;
}

.mobile-tile i{
font-size:24px;
color:#ff2d6c;
}
/* =========================
GIPHS PREVIEW OVERLAY
========================= */

.preview-overlay{
position:absolute;
inset:0;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

z-index:5;

text-align:center;
color:#fff;

pointer-events:none;

transition:opacity .3s ease;
}

/* hover = overlay znika */
.card:hover .preview-overlay{
opacity:0;
}

.preview-overlay i{
font-size:42px;
margin-bottom:14px;

opacity:.95;

animation:mouseFloat 2s ease-in-out infinite;
}

.preview-overlay span{
font-size:15px;
font-weight:600;

padding:10px 18px;
border-radius:999px;

background:rgba(0,0,0,0.45);

backdrop-filter:blur(8px);
-webkit-backdrop-filter:blur(8px);

box-shadow:
0 0 20px rgba(0,0,0,0.35);
}

@keyframes mouseFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-6px);
}

100%{
transform:translateY(0px);
}

}

/* =========================
SINGLE ARTICLE
========================= */

.single-article-hero{
max-width:900px;
margin:0 auto;
padding:0 20px;
}

.breadcrumbs{
margin:10px 0 25px;
font-size:14px;
color:#999;
text-align:center;
}

.breadcrumbs a{
color:#ff2d6c;
text-decoration:none;
}

.breadcrumbs span{
margin:0 6px;
}

.single-article-title{
text-align:center;
margin-bottom:30px;
}

.single-article-title h1{
font-size:52px;
line-height:1.1;
margin:0;
}

.single-article-content{
max-width:800px;
margin:30px auto;
font-size:18px;
line-height:1.9;
color:#ddd;
}

.single-article-content h2{
font-size:34px;
margin-top:50px;
margin-bottom:18px;
color:#fff;
}

.single-article-content h3{
font-size:26px;
margin-top:35px;
margin-bottom:14px;
color:#fff;
}

.single-article-content p{
margin-bottom:22px;
}

.single-article-content a{
color:#ff2d6c;
font-weight:600;
text-decoration:none;
}

.related-articles-grid{
display:grid;
gap:16px;
max-width:800px;
margin:40px auto;
}

.related-article-box{
display:block;
padding:20px;
border-radius:18px;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
color:#fff;
text-decoration:none;
font-weight:700;
transition:0.25s;
}

.related-article-box:hover{
border-color:#ff2d6c;
background:rgba(255,255,255,0.07);
transform:translateY(-2px);
}

@media(max-width:768px){

.single-article-title h1{
font-size:34px;
}

.single-article-content{
font-size:16px;
}

.single-article-content h2{
font-size:28px;
}

.single-article-content h3{
font-size:22px;
}

}

.related-title{
text-align:center;
font-size:32px;
margin:50px 0 25px;
}

/* ===== LANGUAGE DROPDOWN ===== */

.lang-dropdown-wrap{
position:relative;
margin-top:16px;
padding:0 18px;
}

.lang-toggle-btn{
width:100%;
height:46px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.08);
background:rgba(255,255,255,0.04);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
font-size:14px;
font-weight:600;
cursor:pointer;
transition:0.25s;
outline:none;
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
}

.lang-toggle-btn:hover{
background:rgba(255,255,255,0.08);
transform:translateY(-1px);
box-shadow:
0 0 20px rgba(255,0,85,0.18);
}

.lang-dropdown{
position:absolute;
top:65px;
left:10px;
right:10px;
background:#0d1017;
border-radius:22px;
padding:10px;
display:none;
flex-direction:column;
gap:10px;
box-shadow:
0 10px 40px rgba(0,0,0,0.45);
z-index:999;
border:1px solid rgba(255,255,255,0.05);
}

.lang-dropdown.active{
display:flex;
}

.lang-dropdown a{
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
text-decoration:none;
color:#fff !important;
font-weight:600;
background:rgba(255,255,255,0.04);
transition:0.2s;
font-size:14px;
}

.lang-dropdown a:hover{
background:#ff0055;
transform:translateY(-1px);
}

.active-lang{
background:#ff0055 !important;
box-shadow:
0 0 20px rgba(255,0,85,0.25);
}

/* ===== MOBILE LANGUAGE ===== */

.mobile-lang-switch{
grid-column:1/-1;
display:flex;
justify-content:center;
gap:10px;
margin-top:10px;
flex-wrap:wrap;
}

.mobile-lang-switch a{
padding:12px 18px;
border-radius:999px;
background:#11151d;
border:1px solid rgba(255,255,255,0.06);
text-decoration:none;
color:#fff !important;
font-size:14px;
font-weight:700;
transition:0.25s;
}

.mobile-lang-switch a:hover{
background:#ff0055;
transform:translateY(-2px);
}

.mobile-lang-switch .active-lang{
background:#ff0055 !important;
box-shadow:
0 0 20px rgba(255,0,85,0.3);
}