/* ==========================================
   NEXORA BULLETIN VIEW
========================================== */

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

body{

    font-family:"Outfit",sans-serif;

    background:#f6f8fc;

    color:#1f2937;

    padding-bottom:40px;

}

.page-header{

    position:sticky;

    top:0;

    z-index:100;

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px 18px;

    background:#ffffff;

    box-shadow:0 4px 18px rgba(0,0,0,.06);

}

.back-btn{

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:#eef4ff;

    color:#2563eb;

    font-size:18px;

    cursor:pointer;

}

.page-header h1{

    font-size:22px;

    font-weight:800;

    color:#111827;

}

main{

    max-width:900px;

    margin:auto;

    padding:20px 16px;

}

#bulletinContainer{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.bulletin-card{

    background:#fff;

    border-radius:24px;

    padding:22px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.bulletin-title{

    font-size:28px;

    font-weight:800;

    color:#111827;

    margin-bottom:10px;

}

.bulletin-meta{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:6px 14px;

    background:#eef4ff;

    border-radius:999px;

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.bulletin-description{

    font-size:16px;

    line-height:1.8;

    color:#4b5563;

}

.bulletin-image{

    width:100%;

    margin-top:20px;

    border-radius:18px;

    display:block;

}

.loading{

    background:#fff;

    padding:60px;

    text-align:center;

    border-radius:20px;

    font-size:16px;

    color:#6b7280;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.empty{

    background:#fff;

    padding:60px;

    text-align:center;

    border-radius:20px;

    color:#9ca3af;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

@media(min-width:900px){

    main{

        padding:40px;

    }

    .bulletin-card{

        padding:34px;

    }

    .bulletin-title{

        font-size:34px;

    }

    .bulletin-description{

        font-size:18px;

    }

}
/* ==========================================
   PREMIUM NEXORA BULLETIN CARD
========================================== */

.bulletin-card{

    position:relative;

    background:#ffffff;

    border:2px solid #e1c16e;

    border-radius:36px;

    padding:30px 28px;

    box-shadow:
    0 18px 45px rgba(15,23,42,.10);

    overflow:hidden;

    transition:.25s ease;

}


/* subtle gold glow */

.bulletin-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    right:-80px;
    top:-80px;

    background:rgba(225,193,110,.12);

    border-radius:50%;

}



/* TITLE */

.bulletin-title{

    position:relative;

    z-index:2;

    font-size:32px;

    font-weight:900;

    letter-spacing:-.8px;

    line-height:1.15;

    color:#142B47;

    margin:20px 0 14px;

}



/* META */

.bulletin-meta{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    gap:8px;

    background:none;

    padding:0;

    border-radius:0;

    color:#64748b;

    font-size:16px;

    font-weight:500;

    margin-bottom:8px;

}



/* MEMBERS */

.bulletin-meta::before{

    content:"👥";

    font-size:20px;

}



/* DESCRIPTION */

.bulletin-description{

    position:relative;

    z-index:2;

    font-size:16px;

    line-height:1.7;

    color:#64748b;

}



/* ICON AREA */

.bulletin-card::before{

    display:block;

    font-size:30px;

}



/* MOBILE */

@media(max-width:600px){

.bulletin-card{

    border-radius:34px;

    padding:32px 28px;

}


.bulletin-title{

    font-size:28px;

}


}
/* ==========================================
   COMPACT PREMIUM NEXORA BULLETIN CARD
========================================== */

.bulletin-card{

    position:relative;

    background:#ffffff;

    border:1.5px solid #e1c16e;

    border-radius:22px;

    padding:14px 18px;

    box-shadow:
    0 8px 22px rgba(15,23,42,.08);

    overflow:hidden;

    transition:.25s ease;

}


/* subtle gold glow */

.bulletin-card::after{

    content:"";

    position:absolute;

    width:100px;
    height:100px;

    right:-50px;
    top:-50px;

    background:rgba(225,193,110,.12);

    border-radius:50%;

}



/* TITLE */

.bulletin-title{

    position:relative;

    z-index:2;

    font-size:20px;

    font-weight:900;

    letter-spacing:-.4px;

    line-height:1.15;

    color:#142B47;

    margin:10px 0 8px;

}



/* META */

.bulletin-meta{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    gap:5px;

    background:none;

    padding:0;

    color:#64748b;

    font-size:13px;

    font-weight:500;

    margin-bottom:4px;

}



/* MEMBERS ICON */

.bulletin-meta::before{

    content:"👥";

    font-size:15px;

}



/* DESCRIPTION */

.bulletin-description{

    position:relative;

    z-index:2;

    font-size:13px;

    line-height:1.4;

    color:#64748b;

}



/* ICON */

.bulletin-card::before{

    display:block;

    font-size:18px;

}


/* MOBILE */

@media(max-width:600px){

.bulletin-card{

    border-radius:22px;

    padding:16px 18px;

}


.bulletin-title{

    font-size:19px;

}

}
/* REMOVE MEMBERS AREA */
.bulletin-meta{
    display:none;
}


/* VIEW BULLETIN BUTTON */

.view-bulletin-btn{

    width:100%;

    height:70px;

    margin-top:22px;

    border-radius:18px;

    background:#142B47;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    font-weight:800;

    letter-spacing:.5px;

    border:2px solid #C9A54B;

    box-shadow:
    0 12px 25px rgba(20,43,71,.25);

    transition:.25s ease;

}


.view-bulletin-btn:active{

    transform:scale(.96);

}
.view-bulletin-btn{

    display:flex;

    width:70%;

    height:38px;

    margin:14px auto 0;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:#142B47;

    color:white;

    border:1.5px solid #C9A54B;

    font-size:12px;

    font-weight:800;

    text-decoration:none;

    box-shadow:
    0 6px 15px rgba(20,43,71,.18);

}
.page-title-wrap h1{

font-size:26px;

font-weight:900;

color:#142B47;

letter-spacing:-0.5px;

}


.page-title-wrap p{

margin-top:4px;

font-size:13px;

color:#64748b;

}


.page-title-wrap h1::after{

content:"";

display:block;

width:55px;

height:3px;

background:#e1c16e;

margin-top:6px;

border-radius:10px;

}
/* ==========================================
   FEATURED PRODUCTS CAROUSEL
========================================== */

.featured-carousel-wrapper{

margin:28px 0;

}

.featured-carousel{

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.featured-carousel-header{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 20px;

border-bottom:1px solid #eef2f7;

}

.featured-header-left{

display:flex;

align-items:center;

gap:12px;

}

.featured-star{

width:42px;
height:42px;

border-radius:50%;

background:#FFD54A;

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

font-size:18px;

}

.featured-title{

font-size:18px;
font-weight:800;

color:#111827;

}

.featured-subtitle{

font-size:13px;

color:#6b7280;

margin-top:2px;

}

.featured-see-all{

text-decoration:none;

font-size:14px;
font-weight:700;

color:#2563eb;

}

.featured-track{

display:flex;

gap:16px;

overflow-x:auto;

padding:20px;

scroll-behavior:smooth;

-webkit-overflow-scrolling:touch;

}

.featured-track::-webkit-scrollbar{

display:none;

}

.featured-slide{

min-width:240px;

max-width:240px;

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 6px 20px rgba(0,0,0,.08);

flex-shrink:0;

transition:.3s;

}

.featured-slide.active{

transform:scale(1.03);

}

.featured-slide img{

width:100%;

height:180px;

object-fit:cover;

display:block;

}

.featured-info{

padding:16px;

}

.featured-name{

font-size:16px;

font-weight:700;

color:#111827;

margin-bottom:8px;

}

.featured-price{

font-size:18px;

font-weight:800;

color:#2563eb;

margin-bottom:8px;

}

.featured-location{

font-size:13px;

color:#6b7280;

margin-bottom:14px;

}

.featured-button{

display:block;

text-align:center;

padding:12px;

border-radius:14px;

background:#2563eb;

color:#fff;

font-weight:700;

text-decoration:none;

}

.featured-badge{

position:absolute;

margin:12px;

padding:6px 12px;

background:#FFD54A;

color:#111827;

font-size:12px;

font-weight:800;

border-radius:999px;

z-index:2;

}
.featured-carousel{
    width:100%;
    max-width:100%;
    overflow:hidden;
    box-sizing:border-box;
}

.featured-track{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    box-sizing:border-box;
}

.featured-carousel-wrapper{
    width:100%;
    max-width:100%;
    overflow:hidden;
}
.featured-slide{

    position:relative;

    overflow:hidden;

}
.featured-badge{

    position:absolute;

    top:12px;

    left:12px;

    z-index:20;

}
.featured-carousel{

background:linear-gradient(
135deg,
#fffdf5 0%,
#fff6dc 100%
);

border:2px solid #d8b04c;

border-radius:28px;

box-shadow:
0 12px 35px rgba(216,176,76,.18);

}
.featured-carousel-wrapper{

margin:30px -20px;

}
.featured-carousel-wrapper{

    position: relative;

    left: 50%;

    transform: translateX(-50%);

    width: 100vw;

    margin: 30px 0;

    box-sizing: border-box;

}
main{
    padding:0;
}

.bulletin-card{
    margin:20px;
}
.featured-carousel{

    border-radius:0;

}
main{

    padding:6px;

}

#bulletinContainer{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.bulletin-card{

    margin:0;

}
#bulletinContainer{
    gap:4px;
}

