/* ======================================================
   FansGossipHub Modern Theme
   Version: 1.0
   ====================================================== */


/* ======================================================
   01. Root Colors
     ====================================================== */
     
     :root{
    --color01: #ff2d55;      /* Main Apple pink */
    --color02: #ff4d7d;      /* Hover */
    --color03: #ff6b9e;      /* Links/highlights */
    --color035: rgba(255,45,85,.5);
    --bg: #f7f7fb;
    --card: #ffffff;
    --text: #222;
    --muted: #777;
    --primary: #ff3d71;
    --border: rgba(0,0,0,.08);
    --radius: 16px;
}

    


/* ======================================================
   02. Typography
   ====================================================== */
   
   /* ===== FansGossipHub Modern Glass ===== */

body{
    background:#f8f8fb;
    background-image:
    radial-gradient(circle at top left,#ffd6e5 0,#f8f8fb 40%),
    radial-gradient(circle at bottom right,#ffe8f1 0,#f8f8fb 40%);
}

/* Glass panels */

.headerbar,
.navbar,
.footerbar{
    background:rgba(255,255,255,.82)!important;
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.45);
    box-shadow:0 8px 30px rgba(255,45,85,.12);
}

.forabg,
.forumbg,
.panel,
.post{
    background:rgba(255,255,255,.88)!important;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.5);
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* Forum headings */

li.header{
    background:linear-gradient(90deg,#ff2d55,#ff6b9e)!important;
}

/* Buttons */

.button,
.button1,
.button2,
input.button1,
input.button2{

    border-radius:14px;

}

/* Inputs */

.inputbox,
textarea,
select{

    border-radius:14px;

    border:1px solid #ffd3df;

    background:#fff;

}

.inputbox:focus{

    border-color:#ff2d55;

    box-shadow:0 0 0 4px rgba(255,45,85,.15);

}

/* Hover */

li.row:hover{

    background:#fff3f8;

}

/* Site title */

.site-description h1{

    color:#ff2d55!important;

}


/* ======================================================
   03. Header
   ====================================================== */
   
   /* Logo */
/* Site title */
/* Navigation */
/* Sticky header */
/* Search */


.headerbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.navbar {
    border: none;
    box-shadow: none;
    background: transparent;
    position: relative;
    z-index: 900;
}

/* Layout */
.headerbar .inner {
    display: block;
}

#site-description {
    float: left !important;
}

.search-header {
    float: right !important;
}

/* Dropdown system */
#quick-links,
.header-profile,
.dropdown-container {
    position: relative;
    z-index: 2000;
}

/* IMPORTANT: only ONE dropdown rule */
.dropdown {
    position: absolute !important;
    top: 100%;
    right: 0;
    z-index: 99999 !important;
}

.dropdown-contents {
    z-index: 100000 !important;
}

.headerbar {
    position: sticky;
    top: 0;
    z-index: 600;
}

.navbar {
    position: relative;
    z-index: 1000;
}

.dropdown {
    position: absolute !important;
    z-index: 1000 !important;
}

/* ======================================================
   04. Forum Cards
   ====================================================== */

/* Forum list */
/* Topic list */
/* Panels */
/* Post boxes */

.forabg,
.forumbg{
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;

    background: var(--card);
    border: 1px solid var(--border);

    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .25s;
}

.forabg:hover,
.forumbg:hover{
    transform: translateY(-2px);
}


/* image align */

.attach-image img{
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}


/* Link Card like Onlyfans */

.link-card{
    border-radius: 14px;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: .2s;
}

.link-card:hover{
    transform: translateY(-2px);
}

.link-card .url{
    font-size: 12px;
    color: var(--muted);
}


/* instagram */

.instagram-media{
    margin: 12px 0 !important;
    border-radius: 14px !important;
    overflow: hidden;
}


/* ======================================================
   05. Buttons
   ====================================================== */
   
   /* Primary */
/* Secondary */
/* Hover */
/* Icons */


.button,
.button1,
.button2{
    border-radius: 12px;
    transition: .25s;
    border: none;
}

.button:hover,
.button1:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,61,113,.25);
}



/* ======================================================
   06. Forms
   ====================================================== */

/* Input */
/* Textarea */
/* Select */
/* Login */
/* Register */

li.row{
    padding: 12px;
    transition: .2s;
    border-radius: 10px;
}

li.row:hover{
    background: rgba(255,61,113,.06);
}



.inputbox{

    border-radius:12px;

    padding:10px 14px;

}






/* ======================================================
   07. Tables
   ====================================================== */


/* ======================================================
   08. Pagination
   ====================================================== */


/* ======================================================
   09. Avatars
   ====================================================== */


/* ======================================================
   10. Badges
   ====================================================== */


/* ======================================================
   11. Footer
   ====================================================== */


/* ======================================================
   12. Animations
   ====================================================== */

#keywords:focus{
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,61,113,.2);
}


/* ======================================================
   13. Desktop
   ====================================================== */

@media (min-width:701px){

}


/* ======================================================
   14. Tablet
   ====================================================== */

@media (max-width:1024px){

}



/* ======================================================
   15. Mobile
   ====================================================== */

@media (max-width:700px){

    .headerbar{
        padding: 10px;
    }

    li.row{
        padding: 10px;
    }

    .button,
    .button1,
    .button2{
        width: 100%;
    }
}


/* image align */

{
    .postbody .content img{
        border-radius: 10px;
        margin: 8px 0;
    }
}


/* ======================================================
   16. Dark Mode
   ====================================================== */

@media (prefers-color-scheme:dark){

    :root{
        --bg: #0f1115;
        --card: #171a21;
        --text: #e6e6e6;
        --muted: #999;
        --border: rgba(255,255,255,.08);
    }

    body{
        background: var(--bg);
        color: var(--text);
    }

    .headerbar{
        background: rgba(20,20,20,.7);
        border-bottom: 1px solid var(--border);
    }

    .forabg,
    .forumbg{
        background: var(--card);
    }
}
