/*==================================================
DAYAL PARADISE V2
ShadiPulse Demo
==================================================*/

.shadipulse-demo{

    background:
    radial-gradient(circle at top,#1b1b1b 0%,#090909 45%,#040404 100%);
    overflow:hidden;
    position:relative;

}

.shadipulse-demo::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(216,179,106,.08),transparent 70%);
    top:-250px;
    right:-200px;
    pointer-events:none;

}

.sp-demo-grid{

    display:grid;
    grid-template-columns:460px 1fr;
    gap:70px;
    align-items:center;

}

/*==================================
PHONE
==================================*/

.sp-phone{

    display:flex;
    justify-content:center;
    align-items:center;

}

.sp-screen{

    width:390px;
    background:#111;
    border-radius:42px;
    padding:28px;
    border:10px solid #1d1d1d;
    box-shadow:
    0 35px 90px rgba(0,0,0,.55),
    0 0 0 1px rgba(216,179,106,.18);

    position:relative;
    overflow:hidden;

}

.sp-screen::before{

    content:"";
    position:absolute;
    left:50%;
    top:10px;
    transform:translateX(-50%);
    width:120px;
    height:6px;
    border-radius:20px;
    background:#444;

}

/*==================================
HEADER
==================================*/

.sp-header{

    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;

}

.sp-header small{

    color:var(--gold);
    letter-spacing:2px;
    display:block;
    margin-bottom:5px;

}

.sp-header h3{

    font-size:22px;

}

/*==================================
QR
==================================*/

.sp-qr{

    width:85px;
    height:85px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;

}

.sp-qr img{

    width:65px;

}

.sp-qr.pulse{

    transform:scale(1.08);

    box-shadow:
    0 0 0 12px rgba(216,179,106,.10),
    0 0 35px rgba(216,179,106,.55);

}

/*==================================
QUESTION
==================================*/

.sp-question{

    font-size:26px;
    line-height:1.4;
    font-weight:700;
    margin-bottom:35px;

}

/*==================================
OPTIONS
==================================*/

.sp-options{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.sp-option{

    background:#1a1a1a;
    border-radius:18px;
    padding:18px;
    border:1px solid rgba(255,255,255,.08);
    cursor:pointer;
    transition:.35s;

}

.sp-option:hover{

    transform:translateY(-4px);
    border-color:rgba(216,179,106,.35);

}

.sp-option.selected{

    border-color:var(--gold);

    box-shadow:
    0 0 25px rgba(216,179,106,.25);

}

.sp-option-title{

    margin-bottom:15px;
    font-weight:600;

}

/*==================================
BAR
==================================*/

.sp-bar{

    height:12px;
    background:#292929;
    border-radius:30px;
    overflow:hidden;

}

.sp-bar-fill{

    width:0;
    height:100%;
    border-radius:30px;
    background:linear-gradient(
    90deg,
    #d8b36a,
    #f6d28d);

    transition:width .6s ease;

}

.sp-percent{

    margin-top:10px;
    text-align:right;
    color:var(--gold);
    font-weight:700;

}

/*==================================
LED PANEL
==================================*/

.sp-led{

    background:linear-gradient(
    145deg,
    #181818,
    #0b0b0b);

    border-radius:28px;
    padding:40px;
    border:1px solid rgba(216,179,106,.22);

    box-shadow:

    0 25px 60px rgba(0,0,0,.45);

    transition:.35s;

}

.sp-led-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;

}

.sp-led-header h3{

    font-size:26px;

}

/*==================================
LIVE
==================================*/

.live-badge{

    color:#8cff9d;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    animation:blink 1s infinite;

}

@keyframes blink{

50%{

opacity:.3;

}

}

/*==================================
STATS
==================================*/

.sp-stats{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:40px;

}

.sp-stat{

    background:#131313;
    border-radius:18px;
    padding:25px;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);

}

.sp-stat h2{

    font-size:48px;
    color:var(--gold);
    margin-bottom:10px;

}

.sp-stat span{

    color:#bdbdbd;

}

/*==================================
LIVE FEED
==================================*/

.sp-feed-title{

    margin-bottom:18px;
    color:var(--gold);
    font-weight:600;

}

.sp-live-feed{

    display:flex;
    flex-direction:column;
    gap:12px;

    min-height:320px;

}

.sp-feed-item{

    background:#121212;
    padding:16px 18px;
    border-radius:14px;

    border-left:4px solid var(--gold);

    animation:feedIn .5s ease;

}

.sp-feed-item strong{

    color:var(--gold-light);

}

@keyframes feedIn{

from{

opacity:0;
transform:translateX(25px);

}

to{

opacity:1;
transform:none;

}

}

/*==================================
LED SHIMMER
==================================*/

.sp-led::before{

    content:"";
    position:absolute;

}

.sp-led{

    position:relative;
    overflow:hidden;

}

.sp-led::before{

    top:0;
    left:-100%;
    width:45%;
    height:100%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.08),
    transparent);

    animation:shine 6s linear infinite;

}

@keyframes shine{

100%{

left:150%;

}

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1100px){

.sp-demo-grid{

grid-template-columns:1fr;
gap:60px;

}

.sp-phone{

order:1;

}

.sp-dashboard{

order:2;

}

}

@media(max-width:768px){

.sp-screen{

width:100%;
max-width:360px;

}

.sp-led{

padding:28px;

}

.sp-stats{

grid-template-columns:1fr;

}

.sp-stat h2{

font-size:38px;

}

.sp-question{

font-size:22px;

}

}

@media(max-width:480px){

.sp-screen{

padding:22px;
border-width:8px;

}

.sp-header{

flex-direction:column;
text-align:center;

}

.sp-question{

font-size:20px;

}

.sp-led-header{

flex-direction:column;
gap:12px;
align-items:flex-start;

}

}