.bulletin-card{
    padding:12px 16px;
}

.view-bulletin-btn{
    margin-top:8px;
}
/* Premium text link */

.view-bulletin-btn{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:10px;

    padding:0;

    background:none;

    border:none;

    box-shadow:none;

    color:#142B47;

    font-size:13px;

    font-weight:700;

    text-decoration:none;

    width:auto;

    height:auto;

    transition:.25s;

}

.view-bulletin-btn::after{

    content:"→";

    font-size:14px;

    transition:.25s;

}

.view-bulletin-btn:hover{

    color:#2563eb;

}

.view-bulletin-btn:hover::after{

    transform:translateX(4px);

}

/* ==========================================================
   NEXORA — CYBERMUSE-INSPIRED RESPONSIVE THEME
   MOBILE • TABLET • DESKTOP
   Square geometry • dark editorial • champagne accents
========================================================== */

:root{
    --nx-bg:#08070c;
    --nx-bg-2:#17121c;
    --nx-panel:rgba(255,255,255,.045);
    --nx-panel-strong:rgba(255,255,255,.075);
    --nx-line:rgba(255,255,255,.11);
    --nx-line-gold:rgba(234,223,207,.26);
    --nx-text:#ffffff;
    --nx-muted:rgba(255,255,255,.62);
    --nx-muted-2:rgba(255,255,255,.78);
    --nx-champagne:#eadfcf;
    --nx-gold:#d4af37;
    --nx-danger:#ff9aad;
    --nx-success:#a9efbd;
}

