/* =====================================================
   SLIDER
===================================================== */

.slider-wrap{
    position:relative;
}

.slider{
    display:flex;
    gap:12px;
    padding:14px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

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

.card{
    min-width:140px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.card a{
    display:block;
    text-decoration:none;
    color:#000;
}

.card img{
    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
}

.card .title{
    padding:6px;
    font-size:10px;
    font-weight:500;
    text-align:center;
}

/* SLIDER BUTTONS */


/* DOTS */

.slider-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin:6px 0 10px;
}

.slider-dots span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#ccc;
    transition:.3s;
}

.slider-dots span.active{
    background:#2b66ff;
    width:16px;
    border-radius:10px;
}


/* =====================================================
   VIDEO
===================================================== */

.video-ratio,
.video-responsive{
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    border-radius:18px;
    background:#000;
    box-shadow:0 15px 45px rgba(0,0,0,.35);
}

.video-ratio iframe,
.video-responsive iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* VIDEO CARD */

.pro-video-card{
    margin:24px 0;
    padding:14px;
    border-radius:22px;
    background:#fff;
    border:1px solid #eef1f8;
    box-shadow:0 8px 24px rgba(17,24,39,.08);
    transition:.35s;
}

.pro-video-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 48px rgba(17,24,39,.14);
}

@media (max-width:768px){
    .pro-video-card:hover{
        transform:none;
    }
}

/* NO VIDEO */

.no-video-box{
    background:linear-gradient(135deg,#141e30,#243b55);
    padding:30px 20px;
    border-radius:20px;
    text-align:center;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
    margin-bottom:25px;
}

.no-video-icon{
    font-size:52px;
    margin-bottom:10px;
}

.no-video-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:6px;
}

.no-video-text{
    font-size:14px;
    opacity:.9;
}


/* =====================================================
   SEO TEXT
===================================================== */

.modern-seo-textt{
    max-width:800px;
    width:min(94vw,400px);
    margin:0 auto;
    padding:24px 26px;
    border-radius:22px;
    background:linear-gradient(180deg,#fff,#f5f5f5);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.modern-seo-textt .seo-text-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.modern-seo-textt .seo-title{
    font-size:18px;
    font-weight:600;
}

.modern-seo-textt .seo-text-content{
    font-size:15px;
    line-height:1.8;
}


/* =====================================================
   TV CHANNELS
===================================================== */

.tv-channels-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:18px;
}

.tv-channel-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e6eaf5;
    box-shadow:0 8px 24px rgba(17,24,39,.08);
    transition:.35s;
}

.tv-channel-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 46px rgba(17,24,39,.14);
}

.tv-channel-thumb{
    position:relative;
    padding-bottom:56.25%;
    background:#000;
}

.tv-channel-thumb img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.tv-channel-card:hover .tv-channel-thumb img{
    transform:scale(1.06);
}

.tv-live-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#dc2626;
    color:#fff;
    font-size:11px;
    font-weight:600;
    padding:5px 10px;
    border-radius:999px;
}



/* =========================
/* =========================
   COVER WRAP
========================= */

.cover-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    margin:40px auto;
}


/* =========================
   ASOSIY BLOK (KATTAROQ)
========================= */

