/* ==========================================
   CYBERMUSE DISCOVER FEED
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--black:#080808;
--dark:#151119;
--gold:#d4af37;
--champagne:#eadfcf;
--white:#fff;
--muted:rgba(255,255,255,.62);
--line:rgba(255,255,255,.11);
}

body{
min-height:100vh;
font-family:'Poppins',sans-serif;
color:white;
background:
linear-gradient(135deg,#08070c,#17121c 60%,#29221f);
}

a{
color:inherit;
text-decoration:none;
}

button{
font:inherit;
}

/* HEADER */

.feedHeader{
height:78px;
padding:0 5%;
display:flex;
align-items:center;
justify-content:space-between;
position:sticky;
top:0;
z-index:100;
background:rgba(8,7,12,.94);
backdrop-filter:blur(18px);
border-bottom:1px solid var(--line);
}

.brand{
display:flex;
align-items:center;
gap:5px;
font-family:'Space Grotesk',sans-serif;
font-weight:700;
letter-spacing:4px;
}

.brand img{
width:48px;
height:48px;
object-fit:contain;
}

.feedNav{
display:flex;
gap:25px;
}

.feedNav a{
font-size:.68rem;
letter-spacing:1.7px;
text-transform:uppercase;
color:rgba(255,255,255,.7);
}

/* PAGE */

.feedPage{
width:min(100%,900px);
margin:auto;
padding:55px 20px 100px;
}

.feedIntro{
margin-bottom:30px;
}

.smallTitle{
font-size:.62rem;
font-weight:600;
letter-spacing:4px;
text-transform:uppercase;
color:#f5d98d;
margin-bottom:10px;
}

.feedIntro h1{
font-family:'Space Grotesk',sans-serif;
font-size:clamp(3rem,8vw,5.5rem);
line-height:.95;
letter-spacing:-3px;
text-transform:uppercase;
}

.feedIntro>p:last-child{
max-width:600px;
margin-top:15px;
line-height:1.7;
font-size:.9rem;
color:var(--muted);
}

/* FILTER */

.feedControls{
display:flex;
gap:8px;
margin-bottom:30px;
}

.feedFilter{
padding:10px 18px;
border:1px solid var(--line);
background:rgba(255,255,255,.04);
color:white;
font-size:.62rem;
font-weight:600;
letter-spacing:1.5px;
text-transform:uppercase;
cursor:pointer;
}

.feedFilter.active{
background:white;
color:#111;
}

/* STATES */

.feedLoading,
.feedEmpty{
padding:60px 20px;
text-align:center;
color:var(--muted);
}

.feedEmpty h2{
font-family:'Space Grotesk',sans-serif;
font-size:2rem;
color:white;
margin-bottom:8px;
}

/* FEED */

.feedGrid{
display:flex;
flex-direction:column;
gap:24px;
max-width:680px;
margin:auto;
}

.feedPost{
overflow:hidden;
background:rgba(255,255,255,.055);
border:1px solid var(--line);
backdrop-filter:blur(18px);
}

/* POST HEADER */

.postHeader{
padding:15px 16px;
}

.postProfile{
display:flex;
align-items:center;
gap:12px;
}

.postAvatar{
width:45px;
height:45px;
border-radius:50%;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
background:var(--champagne);
color:#111;
font-family:'Space Grotesk',sans-serif;
font-weight:700;
flex-shrink:0;
}

.postAvatar img{
width:100%;
height:100%;
object-fit:cover;
}

.postProfile strong{
font-size:.9rem;
}

.postProfile p{
margin-top:2px;
font-size:.65rem;
color:var(--muted);
}

.verifiedMark{
margin-left:7px;
color:#f5d98d;
font-weight:600;
}

/* MEDIA */

.postMedia{
position:relative;
width:100%;
background:#050505;
cursor:pointer;
overflow:hidden;
}

.postMedia img,
.postMedia video{
display:block;
width:100%;
max-height:780px;
object-fit:contain;
background:#050505;
}

.postMedia img{
user-select:none;
-webkit-user-drag:none;
}

.mediaWatermark{
position:absolute;
right:12px;
bottom:10px;
padding:5px 8px;
background:rgba(0,0,0,.45);
font-size:.5rem;
font-weight:600;
letter-spacing:2px;
color:rgba(255,255,255,.6);
pointer-events:none;
}

/* POST BODY */

.postBody{
padding:16px;
}

.postCaption{
font-size:.86rem;
line-height:1.7;
color:rgba(255,255,255,.84);
margin-bottom:16px;
}

.postActions{
display:flex;
align-items:center;
justify-content:space-between;
gap:15px;
padding-top:13px;
border-top:1px solid var(--line);
}