html,
body{
    min-height:100%;
    background:
        radial-gradient(circle at 10% 5%,rgba(141,118,255,.12),transparent 28%),
        radial-gradient(circle at 90% 75%,rgba(212,175,55,.08),transparent 30%),
        linear-gradient(135deg,var(--nx-bg),var(--nx-bg-2) 60%,#29221f) !important;
    color:var(--nx-text) !important;
}

body{
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

button,
input,
select,
textarea{
    font:inherit;
}

button,
input,
select,
textarea,
a{
    -webkit-tap-highlight-color:transparent;
}

button,
input,
select,
textarea{
    border-radius:0 !important;
}

input,
select,
textarea{
    background:rgba(255,255,255,.045) !important;
    color:#fff !important;
    border:1px solid var(--nx-line) !important;
    box-shadow:none !important;
    outline:none !important;
}

input::placeholder,
textarea::placeholder{
    color:rgba(255,255,255,.38) !important;
}

input:focus,
select:focus,
textarea:focus{
    border-color:rgba(234,223,207,.48) !important;
    box-shadow:0 0 0 2px rgba(234,223,207,.06) !important;
}

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

::-webkit-scrollbar{
    width:5px;
    height:5px;
}
::-webkit-scrollbar-track{
    background:#09080c;
}
::-webkit-scrollbar-thumb{
    background:rgba(234,223,207,.35);
    border-radius:0;
}

@media (min-width:768px) and (max-width:1199px){
    body{
        font-size:15px;
    }
}

@media (min-width:1200px){
    body{
        font-size:16px;
    }
}


/* ================= BULLETIN VIEW ================= */
.page-header{
    background:rgba(8,7,12,.94) !important;
    border-bottom:1px solid var(--nx-line) !important;
    box-shadow:none !important;
    backdrop-filter:blur(18px) !important;
}
.back-btn{
    border-radius:0 !important;
    background:rgba(255,255,255,.055) !important;
    color:var(--nx-champagne) !important;
    border:1px solid var(--nx-line) !important;
    box-shadow:none !important;
}
.page-header h1,
.page-title-wrap h1,
.bulletin-title{
    color:#fff !important;
}
.page-title-wrap p,
.bulletin-description{
    color:var(--nx-muted) !important;
}
main{
    width:min(100%,980px) !important;
    max-width:980px !important;
    margin:auto !important;
}
#bulletinContainer{
    gap:14px !important;
}
.bulletin-card{
    position:relative !important;
    overflow:hidden !important;
    background:var(--nx-panel) !important;
    border:1px solid var(--nx-line) !important;
    border-radius:0 !important;
    box-shadow:none !important;
    backdrop-filter:blur(16px) !important;
}
.bulletin-card::after{
    border-radius:0 !important;
    opacity:.25;
}
.bulletin-meta{
    border-radius:0 !important;
    background:rgba(234,223,207,.08) !important;
    color:var(--nx-champagne) !important;
}
.bulletin-image{
    border-radius:0 !important;
    background:#050505 !important;
}
.view-bulletin-btn{
    border-radius:0 !important;
    background:#fff !important;
    color:#111 !important;
    border:1px solid #fff !important;
    box-shadow:none !important;
    text-transform:uppercase !important;
    letter-spacing:1px !important;
}
.loading,
.empty{
    background:var(--nx-panel) !important;
    color:var(--nx-muted) !important;
    border:1px solid var(--nx-line) !important;
    border-radius:0 !important;
    box-shadow:none !important;
}
.page-title-wrap h1::after{
    height:1px !important;
    border-radius:0 !important;
    background:linear-gradient(90deg,var(--nx-gold),transparent) !important;
}

@media(max-width:767px){
    main{padding:14px 0 !important;}
    .bulletin-card{
        border-left:0 !important;
        border-right:0 !important;
        padding:18px 15px !important;
    }
    .bulletin-title{font-size:1.35rem !important;}
    .bulletin-description{font-size:.86rem !important;}
}
@media(min-width:768px) and (max-width:1199px){
    main{padding:28px 24px !important;}
    .bulletin-card{padding:26px !important;}
    .bulletin-title{font-size:1.7rem !important;}
}
@media(min-width:1200px){
    main{padding:44px 0 !important;}
    .bulletin-card{padding:30px !important;}
    .bulletin-title{font-size:2rem !important;}
}
