
.ct-bhajji-page,
.ct-bhajji-page *{
    box-sizing:border-box;
}

.ct-bhajji-page{
    --purple:#6a00d7;
    --purple-dark:#43008d;
    --purple-light:#f3eaff;
    --orange:#ff7a00;
    --orange-light:#fff1e4;
    --dark:#17121c;
    --text:#29242f;
    --muted:#716977;
    --white:#fff;
    --border:#e7e0eb;
    --green:#07885a;
    --red:#d92d20;

    max-width:1200px;
    margin:auto;
    padding:0 12px 60px;
    color:var(--text);
    font-family:"Noto Sans Devanagari",Arial,sans-serif;
    font-size:17px;
    line-height:1.85;
}

.ct-bhajji-page a{
    color:var(--purple);
    text-decoration:none;
}

.ct-bhajji-page h1,
.ct-bhajji-page h2,
.ct-bhajji-page h3,
.ct-bhajji-page p{
    margin-top:0;
}

/* LABEL */

.ct-bhajji-label{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--purple);
    font-weight:900;
    font-size:14px;
    margin:20px 0 12px;
}

.ct-bhajji-label span{
    width:35px;
    height:4px;
    background:var(--orange);
    border-radius:20px;
}

/* HERO */

.ct-bhajji-hero{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    padding:42px;
    color:#fff;
    background:
        radial-gradient(circle at 85% 15%,rgba(255,122,0,.32),transparent 25%),
        radial-gradient(circle at 5% 90%,rgba(255,255,255,.10),transparent 28%),
        linear-gradient(135deg,#35006e,#6a00d7 55%,#8b24ed);
    box-shadow:0 18px 50px rgba(106,0,215,.18);
    margin-bottom:25px;
}

.ct-bhajji-hero:after{
    content:"TURBANATOR";
    position:absolute;
    right:-20px;
    bottom:-25px;
    font-size:85px;
    line-height:1;
    font-weight:900;
    opacity:.055;
}

.ct-bhajji-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:250px 1fr;
    gap:35px;
    align-items:center;
}

.ct-bhajji-photo{
    width:225px;
    height:270px;
    margin:auto;
    overflow:hidden;
    border-radius:22px;
    border:4px solid rgba(255,255,255,.55);
    background:rgba(255,255,255,.1);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.ct-bhajji-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ct-bhajji-kicker{
    display:inline-block;
    padding:4px 15px;
    border-radius:50px;
    background:var(--orange);
    color:#fff;
    font-size:13px;
    font-weight:900;
    margin-bottom:10px;
}

.ct-bhajji-hero h1{
    font-size:48px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:8px;
}

.ct-bhajji-hero h1 span{
    color:#ffd1a7;
}

.ct-bhajji-subtitle{
    font-size:20px;
    font-weight:600;
    margin-bottom:20px;
}

.ct-bhajji-badges{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.ct-bhajji-badge{
    padding:6px 13px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.1);
    font-size:14px;
    font-weight:800;
}

/* INTRO */

.ct-bhajji-intro{
    background:#fff;
    border:1px solid var(--border);
    border-left:7px solid var(--orange);
    border-radius:16px;
    padding:22px 25px;
    margin:22px 0;
    box-shadow:0 8px 25px rgba(30,20,40,.05);
}

/* TOC */

.ct-bhajji-toc{
    background:linear-gradient(135deg,#fff,#f8f2ff);
    border:1px solid #e7d9f6;
    border-radius:18px;
    padding:24px;
    margin:25px 0;
}

.ct-bhajji-toc-title{
    color:var(--purple);
    font-size:22px;
    font-weight:900;
    margin-bottom:12px;
}

.ct-bhajji-toc-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px 20px;
}

.ct-bhajji-toc a{
    display:block;
    padding:8px 10px;
    border-bottom:1px dashed #ddd0ea;
    font-weight:600;
}

/* SECTION */

.ct-bhajji-section{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:28px;
    margin:24px 0;
    box-shadow:0 7px 25px rgba(25,15,35,.045);
}

.ct-bhajji-title{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--purple);
    font-size:29px;
    line-height:1.35;
    font-weight:900;
    padding-bottom:13px;
    margin-bottom:18px;
    border-bottom:1px solid #eee7f2;
}