.admireBtn{
border:0;
background:transparent;
color:white;
display:flex;
align-items:center;
gap:7px;
cursor:pointer;
}

.admireBtn span{
font-size:1.45rem;
line-height:1;
}

.admireBtn strong{
font-size:.63rem;
letter-spacing:1.7px;
}

.admireBtn.admired{
color:#f5d98d;
}

.postStats{
display:flex;
gap:13px;
font-size:.6rem;
letter-spacing:.5px;
color:var(--muted);
}

/* ==========================================
   FULLSCREEN VIEWER
========================================== */

.mediaViewer{
position:fixed;
inset:0;
z-index:5000;
display:none;
align-items:center;
justify-content:center;
background:rgba(0,0,0,.97);
}

.mediaViewer.active{
display:flex;
}

.viewerStage{
width:min(100%,1100px);
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
padding:55px 70px 30px;
}

.viewerContent{
width:100%;
flex:1;
min-height:0;
display:flex;
align-items:center;
justify-content:center;
}

.viewerContent img,
.viewerContent video{
display:block;
max-width:100%;
max-height:78vh;
object-fit:contain;
}

.closeViewer{
position:absolute;
top:18px;
right:22px;
z-index:10;
width:46px;
height:46px;
border:0;
border-radius:50%;
background:rgba(255,255,255,.12);
color:white;
font-size:2rem;
cursor:pointer;
}

.viewerArrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:70px;
border:0;
background:rgba(255,255,255,.08);
color:white;
font-size:2.5rem;
cursor:pointer;
}

.previousArrow{
left:15px;
}

.nextArrow{
right:15px;
}

.viewerDetails{
width:min(100%,800px);
padding-top:15px;
display:flex;
justify-content:space-between;
gap:30px;
}

.viewerDetails strong{
display:block;
font-size:.85rem;
}

.viewerDetails span{
display:block;
margin-top:3px;
font-size:.62rem;
color:var(--muted);
}

.viewerDetails>p{
max-width:480px;
font-size:.75rem;
line-height:1.6;
color:rgba(255,255,255,.75);
}

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

@media(max-width:700px){

.feedHeader{
height:70px;
padding:0 15px;
}

.brand{
font-size:.8rem;
letter-spacing:3px;
}

.brand img{
width:42px;
height:42px;
}

.feedNav{
max-width:68vw;
overflow-x:auto;
white-space:nowrap;
-webkit-overflow-scrolling:touch;
scrollbar-width:none;
}
.feedNav::-webkit-scrollbar{display:none;}
.feedNav a{
display:inline-flex;
flex:0 0 auto;
}

.feedPage{
padding:38px 0 70px;
}

.feedIntro,
.feedControls{
padding-left:16px;
padding-right:16px;
}

.feedIntro h1{
font-size:3.2rem;
}

.feedGrid{
max-width:none;
gap:12px;
}

.feedPost{
border-left:0;
border-right:0;
}

.postMedia img,
.postMedia video{
max-height:75vh;
}

.viewerStage{
padding:55px 0 20px;
}

.viewerContent img,
.viewerContent video{
width:100%;
max-height:75vh;
}

.viewerArrow{
display:flex;
width:42px;
height:48px;
align-items:center;
justify-content:center;
}

.closeViewer{
top:14px;
right:14px;
}

.viewerDetails{
padding:14px 18px 0;
display:block;
}

.viewerDetails>p{
margin-top:10px;
}

.postActions{
align-items:flex-end;
}

.postStats{
flex-direction:column;
gap:2px;
text-align:right;
}

}
/* MULTI-MEDIA POST */

.postMediaTrack{
display:flex;
overflow-x:auto;
scroll-snap-type:x mandatory;
scrollbar-width:none;
overscroll-behavior-x:contain;
}

.postMediaTrack::-webkit-scrollbar{
display:none;
}

.postMediaSlide{
min-width:100%;
scroll-snap-align:start;
scroll-snap-stop:always;
background:#050505;
}

.postMediaSlide img,
.postMediaSlide video{
display:block;
width:100%;
max-height:780px;
object-fit:contain;
background:#050505;
}

.mediaCounter{
position:absolute;
top:12px;
right:12px;
z-index:4;
padding:7px 11px;
border-radius:999px;
background:rgba(0,0,0,.68);
backdrop-filter:blur(8px);
font-size:.64rem;
font-weight:600;
letter-spacing:1px;
color:#fff;
pointer-events:none;
}
/* ==========================================
   BOOK MODEL
========================================== */

.postActionButtons{
display:flex;
align-items:center;
gap:18px;
}

.bookModelBtn{
border:0;
background:transparent;
color:var(--champagne);
font-size:.63rem;
font-weight:700;
letter-spacing:1.6px;
text-transform:uppercase;
cursor:pointer;
}