.fimgg{
    position:relative;

    width:100%;
    max-width:420px;        /* 🔥 Kattalashtirildi */
    aspect-ratio:1/1;

    border-radius:30px;
    overflow:hidden;

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


/* =========================
   BLUR ORQA FON
========================= */

.fimgg::before{
    content:"";
    position:absolute;
    inset:-30px;

    background-image:var(--bg);
    background-size:cover;
    background-position:center;

    filter:blur(22px) brightness(1.1) saturate(130%);
    transform:scale(1.2);

    z-index:1;
}


/* =========================
   OLD RASM (KATTAROQ)
========================= */

.fimgg img{
    position:relative;

    width:75%;              /* 🔥 Kattaroq */
    max-width:320px;

    aspect-ratio:1/1;
    object-fit:cover;

    border-radius:16px;
    z-index:3;

    background:#fff;
    box-shadow:0 30px 70px rgba(0,0,0,.5);
}


/* =========================
   MOBIL MOSLASHUV
========================= */

@media (max-width:768px){

    .fimgg{
        max-width:340px;
        border-radius:24px;
    }

    .fimgg img{
        width:80%;
        max-width:260px;
        border-radius:14px;
    }
}

@media (max-width:480px){

    .fimgg{
        max-width:280px;
    }

    .fimgg img{
        width:85%;
        max-width:220px;
    }
}















/* ===== 4 TA QATOR ANIQ ===== */

.artist-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.artist-card {
    width: 50%;   /* 4 ta */
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.artist-card a {
    text-decoration: none;
    color: #222;
    display: block;
}

/* Dumaloq rasm */

.artist-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-name {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}












.birthday-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.birthday-slider::-webkit-scrollbar {
    height: 6px;
}
.birthday-slider::-webkit-scrollbar-thumb {
    background: #ff4081;
    border-radius: 10px;
}

.birthday-card {
    min-width: 220px;
    background: #1e1e2f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.birthday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,64,129,0.4);
}

.birthday-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.birthday-content {
    padding: 15px;
    text-align: center;
}

.birthday-date {
    font-size: 14px;
    color: #ff4081;
    margin-bottom: 5px;
}

.birthday-name a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.birthday-name a:hover {
    color: #ff4081;
}






/* BODY BACKGROUND */
body{
margin:0;
font-family:'Segoe UI',sans-serif;
background:linear-gradient(135deg,#5f8cff,#b06cff,#ff6ad5);
background-size:300% 300%;
animation:bgmove 12s infinite alternate;
}

@keyframes bgmove{
0%{background-position:left;}
100%{background-position:right;}
}

/* CONTAINER */
.tv-premium{
max-width:1000px;
margin:50px auto;
padding:20px;
text-align:center;
}

/* LIVE BADGE */
.live-badge{
display:inline-flex;
align-items:center;
gap:8px;
background:rgba(255,255,255,0.25);
padding:8px 20px;
border-radius:30px;
backdrop-filter:blur(15px);
font-weight:600;
color:#111;
margin-bottom:20px;
}

.live-dot{
width:10px;
height:10px;
background:#ff0000;
border-radius:50%;
animation:pulse 1.2s infinite;
}

@keyframes pulse{
0%{transform:scale(1);opacity:1;}
50%{transform:scale(1.5);opacity:0.4;}
100%{transform:scale(1);opacity:1;}
}

/* PLAYER */
.player-wrapper{
position:relative;
padding-top:56.25%;
border-radius:40px;
overflow:hidden;
background:#000;
box-shadow:
0 30px 80px rgba(0,0,0,0.4),
0 0 60px rgba(255,255,255,0.3);
transition:0.4s;
}

.player-wrapper:hover{
transform:translateY(-8px);
box-shadow:
0 40px 100px rgba(0,0,0,0.5),
0 0 80px rgba(255,255,255,0.4);
}

.player-wrapper iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border:0;
}

/* OFFLINE */
.offline-box{
background:rgba(255,255,255,0.3);
padding:40px;
border-radius:40px;
backdrop-filter:blur(20px);
color:#111;
}

.offline-icon{
font-size:60px;
margin-bottom:15px;
}

/* INFO CARD */
.info-card{
margin-top:35px;
background:rgba(255,255,255,0.85);
padding:25px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.info-card h1{
font-size:30px;
color:#111;   /* TITLE QORA */
margin-bottom:15px;
font-weight:700;
}

/* TAGS */
.info-tags{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.info-tags span{
background:linear-gradient(135deg,#5f8cff,#ff6ad5);
color:#fff;
padding:8px 18px;
border-radius:20px;
font-size:14px;
font-weight:500;
transition:0.3s;
}

.info-tags span:hover{
transform:scale(1.1);
}

/* MOBILE */
@media(max-width:768px){
.tv-premium{
margin:20px;
padding:10px;
}
.info-card h1{
font-size:22px;
}
}











.tv-programs { margin-top:12px; background:#0f1218; border-radius:12px; padding:10px; }
.tv-programs-title { font-weight:700; color:#fff; margin-bottom:8px; }
.tv-programs-list { list-style:none; padding:0; margin:0; }
.tv-programs-list li { display:flex; gap:10px; padding:6px 0; border-bottom:1px solid #222; color:#ddd; }
.tv-programs-list li:last-child { border-bottom:0; }
.tv-programs-list .time { color:#ff3b3b; min-width:52px; font-weight:700; }
.loading, .empty, .error { color:#aaa; }
 




























/* TV container: grid 3 qatorli va moslashuvchan */
.tv-container { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* moslashuvchan grid */
  gap: 10px; 
  padding: 10px; 
}

/* TV kartochka */
.tv-card { 
  background: #1c1c1c; 
  border-radius: 10px; 
  overflow: hidden; 
  text-align: center; 
  transition: transform 0.3s; 
}
.tv-card:hover { 
  transform: scale(1.05); 
}

/* Rasm */
.tv-card img { 
  width: 100%; 
  height: 150px; 
  object-fit: cover; 
  border-bottom: 1px solid #ff3b3b; 
}

/* Kanal nomi */
.tv-card span { 
  display: block; 
  padding: 5px 0; 
  font-size: 14px; 
}

/* Bottom nav */
.bottom-nav {
  position: fixed; 
  bottom: 0; 
  left: 0; 
  width: 100%;
  background: rgba(0,0,0,0.85); 
  display: flex; 
  justify-content: space-around; 
  align-items: center;
  padding: 5px 0; 
  border-radius: 15px 15px 0 0; 
  z-index: 9999;
}
.bottom-nav a { 
  text-align: center; 
  flex: 1; 
  padding: 5px 0; 
  transition: all 0.3s ease; 
  font-size: 12px; 
}
.bottom-nav a i { 
  display: block; 
  font-size: 20px; 
  margin-bottom: 2px; 
  transition: transform 0.3s; 
}
.bottom-nav a.active, 
.bottom-nav a:hover { color: #ff3b3b; }
.bottom-nav a.active i, 
.bottom-nav a:hover i { transform: scale(1.2); }

/* Lazy-load effekt */
.lazy { opacity: 0; transition: opacity 0.5s; }
.lazy-loaded { opacity: 1; }

/* Media queries: planshet va mobil uchun */
@media (max-width: 768px) { 
  .tv-container { grid-template-columns: repeat(2, 1fr); } /* 2 ustun */
}
@media (max-width: 480px) { 
  .tv-container { grid-template-columns: 1fr; } /* 1 ustun */
}







	/* Story icons panel */
.story_icons {
    list-style: none;
    margin: 8px 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.story_icons li {
    display: flex;
    align-items: center;
}

/* Favorites */
.fav_btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f3f5;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.fav_btn span:hover {
    background: #e7ebf0;
    transform: translateY(-2px);
}

/* Edit button (i tegi uchun) */
.edit_btn i {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    border-radius: 10px;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    user-select: none;
}

.edit_btn i::before {
    content: "✏️";
}

.edit_btn i:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Edit info block */
.editdate {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(0, 114, 255, 0.06);
    border-left: 4px solid #0072ff;
    border-radius: 8px;
    font-size: 13px;
}

/* Mobil moslashuv */
@media (max-width: 480px) {
    .edit_btn i {
        padding: 6px 10px;
        font-size: 12px;
    }

    .fav_btn span {
        width: 32px;
        height: 32px;
    }
}



/*  123*/

.news-app {
    padding: 10px;
}

.news-item {
    display: flex;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.news-thumb {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 85px;
    overflow: hidden;
}

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

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.live-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}

.news-info {
    padding: 10px;
    flex: 1;
}

.news-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.news-time {
    margin-top: 6px;
    font-size


/*  */


.live-box{
    background:#e53935;
    color:#fff;
    padding:15px;
    border-radius:14px;
    margin:10px 0;
}
.live-box h3{
    margin:0 0 10px;
    font-weight:600;
}
.live-box a{ color:#fff; text-decoration:none; }
.live-box li{ list-style:none; margin:6px 0; }










#ramadan-box table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}
#ramadan-box th{
  background:#f5f5f5;
  border:1px solid #8bc34a;
  padding:6px;
  text-align:center;
}
#ramadan-box td{
  border:1px solid #8bc34a;
  padding:6px;
  text-align:center;
}


@media (max-width:600px){
  #ramadan-box table{font-size:13px;}
  #ramadan-box td,#ramadan-box th{padding:4px;}
  .select-region{width:100%;}
}




/* ===== PRO Fullstory Music Card ===== */
/* ====== Glassmorphism Neon Music Card ====== */
.sect-content {
    padding: 16px;
    background: radial-gradient(1200px 400px at 10% 0%, rgba(0,136,204,.12), transparent),
                radial-gradient(800px 300px at 90% 10%, rgba(0,255,170,.10), transparent);
}

.full {
    position: relative;
    background: rgba(20, 22, 28, .65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 16px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.65),
        inset 0 0 0 1px rgba(255,255,255,.08);
    color: #eef1f5;
    overflow: hidden;
}

.full::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(120deg, transparent 20%, rgba(0,255,204,.35), transparent 60%);
    opacity: .6;
    pointer-events: none;
}

.ftitle {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    color: #e9faff;
    background: linear-gradient(135deg, rgba(0,136,204,.25), rgba(0,255,170,.18));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.sect {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
}

.fimg {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,.7),
        0 0 0 1px rgba(255,255,255,.12);
}

.fimg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60px 60px at 20% 20%, rgba(255,255,255,.25), transparent 40%);
    pointer-events: none;
}

.fimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.finfo {
    list-style: none;
    padding: 0;
    margin: 0;
}

.finfo li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,.12);
}

.finfo li span:first-child {
    color: #9fb7c7;
}

.finfo li span:last-child {
    color: #ffffff;
    font-weight: 700;
}

/* ===== Controls ===== */
.fright {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.fbtn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    padding: 12px 14px;
    text-decoration: none;
    color: #eaf7ff;
    background: linear-gradient(135deg, rgba(0,136,204,.9), rgba(0,255,170,.9));
    box-shadow:
        0 10px 28px rgba(0,0,0,.55),
        inset 0 0 0 1px rgba(255,255,255,.18);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

.fbtn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35), transparent 55%);
    transform: translateX(-120%);
    transition: transform .5s ease;
}

.fbtn:hover::after {
    transform: translateX(120%);
}

.fbtn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(0,0,0,.7),
        0 0 22px rgba(0,255,170,.35);
}

.fplay {
    background: linear-gradient(135deg, #3f8cff, #00ffd5);
}

.tg-dl {
    background: linear-gradient(135deg, #00a2ff, #2cffea);
}

.fbtn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.25);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
    font-size: 18px;
}

.seo-text {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #cfe9ff;
    background:
        linear-gradient(135deg, rgba(0,136,204,.18), rgba(0,255,170,.12));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
    .sect {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fimg {
        margin: 0 auto;
    }
    .finfo li {
        grid-template-columns: 1fr 1fr;
    }
    .fright {
        grid-template-columns: 1fr;
    }
}







  
.story_tg_wrap{
    margin: 20px 0;
    text-align: center;
}

.tg-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: #fff !important;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(42,171,238,0.35);
    transition: 0.25s ease;
}

.tg-btn i{
    font-size: 22px;
}

.tg-btn:hover{
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 32px rgba(42,171,238,0.45);
    background: linear-gradient(135deg, #229ED9, #2AABEE);
}





.tg-icon-btn{
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #229ED9;
    color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(34,158,217,0.45);
    transition: 0.25s ease;
    text-decoration: none !important;
    font-size: 24px;
}

.tg-icon-btn:hover{
    transform: scale(1.12) rotate(8deg);
    background: #2AABEE;
}



.story_tg_wrap{margin:20px 0;text-align:center}
.tg-btn{display:inline-flex;align-items:center;gap:10px;padding:12px 20px;background:linear-gradient(135deg,#2AABEE,#229ED9);color:#fff!important;border-radius:14px;text-decoration:none!important;box-shadow:0 10px 24px rgba(42,171,238,.35);transition:.25s}
.tg-btn:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 14px 32px rgba(42,171,238,.45)}




.article.full{background:#0f1220;border-radius:22px;padding:18px;color:#e8ecff}
.fstory-title{font-size:24px;margin:10px 0 8px;font-weight:800}
.fstory-meta{display:flex;gap:15px;font-size:13px;color:#9aa3c7;margin-bottom:12px;flex-wrap:wrap}
.fstory-cover img{width:100%;border-radius:18px;box-shadow:0 20px 50px rgba(0,0,0,.45);margin-bottom:14px}

.fstory-text{line-height:1.7;font-size:15px}

.player_box{margin:20px 0;padding:16px;border-radius:18px;background:linear-gradient(135deg,#11152b,#1b2050)}
.player_box audio{width:100%}
.player_actions{margin-top:10px;text-align:center}

.fbtn{display:inline-flex;align-items:center;gap:8px;padding:12px 20px;border-radius:14px;text-decoration:none!important;font-weight:700}
.fdl{background:linear-gradient(135deg,#22c55e,#16a34a);color:#fff!important;box-shadow:0 10px 26px rgba(34,197,94,.35)}
.fdl:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 14px 34px rgba(34,197,94,.5)}

.story_tg_wrap{margin:24px 0;text-align:center}
.tg-btn{display:inline-flex;align-items:center;gap:10px;padding:14px 22px;background:linear-gradient(135deg,#2AABEE,#229ED9);color:#fff!important;border-radius:16px;text-decoration:none!important;font-weight:800;box-shadow:0 12px 28px rgba(42,171,238,.45);transition:.25s}
.tg-btn:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 18px 40px rgba(42,171,238,.6)}

.fstory-tags{margin-top:16px;font-size:13px;color:#9aa3c7}
.story_icons{display:flex;gap:10px;list-style:none;padding:0;margin:0 0 10px}
.story_icons li a{color:#9aa3c7;text-decoration:none}