.ct-bhajji-title:before{
    content:"";
    width:7px;
    min-width:7px;
    height:34px;
    background:var(--orange);
    border-radius:10px;
}

/* FACTS */

.ct-bhajji-facts{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.ct-bhajji-fact{
    background:#faf8fc;
    border:1px solid #ece5f1;
    border-radius:14px;
    padding:16px;
}

.ct-bhajji-fact small{
    display:block;
    color:var(--muted);
    font-size:13px;
    font-weight:700;
}

.ct-bhajji-fact strong{
    color:var(--purple);
    font-size:17px;
}

/* STATS */

.ct-bhajji-stat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:20px 0;
}

.ct-bhajji-stat{
    position:relative;
    overflow:hidden;
    padding:22px;
    border-radius:16px;
    border:1px solid #e6d9ef;
    background:linear-gradient(135deg,#fff,#f7f1fc);
}

.ct-bhajji-stat:after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    right:-25px;
    top:-25px;
    border-radius:50%;
    background:var(--orange);
    opacity:.12;
}

.ct-bhajji-stat-label{
    color:var(--purple);
    font-size:14px;
    font-weight:900;
}

.ct-bhajji-stat-number{
    font-size:34px;
    line-height:1.2;
    font-weight:900;
    margin:5px 0;
}

.ct-bhajji-stat-note{
    color:var(--muted);
    font-size:13px;
}

/* TABLE */

.ct-bhajji-table-wrap{
    overflow-x:auto;
    border:1px solid var(--border);
    border-radius:14px;
    margin:20px 0;
}

.ct-bhajji-table{
    width:100%;
    min-width:720px;
    border-collapse:collapse;
}

.ct-bhajji-table th{
    background:var(--purple);
    color:#fff;
    padding:13px;
    font-size:14px;
}

.ct-bhajji-table td{
    padding:12px;
    border-bottom:1px solid #eee;
    text-align:center;
    font-size:14px;
}

.ct-bhajji-table tr:nth-child(even) td{
    background:#fbf9fd;
}

.ct-bhajji-table td:first-child{
    text-align:left;
    color:var(--purple);
    font-weight:900;
}

/* HIGHLIGHT */