.bookingModal{
position:fixed;
inset:0;
z-index:6000;
display:none;
align-items:center;
justify-content:center;
padding:20px;
background:rgba(0,0,0,.82);
backdrop-filter:blur(16px);
}

.bookingModal.active{
display:flex;
}

.bookingBox{
position:relative;
width:min(100%,620px);
max-height:92vh;
overflow-y:auto;
padding:38px;
background:
linear-gradient(
135deg,
#19151e,
#0d0b10
);
border:1px solid rgba(255,255,255,.14);
box-shadow:0 35px 100px rgba(0,0,0,.55);
}

.closeBooking{
position:absolute;
top:15px;
right:16px;
width:42px;
height:42px;
border:0;
background:rgba(255,255,255,.08);
color:#fff;
font-size:1.7rem;
cursor:pointer;
}

.bookingBox h2{
font-family:'Space Grotesk',sans-serif;
font-size:clamp(2rem,7vw,3.4rem);
line-height:1;
text-transform:uppercase;
margin-bottom:15px;
}

.bookingBox h2 span{
color:var(--champagne);
}

.bookingIntro{
margin-bottom:28px;
font-size:.86rem;
line-height:1.7;
color:var(--muted);
}

.bookingGrid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:17px;
}

.bookingInput{
display:flex;
flex-direction:column;
gap:8px;
}

.fullBookingWidth{
grid-column:1 / -1;
}

.bookingInput label{
font-size:.63rem;
font-weight:600;
letter-spacing:1.7px;
text-transform:uppercase;
color:rgba(255,255,255,.72);
}

.bookingInput input,
.bookingInput select,
.bookingInput textarea{
width:100%;
border:1px solid rgba(255,255,255,.14);
border-radius:0;
outline:none;
background:rgba(255,255,255,.055);
color:#fff;
}

.bookingInput input,
.bookingInput select{
height:54px;
padding:0 15px;
}

.bookingInput textarea{
min-height:125px;
padding:15px;
resize:vertical;
line-height:1.7;
}

.bookingInput input:focus,
.bookingInput select:focus,
.bookingInput textarea:focus{
border-color:var(--champagne);
background:rgba(255,255,255,.085);
}

.bookingInput select option{
background:#17141c;
color:#fff;
}

.submitBookingBtn{
width:100%;
min-height:58px;
margin-top:24px;
border:1px solid #fff;
background:#fff;
color:#111;
font-size:.7rem;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
cursor:pointer;
}

.submitBookingBtn:disabled{
opacity:.55;
cursor:not-allowed;
}

.bookingStatus{
min-height:22px;
margin-top:14px;
text-align:center;
font-size:.76rem;
color:var(--muted);
}

.bookingStatus.success{
color:#9ef0b4;
}

.bookingStatus.error{
color:#ff9aad;
}

@media(max-width:700px){

.postActionButtons{
gap:14px;
}

.bookModelBtn{
font-size:.58rem;
}

.bookingModal{
padding:0;
align-items:flex-end;
}

.bookingBox{
width:100%;
max-height:94vh;
padding:34px 18px 25px;
}

.bookingGrid{
grid-template-columns:1fr;
}

.fullBookingWidth{
grid-column:auto;
}

}
/* ==========================================
   CAMP HERE BUTTON
========================================== */

.postHeader{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
}

.postIdentity{
min-width:0;
}

.campBtn{
flex-shrink:0;

min-height:38px;

padding:0 15px;

border:1px solid rgba(234,223,207,.45);

background:
linear-gradient(
135deg,
rgba(234,223,207,.10),
rgba(255,255,255,.035)
);

color:var(--champagne);

font-family:'Space Grotesk',sans-serif;

font-size:.58rem;

font-weight:700;

letter-spacing:1.5px;

text-transform:uppercase;

white-space:nowrap;

cursor:pointer;

transition:
background .25s ease,
color .25s ease,
border-color .25s ease,
transform .25s ease;
}

.campBtn:hover{
background:var(--champagne);
color:#111;
border-color:var(--champagne);
transform:translateY(-2px);
}

.campBtn.camped{
background:var(--champagne);
color:#111;
border-color:var(--champagne);
}

.campBtn:disabled{
opacity:.5;
cursor:not-allowed;
transform:none;
}


/* CLICKABLE MUSE NAME */

.museNameLink{
display:inline-block;
}

.museNameLink strong{
transition:color .25s ease;
}

.museNameLink:hover strong{
color:var(--champagne);
}


/* MOBILE */

@media(max-width:700px){

.postHeader{
padding:14px 13px;
gap:10px;
}

.campBtn{
min-height:34px;
padding:0 11px;
font-size:.52rem;
letter-spacing:1.1px;
}

}