.ct-bhajji-highlight{
    background:linear-gradient(135deg,#fff3e7,#fffaf6);
    border:1px solid #ffd5b3;
    border-left:6px solid var(--orange);
    border-radius:15px;
    padding:20px;
    margin:18px 0;
}

.ct-bhajji-highlight strong{
    color:#d85f00;
}

/* RECORDS */

.ct-bhajji-records{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.ct-bhajji-record{
    border:1px solid #eadff0;
    border-radius:15px;
    padding:18px;
}

.ct-bhajji-record strong{
    display:block;
    color:var(--purple);
    font-size:18px;
    margin-bottom:4px;
}

/* TAGS */

.ct-bhajji-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.ct-bhajji-tag{
    background:#f1e8fb;
    color:#4f009d;
    border-radius:50px;
    padding:5px 12px;
    font-size:13px;
    font-weight:800;
}

/* STATUS */

.ct-bhajji-status{
    display:inline-block;
    padding:3px 10px;
    border-radius:50px;
    font-size:12px;
    font-weight:900;
    margin-bottom:7px;
}

.ct-bhajji-verified{
    color:#087b4e;
    background:#e6f8f0;
}

.ct-bhajji-reported{
    color:#9b5a00;
    background:#fff2d8;
}

.ct-bhajji-note{
    background:#f7f5f8;
    border-radius:12px;
    padding:15px 17px;
    color:#625b66;
    font-size:14px;
}

/* TIMELINE */

.ct-bhajji-timeline{
    position:relative;
    padding-left:25px;
}

.ct-bhajji-timeline:before{
    content:"";
    position:absolute;
    left:7px;
    top:0;
    bottom:0;
    width:3px;
    background:linear-gradient(var(--purple),var(--orange));
    border-radius:20px;
}

.ct-bhajji-event{
    position:relative;
    padding:0 0 25px 25px;
}

.ct-bhajji-event:before{
    content:"";
    position:absolute;
    left:-1px;
    top:7px;
    width:15px;
    height:15px;
    border-radius:50%;
    background:var(--orange);
    border:3px solid #fff;
    box-shadow:0 0 0 2px var(--orange);
}

.ct-bhajji-year{
    display:inline-block;
    padding:2px 12px;
    border-radius:50px;
    background:var(--purple);
    color:#fff;
    font-size:13px;
    font-weight:900;
}

.ct-bhajji-event h3{
    color:#33243e;
    font-size:20px;
    margin:5px 0;
}

/* FAQ */

.ct-bhajji-faq{
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.ct-bhajji-faq details{
    border-bottom:1px solid #eee;
}

.ct-bhajji-faq details:last-child{
    border-bottom:0;
}

.ct-bhajji-faq summary{
    position:relative;
    cursor:pointer;
    list-style:none;
    padding:17px 45px 17px 20px;
    font-weight:800;
}

.ct-bhajji-faq summary::-webkit-details-marker{
    display:none;
}

.ct-bhajji-faq summary:after{
    content:"+";
    position:absolute;
    right:18px;
    top:11px;
    color:var(--orange);
    font-size:25px;
}

.ct-bhajji-faq details[open] summary:after{
    content:"−";
}

.ct-bhajji-answer{
    padding:0 20px 18px;
    color:#5d5661;
}

/* SOURCES */

.ct-bhajji-sources{
    background:#19131f;
    color:#eee;
    border-radius:18px;
    padding:25px;
    margin-top:25px;
}

.ct-bhajji-sources h2{
    color:#fff;
}

.ct-bhajji-sources a{
    color:#ffb879;
}

.ct-bhajji-sources li{
    margin-bottom:8px;
}

/* FOOTER */

.ct-bhajji-footer{
    margin-top:25px;
    padding:22px;
    text-align:center;
    background:linear-gradient(135deg,#43008d,#6a00d7);
    color:#fff;
    border-radius:18px;
}

.ct-bhajji-footer strong{
    color:#ffd09f;
}

/* MOBILE */

@media(max-width:900px){

    .ct-bhajji-hero{
        padding:28px 20px;
    }

    .ct-bhajji-hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ct-bhajji-hero h1{
        font-size:38px;
    }

    .ct-bhajji-badges{
        justify-content:center;
    }

    .ct-bhajji-facts{
        grid-template-columns:repeat(2,1fr);
    }

    .ct-bhajji-stat-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .ct-bhajji-page{
        padding:0 8px 40px;
        font-size:16px;
    }

    .ct-bhajji-hero{
        padding:22px 15px;
        border-radius:17px;
    }

    .ct-bhajji-photo{
        width:190px;
        height:225px;
    }

    .ct-bhajji-hero h1{
        font-size:31px;
    }

    .ct-bhajji-subtitle{
        font-size:17px;
    }

    .ct-bhajji-section{
        padding:20px 15px;
        border-radius:14px;
    }

    .ct-bhajji-title{
        font-size:23px;
    }

    .ct-bhajji-toc-grid{
        grid-template-columns:1fr;
    }

    .ct-bhajji-facts{
        grid-template-columns:1fr 1fr;
    }

    .ct-bhajji-stat-grid{
        grid-template-columns:1fr;
    }

    .ct-bhajji-records{
        grid-template-columns:1fr;
    }

    .ct-bhajji-table{
        min-width:680px;
    }
}

.ct-bhajji-photo-credit{
    margin-top:8px;
    color:var(--muted);
    font-size:11px;
    line-height:1.45;
    text-align:center;
}
