 :root{
    --red: #cc0000;
    --red-dark: #b30000;
    --gold: #d4a017;
    --cream: #f6f2ea;
    --navy: #1e3a5f;
    --navy-deep: #142a44;
    --line: #e5e5e5;
  }
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  body{
    background:#fff;
  }
  .topbar{
    background: var(--red);
    height: 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 0 160px;
    font-family: 'Prothom Alo Surjo', 'Noto Sans Bengali', Arial, sans-serif;
    width:100%;
  }
  .topbar-left{
    color:#fff;
    font-size:11.5px;
    font-weight:400;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:24px;
  }
  .topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
  }
  .socials{
    display:flex;
    align-items:center;
    gap:8px;
  }
  .social-icon{
    width:20px;
    height:20px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .social-icon svg{
    width:11px;
    height:11px;
    fill: var(--red);
  }
  .lang-selector{
    color:#fff;
    font-size:11.5px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:4px;
    cursor:pointer;
    white-space:nowrap;
  }
  .lang-selector svg{
    width:9px;
    height:9px;
    fill:none;
    stroke:#fff;
    stroke-width:1.5;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .navbar{
    background: var(--red-dark);
    height: 70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 0 160px;
    font-family: 'Prothom Alo Surjo', 'Noto Sans Bengali', Arial, sans-serif;
    width:100%;
    border-top: 1px solid rgba(255,255,255,0.15);
    gap: 16px;
  }
  .navbar-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
  }
  .navbar-logo img{
    height:55px;
    width:auto;
    display:block;
  }
  .navbar-menu{
    display:flex;
    align-items:center;
    gap: 20px;
    flex:1;
    justify-content:right;
    min-width:0;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .navbar-menu::-webkit-scrollbar{
    display:none;
  }
  .navbar-menu a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    white-space:nowrap;
  }
  .nav-main-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    line-height:1.25;
    gap:1px;
  }
  .nav-main-en{
    font-size:9.5px;
    font-weight:400;
    color: rgba(255,255,255,0.55);
    letter-spacing:0.3px;
  }
  .nav-main-en-dotted{
    border-bottom:1px dotted rgba(255,255,255,0.6);
    padding-bottom:2px;
  }
  .nav-caret{
    display:none;
  }
  .nav-item{
    position:relative;
    display:flex;
    align-items:center;
    flex-shrink:0;
  }
  .nav-item > a{
    display:flex;
    align-items:center;
    gap:4px;
    padding: 20px 0;
  }
  .nav-caret-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    cursor:pointer;
    padding: 24px 6px 24px 2px;
    margin:0;
  }
  .nav-caret{
    width:8px;
    height:8px;
    fill:none;
    stroke:#fff;
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition: transform .2s ease;
    flex-shrink:0;
  }
  .nav-item:hover .nav-caret,
  .nav-item.is-open .nav-caret{
    transform: rotate(180deg);
  }
  .nav-submenu{
    position:fixed;
    top:100%;
    left:50%;
    transform: translateY(6px);
    background: var(--red);
    min-width:170px;
    border-radius:6px;
    box-shadow:0 10px 24px rgba(0,0,0,.3);
    padding:4px 0;
    opacity:0;
    visibility:hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index:1003;
  }
  .nav-item:hover .nav-submenu,
  .nav-item.is-open .nav-submenu{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }
  .nav-submenu a{
    display:block;
    padding:9px 16px;
    font-size:12.5px;
    font-weight:500;
    color:#fff;
    white-space:nowrap;
    border-bottom:1px solid rgba(255,255,255,0.15);
    transition: background .15s ease, padding-left .15s ease;
  }
  .nav-submenu a:last-child{
    border-bottom:none;
  }
  .nav-submenu a:hover{
    background: var(--red-dark);
    padding-left:20px;
  }

  /* ===== Cricket mega menu (desktop only, ≥901px — see 900px breakpoint below where nav-item-mega is hidden) ===== */
  .nav-mega{
    position:fixed;
    top:111px;
    left:50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--red);
    width:460px;
    border-radius:8px;
    box-shadow:0 14px 32px rgba(0,0,0,.32);
    padding:20px 22px;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
    opacity:0;
    visibility:hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index:1003;
  }
  .nav-item-mega:hover .nav-mega,
  .nav-item-mega.is-open .nav-mega{
    opacity:1;
    visibility:visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-mega-heading{
    font-size:12px;
    font-weight:500;
    color:#fff;
    letter-spacing:0.5px;
    padding-bottom:9px;
    border-bottom:1px solid rgba(255,255,255,0.4);
    margin-bottom:12px;
  }
  .nav-mega-col{
    display:flex;
    flex-direction:column;
  }
  .nav-mega-col a{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    gap:8px;
    font-size:13.5px;
    font-weight:500;
    color:#fff;
    text-decoration:none;
    padding:4.5px 0;
    white-space:nowrap;
  }
  .nav-mega-col a.nav-mega-more{
    color:#fff;
    font-size:12.5px;
    margin-top:1px;
  }
  .nav-mega-en{
    font-size:10.5px;
    font-weight:400;
    color: rgba(255,255,255,0.55);
    white-space:nowrap;
  }
  .nav-mega-col a.nav-mega-more .nav-mega-en{
    color: rgba(255,255,255,0.55);
  }
  @media (max-width:900px){
    .nav-item-mega{ display:none; }
  }

  /* ===== Latest News Section ===== */
  .latest-section{
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 160px 20px;
  }

  .latest-grid{
    display:grid;
    grid-template-columns: 7fr 3fr;
    gap: 20px;
    align-items: start;
  }

  .cat-tag{
    position:absolute; z-index:2; top:10px; left:10px;
    background:var(--red); color:#fff; font-size:10.5px; font-weight:700;
    padding:4px 10px; border-radius:4px; text-decoration:none; letter-spacing:0.2px;
  }
  .cat-tag:hover{ background:var(--red-dark); }
  .cat-tag.small{ font-size:9.5px; padding:3px 8px; top:6px; left:6px; }

  .feature-hero{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
  }
  .feature-hero-slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }
  .feature-hero-slide.active{
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .feature-hero-link{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  .feature-hero-thumb{
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  }
  .feature-hero-scrim{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.05) 80%);
  }
  .feature-hero-content{
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 480px;
  }
  .feature-hero-badge{
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
  }
  .feature-hero-title{
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .feature-hero-desc{
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .feature-hero-cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 4px;
  }
  .feature-hero-dots{
    position: absolute;
    z-index: 3;
    left: 40px;
    bottom: 24px;
    display: flex;
    gap: 6px;
  }
  .fh-dot{
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .fh-dot:hover{ background: rgba(255,255,255,0.7); }
  .fh-dot-active{ background: var(--red); transform: scale(1.2); }
  .fh-dot-active:hover{ background: var(--red); }
  .feature-hero-nav{
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
  }
  .fh-nav-btn{
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .fh-nav-btn:hover{ background: rgba(0,0,0,0.75); }

  .side-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    height: 350px;
  }
  .side-item-sm{
    flex: 1;
    min-height: 0;
  }
  .side-item-sm-link{
    text-decoration:none;
    color:inherit;
    display:block;
    height: 100%;
  }
  .side-thumb-sm{
    position: relative;
    width:100%;
    height: 100%;
    border-radius:6px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  }
  .side-scrim-sm{
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0) 100%);
  }
  .side-tag-sm{
    position:absolute; z-index:2; top:8px; left:8px;
    background:var(--red); color:#fff; font-size:10px; font-weight:700;
    padding:3px 8px; border-radius:4px;
  }
  .side-overlay-sm{
    position:absolute;
    z-index:2;
    left:0; right:0; bottom:0;
    padding:12px;
  }
  .side-title-sm{
    font-size:14.5px;
    font-weight:700;
    color:#fff;
    line-height:1.35;
    margin-bottom:4px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .side-time-sm{
    font-size:11px;
    color:rgba(255,255,255,0.85);
    display:flex;
    align-items:center;
    gap:4px;
  }
  .side-time-sm i{ font-size:12px; }

  @media (max-width: 900px){
    .latest-section{ padding: 20px 24px 40px; }
    .latest-grid{ grid-template-columns: 1fr; }
    .side-list{ height: auto; }
    .side-item-sm{ flex: none; }
    .side-item-sm-link{ height: auto; }
    .side-thumb-sm{ height: auto; aspect-ratio: 16 / 9; }
    .feature-hero{ min-height: 340px; }
    .feature-hero-content{ padding: 24px; max-width: 100%; }
    .feature-hero-title{ font-size: 22px; }
    .feature-hero-desc{ font-size: 13px; }
  }

  /* ===== Three Card Section ===== */
  .cards-section{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 160px 40px;
  }
  .cards-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .card-item{
    display:flex;
    flex-direction:column;
    text-decoration:none;
  }
  .card-thumb{
    width:100%;
    aspect-ratio: 16 / 10;
    border-radius:4px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    margin-bottom:8px;
  }
  .card-title{
    font-size:13px;
    color:#1a1a1a;
    line-height:1.4;
    margin-bottom:6px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .card-desc{
    display:none;
  }
  .card-meta{
    font-size:11px;
    color: var(--red);
    font-weight:500;
  }

  @media (max-width: 900px){
    .cards-section{
      padding: 0 24px 40px;
    }
    .cards-grid{
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  }
  @media (max-width: 480px){
    .cards-grid{
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
  }

  /* ===== Divider ===== */
  .section-divider{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 160px;
  }
  .section-divider hr{
    border:none;
    border-top: 1px solid #e5e5e5;
    margin: 0 0 30px;
  }

  /* ===== Video Card Section ===== */
  .video-section{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 160px 40px;
    font-family: 'Prothom Alo Surjo', 'Noto Sans Bengali', Arial, sans-serif;
  }
  .video-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width:0;
  }
  .video-card{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    cursor:pointer;
    min-width:0;
    max-width:100%;
  }
  .video-thumb{
    position:relative;
    width:100%;
    aspect-ratio: 16 / 9;
    border-radius:8px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    overflow:hidden;
  }
  .video-tag-badge{
    position:absolute;
    z-index:2;
    top:12px;
    left:12px;
    background: var(--amber, #C7900A);
    color:#fff;
    font-size:11.5px;
    font-weight:700;
    padding:4px 10px;
    border-radius:4px;
  }
  .video-play-circle{
    position:absolute;
    z-index:2;
    left:12px;
    bottom:12px;
    width:40px;
    height:40px;
    border-radius:50%;
    background: rgba(255,255,255,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .video-play-circle svg{
    width:16px;
    height:16px;
    fill: var(--navy-deep, #1a1a1a);
    margin-left:2px;
  }
  .video-posted-time{
    position:absolute;
    z-index:2;
    left:60px;
    bottom:20px;
    background: rgba(0,0,0,0.55);
    color:#fff;
    font-size:11px;
    padding:3px 8px;
    border-radius:4px;
    white-space:nowrap;
  }
  .video-duration{
    position:absolute;
    z-index:2;
    right:12px;
    bottom:12px;
    background: rgba(0,0,0,0.6);
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:3px 9px;
    border-radius:4px;
  }

  @media (max-width: 1100px){
    .video-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 900px){
    .section-divider,
    .video-section{
      padding-left:24px;
      padding-right:24px;
    }
    .video-grid{
      grid-template-columns: 1fr;
      gap:20px;
    }
  }

  /* ===== Video click-to-play modal ===== */
  .video-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:1000;
    align-items:center;
    justify-content:center;
  }
  .video-modal.active{
    display:flex;
  }
  .video-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.85);
  }
  .video-modal-box{
    position:relative;
    width:min(900px, 92vw);
  }
  .video-modal-close{
    position:absolute;
    top:-40px;
    right:0;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
    line-height:1;
    cursor:pointer;
    padding:4px 8px;
  }
  .video-modal-frame{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    background:#000;
  }
  .video-modal-frame iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
  }

  /* ===== Reels Card Section ===== */
  .reels-section{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 160px 40px;
  }
  .reels-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .reel-card{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    cursor:pointer;
  }
  .reel-thumb{
    position:relative;
    width:100%;
    aspect-ratio: 3 / 4;
    border-radius:6px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    overflow:hidden;
  }
  .reel-thumb-bg{
    position:absolute;
    inset:0;
    /* সোর্স থাম্বনেইলে অনেক সময় নিজের ভেতরেই কালো পিলারবক্স বার বেক করা
       থাকে (portrait video, landscape ক্যানভাসে); scale(1.4) করে জুম-ইন
       করে ওই বার-গুলো ক্রপ করে বাদ দেওয়া হচ্ছে। */
    transform: scale(1.4);
  }
  .reel-play{
    position:absolute;
    z-index:2;
    left:12px;
    bottom:12px;
    width:36px;
    height:36px;
    border-radius:50%;
    background: rgba(255,255,255,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .reel-play svg{
    width:14px;
    height:14px;
    fill: var(--navy-deep, #1a1a1a);
    margin-left:2px;
  }
  .reel-posted-time{
    position:absolute;
    z-index:2;
    left:56px;
    bottom:18px;
    background: rgba(0,0,0,0.55);
    color:#fff;
    font-size:10px;
    padding:2px 6px;
    border-radius:4px;
    white-space:nowrap;
  }

  @media (max-width: 900px){
    .reels-section{
      padding-left:24px;
      padding-right:24px;
    }
    .reels-grid{
      grid-template-columns: repeat(2, 1fr);
      gap:16px;
    }
  }

  /* ===== Player Bio Section ===== */
  .players-section{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 160px 40px;
  }
  .players-heading{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:700;
    color:#1a1a1a;
    margin-bottom:22px;
    text-transform:uppercase;
    letter-spacing:0.5px;
  }
  .players-heading::before{
    content:"";
    width:4px;
    height:18px;
    background: var(--red);
    border-radius:2px;
  }
  .players-grid{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  .player-card{
    position:relative;
    display:flex;
    flex-direction:column;
    text-decoration:none;
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    overflow:hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .player-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(204,0,0,0.12);
    border-color:#f3d6d6;
  }
  .player-photo-wrap{
    position:relative;
    width:100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(150deg, var(--red) 0%, var(--red-dark) 100%);
    overflow:hidden;
  }
  .player-photo-wrap::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  }
  .player-number{
    position:absolute;
    top:8px;
    left:8px;
    width:26px;
    height:26px;
    border-radius:50%;
    background:rgba(255,255,255,0.92);
    color: var(--red-dark);
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
  }
  .player-info{
    padding:12px 12px 14px;
  }
  .player-name{
    font-size:13.5px;
    font-weight:700;
    color:#1a1a1a;
    line-height:1.35;
    margin-bottom:4px;
  }
  .player-role{
    display:inline-block;
    font-size:10px;
    font-weight:600;
    color: var(--red-dark);
    background:#fdeaea;
    padding:2px 8px;
    border-radius:20px;
    letter-spacing:0.3px;
  }

  @media (max-width: 900px){
    .players-section{
      padding-left:24px;
      padding-right:24px;
    }
    .players-grid{
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
  }

  /* ===== Cricket & Football: 4 Equal Detail Cards, Full Width ===== */
  .cricket-row, .football-row{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:20px;
    width:100%;
  }

  .circle-player-detail{
    text-decoration:none;
    background:#fff;
    border:2px solid var(--red);
    border-radius:10px;
    padding:24px 22px 26px;
    color:#1a1a1a;
    position:relative;
    overflow:hidden;
    display:block;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .circle-player-detail:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(204,0,0,.16);
  }
  .circle-player-detail::after{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:160px;
    height:160px;
    border-radius:50%;
    background: rgba(204,0,0,.05);
  }
  .detail-photo-wrap{
    position:relative;
    width:80px;
    margin-bottom:14px;
  }
  .detail-photo{
    width:80px;
    height:80px;
    border-radius:50%;
    background: rgba(204,0,0,.08);
    border:3px solid var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .detail-photo img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
  }
  .detail-number{
    position:absolute;
    bottom:-8px;
    right:-10px;
    width:32px;
    height:32px;
    border-radius:50%;
    background: var(--gold, #d4a017);
    color:#1a1a1a;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
  }
  .detail-name{
    font-size:17px;
    font-weight:700;
    margin-bottom:4px;
    line-height:1.3;
    color:#1a1a1a;
  }
  .detail-role{
    display:inline-block;
    font-size:10.5px;
    font-weight:600;
    color: var(--red-dark);
    background: #fdeaea;
    padding:3px 10px;
    border-radius:20px;
    margin-bottom:14px;
  }
  .detail-bio{
    font-size:11.5px;
    line-height:1.65;
    color:#5a5a5a;
    margin-bottom:16px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .detail-stats-table{
    width:100%;
    border-collapse:collapse;
    font-size:10.5px;
    margin-bottom:14px;
  }
  .detail-stats-table th{
    text-align:right;
    font-weight:600;
    color:#8a8a8a;
    padding:5px 0;
    border-bottom:1px solid #ececec;
  }
  .detail-stats-table th:first-child{
    text-align:left;
  }
  .detail-stats-table td{
    text-align:right;
    padding:6px 0;
    font-weight:600;
    color:#1a1a1a;
  }
  .detail-stats-table td:first-child{
    text-align:left;
    color:#6b6b6b;
    font-weight:400;
  }
  .detail-more{
    font-size:11.5px;
    font-weight:700;
    color: var(--red-dark);
    border-bottom:1px solid var(--red-dark);
    padding-bottom:2px;
  }

  @media (max-width: 1100px){
    .cricket-row, .football-row{
      grid-template-columns: repeat(2, 1fr);
    }
  }
  /* ===== Live Cricket Ticker — গোল্ড হেয়ারলাইন / ক্রিম বেস ===== */
  .live-ticker{
    background: var(--cream);
    display:flex;
    align-items:stretch;
    border-top:2px solid var(--gold);
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    padding:0 160px;
  }
  .lt-tag{
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:6px;
    color: var(--red-dark);
    font-size:11px;
    font-weight:800;
    padding:0 16px;
    white-space:nowrap;
    letter-spacing:0.3px;
  }
  .lt-tag .dot{
    width:6px; height:6px; border-radius:50%; background: var(--red-dark);
    animation: lt-pulse 1.3s infinite ease-in-out;
  }
  @keyframes lt-pulse{
    0%,100%{ opacity:1; } 50%{ opacity:.3; }
  }
  .lt-matches{
    display:flex;
    align-items:stretch;
    gap:10px;
    padding:8px 12px;
    overflow-x:auto;
    scrollbar-width:none;
    flex:1;
  }
  .lt-matches::-webkit-scrollbar{ display:none; }
  .lt-match{
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:2px;
    padding:8px 18px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    border-radius:8px;
    cursor:pointer;
    text-decoration:none;
    transition:background .15s ease, box-shadow .15s ease;
  }
  .lt-match:hover{ background: rgba(204,0,0,.05); box-shadow:0 2px 6px rgba(0,0,0,.06); }
  .lt-teams{ display:flex; align-items:center; gap:8px; }
  .lt-team{ display:flex; align-items:center; gap:5px; }
  .lt-team-name{ color:#2a2a2a; font-size:12px; font-weight:600; }
  .lt-team-score{ color: var(--red-dark); font-size:12px; font-weight:800; }
  .lt-vs{ color:#b8b3a5; font-size:10px; }
  .lt-status{ color:#8a6d00; font-size:10px; font-weight:600; white-space:nowrap; }
  .lt-more{
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:4px;
    padding:0 18px;
    color: var(--red-dark);
    font-size:11px;
    font-weight:700;
    text-decoration:none;
    margin-left:auto;
  }
  @media (max-width:900px){
    .lt-tag{ padding:0 12px; }
    .topbar,
    .navbar,
    .live-ticker{ padding:0 24px; }
    .lt-matches{ padding:8px 8px; gap:8px; }
    .lt-match{ padding:8px 14px; }
    .lt-more{ padding:0 14px; }
  }

  /* ===== Live Football Strip — সিঙ্গেল-রো (cricket টিকারের মতোই, নেভি অ্যাকসেন্ট) ===== */
  .fb-strip{
    background: var(--cream);
    display:flex;
    align-items:stretch;
    border-top:2px solid var(--navy, #1e3a5f);
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    padding:0 160px;
  }
  .fb-tag{
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:6px;
    color: var(--navy, #1e3a5f);
    font-size:11px;
    font-weight:800;
    padding:0 16px;
    white-space:nowrap;
    letter-spacing:0.3px;
  }
  .fb-tag .dot{
    width:6px; height:6px; border-radius:50%; background: var(--navy, #1e3a5f);
    animation: lt-pulse 1.3s infinite ease-in-out;
  }
  .fb-strip-matches{
    display:flex;
    align-items:stretch;
    gap:10px;
    padding:8px 12px;
    overflow-x:auto;
    scrollbar-width:none;
    flex:1;
  }
  .fb-strip-matches::-webkit-scrollbar{ display:none; }
  .fb-match{
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:2px;
    padding:8px 18px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    border-radius:8px;
    cursor:pointer;
    text-decoration:none;
    transition:background .15s ease, box-shadow .15s ease;
  }
  .fb-match:hover{ background: rgba(30,58,95,.05); box-shadow:0 2px 6px rgba(0,0,0,.06); }
  .fb-comp{
    font-size:9px;
    font-weight:700;
    color: var(--gold);
    text-transform:uppercase;
    letter-spacing:0.3px;
    margin-bottom:1px;
    display:block;
  }
  .fb-teams-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }
  .fb-team-name{ font-size:12px; font-weight:600; color:#2a2a2a; }
  .fb-score{ font-size:12px; font-weight:800; color: var(--navy, #1e3a5f); }
  .fb-strip-more{
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:4px;
    padding:0 18px;
    color: var(--navy, #1e3a5f);
    font-size:11px;
    font-weight:700;
    text-decoration:none;
    margin-left:auto;
  }
  @media (max-width:900px){
    .fb-tag{ padding:0 12px; }
    .topbar,
    .navbar,
    .fb-strip{ padding:0 24px; }
    .fb-strip-matches{ padding:8px 8px; gap:8px; }
    .fb-match{ padding:8px 14px; }
    .fb-strip-more{ padding:0 14px; }
  }

  /* ===== Footer ===== */
  footer a{ text-decoration:none; }
  footer{ width:100%; }
  .f2-main{ background:var(--red); }
  .f2-main-in{
    max-width:1600px; margin:0 auto; padding:40px 160px;
    display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px;
  }
  .f2-info p{ color:#fff; font-size:11.5px; line-height:1.9; opacity:.92; }
  .f2-social-row{ display:flex; gap:8px; margin-top:16px; }
  .f2-icon{
    width:26px; height:26px; border-radius:50%; background:#fff;
    display:flex; align-items:center; justify-content:center;
    color: var(--red-dark); font-size:11px; font-weight:800;
  }
  .f2-col{ display:flex; flex-direction:column; gap:13px; }
  .f2-col a{ color:#fff; font-size:12.5px; font-weight:500; opacity:.9; transition:opacity .15s ease; }
  .f2-col a:hover{ opacity:1; text-decoration:underline; }
  .f2-bottom{ background: var(--red-dark); }
  .f2-bottom-in{
    max-width:1600px; margin:0 auto; padding:16px 160px;
    display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  }
  .f2-copyright{ color:rgba(255,255,255,.75); font-size:11.5px; }
  .f2-legal{ display:flex; gap:18px; }
  .f2-legal a{ color:rgba(255,255,255,.85); font-size:11.5px; }
  .f2-legal a:hover{ text-decoration:underline; }
  @media (max-width:1100px){ .f2-main-in{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width:900px){
    .f2-main-in{ padding-left:24px; padding-right:24px; }
    .f2-bottom-in{ padding-left:24px; padding-right:24px; }
  }
  @media (max-width:600px){
    .f2-main-in{ grid-template-columns: 1fr; }
  }

  /* ===== Category / Listing Pages (videos.php etc.) ===== */
  .video-listing-wrap{
    max-width:1600px; margin:0 auto; padding:32px 160px 60px;
    font-family:'Noto Sans Bengali', Arial, sans-serif;
  }
  .back-link{
    display:inline-block; margin-bottom:18px; font-size:13px;
    color: var(--navy); text-decoration:none; font-weight:600;
  }
  .category-header{
    display:flex; align-items:baseline; gap:12px; margin-bottom:24px;
    padding-bottom:18px; border-bottom:2px solid var(--red);
  }
  .category-header h1{ font-size:24px; font-weight:800; color:#1a1a1a; }
  .category-count{ font-size:13px; color:#888; font-weight:600; }
  .video-listing-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
  }
  .empty-cat{ text-align:center; padding:60px 20px; color:#777; font-size:14px; }
  .empty-cat a{ color: var(--red); font-weight:700; }

  .reels-listing-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
  }
  @media (max-width:560px){
    .reels-listing-grid{ grid-template-columns:1fr; }
  }

  @media (max-width:900px){
    .video-listing-wrap{ padding-left:24px; padding-right:24px; }
    .video-listing-grid{ grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:560px){
    .video-listing-grid{ grid-template-columns:1fr; }
  }

  /* ===== Matches Page (matches.php) ===== */
  .matches-page{ max-width:1600px; margin:0 auto; padding:28px 160px 60px; font-family:'Noto Sans Bengali',Arial,sans-serif; }
  .matches-inner{ max-width:900px; margin:0 auto; }
  @media (max-width:900px){
    .matches-page{ padding-left:24px; padding-right:24px; }
  }
  .matches-page h1{ font-size:22px; color:#1b1b1b; margin-bottom:20px; }
  .matches-sport-title{
    font-size:14px; font-weight:800; color:#fff; background:var(--navy);
    display:inline-block; padding:6px 16px; border-radius:6px; margin:22px 0 12px;
  }
  .matches-sport-title.is-football{ background:var(--red); }
  .matches-cardtabs{ display:grid; grid-template-columns:repeat(3, 1fr); gap:10px; margin-bottom:24px; }
  .matches-ctab{
    text-align:left; font-family:'Noto Sans Bengali',Arial,sans-serif;
    background:#fafafa; border:1.5px solid #eee; border-radius:10px;
    padding:12px 14px; cursor:pointer; position:relative;
  }
  .matches-ctab .ctab-label{ display:block; font-size:13px; font-weight:700; color:#777; margin-bottom:4px; }
  .matches-ctab .ctab-num{ font-size:20px; font-weight:800; color:#999; }
  .matches-ctab.is-active{ background:var(--navy); border-color:var(--navy); }
  .matches-ctab.is-active .ctab-label{ color:rgba(255,255,255,0.75); }
  .matches-ctab.is-active .ctab-num{ color:#fff; }
  .matches-ctab.is-active.is-live{ background:var(--red); border-color:var(--red); }
  .matches-ctab .ctab-dot{ position:absolute; top:12px; right:12px; width:7px; height:7px; border-radius:50%; background:var(--red); display:none; }
  .matches-ctab.is-live .ctab-dot{ display:block; }
  .matches-panel{ display:none; }
  .matches-panel.is-active{ display:block; }
  .match-row{
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    border:1px solid #eee; border-radius:8px; padding:14px 18px; margin-bottom:10px;
  }
  .match-row.is-live{ border-color:var(--red); background:rgba(204,0,0,0.03); }
  .match-comp{ font-size:11.5px; color:#888; font-weight:600; margin-bottom:6px; }
  .match-teams{ display:flex; flex-direction:column; gap:4px; }
  .match-team-line{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:#222; }
  .match-team-line .score{ font-weight:800; color:var(--navy); min-width:24px; text-align:right; }
  .match-status{ font-size:12px; font-weight:700; color:var(--gold); white-space:nowrap; }
  .match-status.is-live{ color:var(--red); }
  .match-empty{ color:#999; font-size:13.5px; padding:18px 0; }
  .scorecard-wrap{ border:1px solid #eee; border-top:none; border-radius:0 0 10px 10px; margin:-10px 0 14px; padding:0 18px 16px; background:#fbfbfb; }
  .scorecard-toggle{
    background:#fff; border:1.5px solid var(--navy); color:var(--navy);
    font-family:'Noto Sans Bengali',Arial,sans-serif; font-size:12.5px; font-weight:700;
    cursor:pointer; padding:8px 16px; border-radius:20px; display:inline-block; margin:12px 0;
  }
  .scorecard-toggle:hover{ background:var(--navy); color:#fff; }
  .scorecard-body{ display:none; }
  .scorecard-body.is-open{ display:block; }
  .sc-inning{ background:#fff; border:1px solid #e4e4e4; border-radius:6px; margin-bottom:12px; overflow:hidden; }
  .sc-inning:last-child{ margin-bottom:0; }
  .sc-inning-head{
    display:flex; align-items:baseline; gap:8px; background:var(--navy); color:#fff;
    padding:9px 14px; font-size:12.5px;
  }
  .sc-inning-ord{ font-weight:700; color:var(--gold); }
  .sc-inning-team{ font-weight:700; flex:1; }
  .sc-inning-total{ font-weight:800; font-size:14px; }
  .sc-table{ width:100%; border-collapse:collapse; font-size:12.5px; }
  .sc-table th{
    text-align:right; color:#999; font-weight:700; font-size:10px; text-transform:uppercase;
    letter-spacing:0.3px; padding:7px 10px; border-bottom:1.5px solid #eee; background:#fafafa;
  }
  .sc-table th.sc-namecol{ text-align:left; }
  .sc-table td{ padding:6px 10px; color:#333; text-align:right; border-bottom:1px solid #f2f2f2; vertical-align:top; }
  .sc-table tr:last-child td{ border-bottom:none; }
  .sc-table td.sc-namecol{ text-align:left; }
  .sc-batname{ font-weight:600; color:#1b1b1b; }
  .sc-dismissal{ font-size:10.5px; color:#999; font-style:italic; margin-top:1px; }
  .sc-table .sc-strong{ font-weight:800; color:var(--navy); }
  .sc-total-row{ background:#f7f7f5; }
  .sc-total-row td{ font-weight:800; color:var(--navy); border-top:1.5px solid #ddd; }
  .sc-bowling{ margin-top:2px; border-top:6px solid #f5f5f5; }
  .back-home{ display:inline-block; margin-bottom:16px; font-size:13px; color:var(--navy); text-decoration:none; font-weight:600; }

  /* ===== Rankings Page (rankings.php) ===== */
  .ranking-page{ max-width:1600px; margin:0 auto; padding:28px 160px 60px; font-family:'Noto Sans Bengali',Arial,sans-serif; }
  .ranking-inner{ max-width:1200px; margin:0 auto; }
  @media (max-width:900px){
    .ranking-page{ padding-left:24px; padding-right:24px; }
  }
  .ranking-page h1{ font-size:22px; color:#1b1b1b; margin-bottom:4px; }
  .ranking-updated{
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #0F6E56;
    background: #E7F3EC; border-radius: 20px; padding: 5px 12px 5px 10px;
    margin-bottom: 18px;
  }
  .ranking-updated::before{
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #0F6E56; flex-shrink: 0;
  }
  .ranking-format-tabs{ display:flex; gap:8px; margin-bottom:22px; border-bottom:1px solid #eee; }
  .ranking-format-tab{
    display:inline-block; padding:10px 18px; font-size:13.5px; font-weight:700;
    color:#666; text-decoration:none; border-bottom:2px solid transparent; margin-bottom:-1px;
  }
  .ranking-format-tab.is-active{ color:var(--navy); border-bottom-color:var(--navy); }
  .ranking-format-tab:hover{ color:var(--navy); }
  .ranking-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:20px; }
  @media (max-width:900px){ .ranking-grid{ grid-template-columns:1fr; } }
  .ranking-card{ border:1px solid #eee; border-radius:8px; padding:16px 18px; }
  .ranking-card-title{ font-size:14px; font-weight:800; color:#fff; background:var(--navy); display:inline-block; padding:6px 16px; border-radius:6px; margin-bottom:14px; }
  .ranking-row{ display:flex; align-items:center; gap:14px; padding:10px 0; border-bottom:1px solid #f2f2f2; }
  .ranking-row:last-child{ border-bottom:none; }
  .ranking-pos{ flex-shrink:0; width:26px; height:26px; border-radius:50%; background:#f5f5f5; color:#333; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; }
  .ranking-name-wrap{ flex:1; min-width:0; }
  .ranking-name{ font-size:13.5px; font-weight:600; color:#222; overflow-wrap:anywhere; }
  .ranking-team{ font-size:11.5px; color:#888; margin-top:2px; }
  .ranking-rating{ flex-shrink:0; font-size:14px; font-weight:800; color:var(--navy); text-align:right; }
  .ranking-points{ display:block; font-size:10.5px; font-weight:600; color:#999; }
  .ranking-empty{ color:#999; font-size:13.5px; padding:12px 0; }

  /* ===== Article Page (post.php) ===== */
  .article-page-wrap{ max-width:1600px; margin:0 auto; padding:12px 160px 60px; display:grid; grid-template-columns:1fr 320px; gap:36px; font-family:'Noto Sans Bengali',Arial,sans-serif; align-items:start; }
  @media (max-width:960px){ .article-page-wrap{ grid-template-columns:1fr; } }
  @media (max-width:900px){ .article-page-wrap{ padding-left:24px; padding-right:24px; } .page-breadcrumb-wrap{ padding-inline:24px; } }

  .article-cat{ display:inline-block; font-size:12px; font-weight:800; color:#fff; background:var(--red); padding:5px 14px; border-radius:6px; margin-bottom:14px; }
  .article-trending{ display:inline-block; font-size:12px; font-weight:800; color:var(--red-dark); background:var(--cream); padding:5px 14px; border-radius:6px; margin:0 0 14px 8px; }
  .article-meta-dot{ display:inline-block; width:3px; height:3px; border-radius:50%; background:#bbb; margin:0 6px; vertical-align:middle; }

  .reaction-block{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:20px 0; margin:24px 0; }
  .reaction-block .section-heading{ margin-bottom:12px; }

  .reaction-bar{ display:flex; gap:10px; flex-wrap:wrap; }
  .reaction-btn{ display:flex; align-items:center; gap:7px; border:1px solid var(--line); background:#fff; border-radius:20px; padding:8px 16px; cursor:pointer; transition:background .15s,border-color .15s; }
  .reaction-btn:hover{ background:var(--cream); }
  .reaction-btn.reacted{ border-color:var(--red); background:#fdeceb; cursor:default; }
  .reaction-emoji{ font-size:17px; }
  .reaction-count{ font-size:12.5px; font-weight:700; color:#666; }
  .reaction-btn.reacted .reaction-count{ color:var(--red-dark); }

  .poll-card{ background:var(--cream); border-top:4px solid var(--red); border-radius:10px; padding:16px 18px; margin-bottom:24px; }
  .poll-question{ font-size:14px; font-weight:800; color:#1a1a1a; margin:0 0 12px; display:flex; align-items:center; gap:7px; }
  .poll-question::before{ content:"🗳️"; font-size:15px; }
  .poll-buttons{ display:flex; align-items:center; gap:10px; }
  .poll-btn{ flex:1; display:flex; align-items:center; justify-content:center; gap:9px; background:#fff; border:1.5px solid #ddd6c4; color:#1a1a1a; border-radius:9px; padding:10px 8px; font-size:13.5px; font-weight:700; cursor:pointer; transition:transform .12s,border-color .15s,box-shadow .15s; }
  .poll-btn:hover{ transform:translateY(-1px); box-shadow:0 3px 10px rgba(0,0,0,.08); }
  .poll-btn:disabled{ opacity:.6; cursor:default; transform:none; box-shadow:none; }
  .poll-btn-avatar{ width:26px; height:26px; border-radius:50%; flex-shrink:0; }
  .poll-btn[data-choice="messi"]{ border-color:#75AADB; }
  .poll-btn[data-choice="messi"]:hover{ background:#eef6fc; }
  .poll-btn[data-choice="messi"] .poll-btn-avatar{ background:#75AADB; }
  .poll-btn[data-choice="ronaldo"]{ border-color:#006600; }
  .poll-btn[data-choice="ronaldo"]:hover{ background:#eaf5ea; }
  .poll-btn[data-choice="ronaldo"] .poll-btn-avatar{ background:#006600; }
  .poll-vs{ font-size:12px; font-weight:800; color:#b8ae94; flex-shrink:0; }
  .poll-bar-row{ margin-bottom:10px; }
  .poll-bar-row:last-of-type{ margin-bottom:0; }
  .poll-bar-label{ display:flex; justify-content:space-between; font-size:12.5px; font-weight:700; margin-bottom:5px; color:#1a1a1a; }
  .poll-bar-pct{ font-weight:800; }
  .poll-bar-track{ height:9px; background:#eae5d6; border-radius:5px; overflow:hidden; }
  .poll-bar-fill{ height:100%; transition:width .3s; }
  .poll-bar-fill-messi{ background:#75AADB; }
  .poll-bar-fill-ronaldo{ background:#006600; }
  .poll-meta{ font-size:11.5px; color:#8a8577; margin:12px 0 0; }
  .article-title{ font-size:26px; font-weight:800; line-height:1.35; color:#1a1a1a; margin-bottom:14px; }
  .article-meta{ font-size:13px; color:#888; margin-bottom:22px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
  .article-meta .dot{ width:3px;height:3px;border-radius:50%;background:#ccc; }

  .article-meta-bar{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-bottom:22px; padding:14px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .article-meta-author{ display:flex; align-items:center; gap:12px; }
  .article-meta-avatar{ width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--red),var(--red-dark)); color:#fff; font-size:13px; font-weight:500; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .article-meta-name{ font-size:13.5px; font-weight:500; color:#1a1a1a; }
  .article-meta-time{ display:flex; align-items:center; gap:5px; font-size:12px; color:#888; margin-top:2px; }
  .article-share{ display:flex; align-items:center; gap:8px; }
  .article-share-btn{ width:32px; height:32px; border-radius:50%; border:1px solid var(--line); background:#fff; display:flex; align-items:center; justify-content:center; text-decoration:none; cursor:pointer; padding:0; transition:background .15s; }
  .article-share-btn:hover{ background:var(--cream); }
  @media (max-width:480px){ .article-meta-bar{ padding:12px 0; } }
  .article-summary{ font-size:16.5px; font-weight:600; color:#3a3a3a; line-height:1.7; padding-left:16px; border-left:3px solid var(--red); margin-bottom:26px; }

  .scorecard-card{ background:var(--cream); border-left:4px solid var(--red); border-radius:16px; overflow:hidden; padding:1.1rem 1.25rem; margin-bottom:1.25rem; }
  .scorecard-series{ font-size:12px; color:#8a8577; font-weight:400; margin:0 0 10px; }
  .scorecard-row{ display:flex; justify-content:space-between; align-items:baseline; padding:7px 0; }
  .scorecard-row-bordered{ border-top:1px solid #ddd6c4; }
  .scorecard-team{ font-size:13.5px; font-weight:600; color:#1a1a1a; line-height:1.4; }
  .scorecard-score{ font-size:13.5px; font-weight:600; color:#1a1a1a; line-height:1.4; }
  .scorecard-status{ font-size:12px; color:#8a8577; margin:10px 0 0; padding-top:8px; border-top:1px solid #ddd6c4; }

  .scard-innings-title{ font-size:14px; font-weight:700; color:#1a1a1a; margin:18px 0 8px; }
  .scard-innings-title:first-of-type{ margin-top:0; }

  .scard-tabs{ display:flex; gap:4px; background:#fff; border-radius:10px; padding:4px; margin-bottom:18px; }
  .scard-tab{ flex:1; background:none; border:none; border-radius:7px; padding:8px 4px; font-size:12px; font-weight:700; color:#8a8577; cursor:pointer; white-space:nowrap; transition:background .15s,color .15s; }
  .scard-tab.active{ background:var(--red); color:#fff; }
  .scard-panel{ display:none; }
  .scard-panel.active{ display:block; }

  .scard-columns{ display:grid; grid-template-columns:1fr 1fr; gap:0 28px; }
  .scard-column{ min-width:0; }
  .scard-section-label{ font-size:10.5px; font-weight:700; color:#8a8577; text-transform:uppercase; letter-spacing:0.5px; margin:0 2px 6px; }
  .scard-rows{ margin-bottom:16px; }
  .scard-row-item{ display:flex; align-items:center; justify-content:space-between; padding:9px 2px; gap:10px; border-bottom:1px solid var(--line); }
  .scard-row-item.top .scard-player-name{ font-weight:700; }
  .scard-row-left{ min-width:0; }
  .scard-player-name{ font-size:13.5px; font-weight:600; color:#1a1a1a; margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .scard-out-desc{ font-size:11px; color:#999; margin:2px 0 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .scard-row-right{ text-align:right; flex-shrink:0; }
  .scard-runs{ font-size:14.5px; font-weight:600; color:#1a1a1a; margin:0; }
  .scard-row-item.top .scard-runs{ color:var(--red); }
  .scard-meta{ font-size:10.5px; color:#999; margin:0; white-space:nowrap; }
  .scard-more{ display:none; }
  .scard-more-btn{ display:block; width:100%; background:none; border:none; padding:9px 2px 2px; font-size:11.5px; font-weight:700; color:var(--red); cursor:pointer; text-align:center; }
  .scard-block{ background:var(--cream); border-left:4px solid var(--red); border-radius:16px; padding:18px 20px; margin-bottom:20px; overflow:hidden; }
  @media (max-width:640px){ .scard-block{ padding:14px 16px; } }
  @media (max-width:600px){ .scard-columns{ grid-template-columns:1fr; gap:16px 0; } }
  .article-thumb{ width:100%; aspect-ratio:16/9; border-radius:12px; background:linear-gradient(135deg,var(--red),var(--red-dark)); background-size:cover; background-position:center; }
  .article-thumb-credit{ font-size:11.5px; color:#999; text-align:right; margin:6px 0 26px; font-style:italic; }
  .article-body{ font-size:15.5px; line-height:1.9; color:#262626; }
  .article-body p{ margin-bottom:20px; }
  .article-body img{ max-width:100%; height:auto; border-radius:10px; margin:20px 0; }
  .article-body h2, .article-body h3{ margin:28px 0 14px; color:#1a1a1a; font-size:19px; }
  .article-body a{ color:var(--navy); }
  .not-found{ text-align:center; padding:60px 20px; color:#777; font-size:14px; }
  .not-found a{ color:var(--red); font-weight:700; }

  /* Inline "আরও পড়ুন" box, injected mid-article by mf_inject_inline_related() */
  .inline-related{ background:var(--cream); border-left:4px solid var(--red); border-radius:16px; padding:16px 18px; margin:24px 0; overflow:hidden; }
  .inline-related-heading{ display:flex; align-items:center; gap:8px; font-size:14px; font-weight:800; color:var(--red); margin-bottom:12px; }
  .inline-related-heading svg{ flex-shrink:0; }
  .inline-related-item{ display:flex; gap:12px; text-decoration:none; padding:10px 0; border-top:1px solid var(--line); }
  .inline-related-item:first-of-type{ border-top:none; padding-top:0; }
  .inline-related-thumb{ width:70px; height:52px; border-radius:4px; background:linear-gradient(135deg,var(--red),var(--red-dark)); background-size:cover; background-position:center; flex-shrink:0; }
  .inline-related-title{ font-size:13.5px; font-weight:600; color:#1a1a1a; line-height:1.4; margin-bottom:5px; }
  .inline-related-meta{ font-size:11px; color:#999; }
  @media (max-width:640px){ .inline-related{ padding:14px 16px; } }

  .section-block{ margin-top:42px; padding-top:26px; border-top:1px solid var(--line); }
  .section-block-tight{ margin-top:20px; padding-top:20px; }
  .section-heading{ font-size:15px; font-weight:800; color:#1a1a1a; margin-bottom:16px; }

  .related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  @media (max-width:640px){ .related-grid{ grid-template-columns:1fr; } }

  .players-row-compact{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
  @media (max-width:640px){ .players-row-compact{ grid-template-columns:1fr; } }

  .comment-notice{ background:rgba(26,122,60,0.08); color:#1a7a3c; font-size:13px; font-weight:600; padding:10px 14px; border-radius:8px; margin-bottom:18px; display:flex; align-items:center; gap:8px; }

  .comment-form-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:20px; margin-bottom:24px; }
  .comment-form-title{ font-size:13.5px; font-weight:800; color:#1a1a1a; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
  .comment-form{ display:flex; flex-direction:column; gap:12px; }
  .comment-input-wrap{ position:relative; }
  .comment-input-wrap svg{ position:absolute; left:12px; top:50%; transform:translateY(-50%); width:15px; height:15px; color:#aaa; }
  .comment-form input{
    width:100%; font-family:'Noto Sans Bengali',Arial,sans-serif; font-size:13.5px;
    border:1px solid var(--line); border-radius:9px; padding:11px 14px 11px 38px; background:var(--cream);
  }
  .comment-form input:focus, .comment-form textarea:focus{ outline:none; border-color:var(--red); background:#fff; }
  .comment-form textarea{
    width:100%; font-family:'Noto Sans Bengali',Arial,sans-serif; font-size:13.5px;
    border:1px solid var(--line); border-radius:9px; padding:12px 14px; min-height:100px; resize:vertical; background:var(--cream);
  }
  .comment-submit{
    align-self:flex-start; background:var(--red); color:#fff; border:none; padding:10px 22px; border-radius:9px;
    font-weight:700; font-size:13px; cursor:pointer; font-family:inherit; display:flex; align-items:center; gap:8px;
    box-shadow:0 6px 14px rgba(204,0,0,0.22);
  }
  .comment-submit:hover{ background:var(--red-dark); }
  .comment-submit svg{ width:14px; height:14px; }

  .comment-item{ display:flex; gap:12px; background:#fff; border:1px solid var(--line); border-radius:12px; padding:16px; margin-bottom:12px; }
  .comment-avatar{
    width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--navy-deep));
    color:#fff; font-weight:700; font-size:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .comment-name{ font-size:13.5px; font-weight:700; color:#1a1a1a; }
  .comment-time{ font-size:11.5px; color:#999; margin-left:8px; font-weight:500; }
  .comment-text{ font-size:13.5px; color:#3a3a3a; line-height:1.7; margin-top:4px; }
  .no-comments{ font-size:13px; color:#999; background:var(--cream); border-radius:10px; padding:16px; text-align:center; }

  .sidebar-block{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:18px; margin-bottom:20px; }
  .sidebar-heading{ font-size:13.5px; font-weight:800; color:#1a1a1a; margin-bottom:12px; }

  .filter-box{ padding:16px; }
  .filter-cat{
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    padding:9px 10px; border-radius:8px; text-decoration:none;
    font-size:13px; font-weight:600; color:#444;
  }
  .filter-cat:hover{ background:#f7f7f7; }
  .filter-cat.is-active{ background: var(--red); color:#fff; }
  .filter-cat-count{ font-size:11.5px; font-weight:700; color:#999; }
  .filter-cat.is-active .filter-cat-count{ color:rgba(255,255,255,.85); }
  .sidebar-select{
    width:100%; font-family:'Noto Sans Bengali',Arial,sans-serif; font-size:13px; font-weight:600;
    color:#333; border:1px solid var(--line); border-radius:8px; padding:9px 12px;
    background:var(--cream); margin-bottom:16px; cursor:pointer;
  }
  .sidebar-post{ display:flex; gap:10px; align-items:flex-start; text-decoration:none; color:inherit; padding:9px 0; border-top:1px solid var(--line); }
  .sidebar-post:first-of-type{ border-top:none; }
  .sidebar-post-thumb{ width:52px;height:52px;border-radius:8px; background:linear-gradient(135deg,var(--red),var(--red-dark)); background-size:cover; background-position:center; flex-shrink:0; position:relative; }
  .sidebar-post-title{ font-size:12.5px; font-weight:600; line-height:1.45; color:#222; }
  .sidebar-post-meta{ font-size:11px; color:#999; margin-top:4px; }

  .ad-block{ background:var(--cream); border:1px dashed #c9c2b3; border-radius:12px; padding:26px 14px; text-align:center; margin-bottom:20px; }
  .ad-label{ font-size:10.5px; color:#999; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:8px; font-weight:700; }
  .ad-placeholder{ font-size:12.5px; color:#aaa; }

  /* demo-color ad box — asol AdSense code বসানোর আগ পর্যন্ত position দেখানোর
     জন্য, যাতে চোখে পড়ে এটা placeholder, real ad না */
  .ad-block-demo{
    background: repeating-linear-gradient(45deg, #fdf0e0, #fdf0e0 10px, #fce4c8 10px, #fce4c8 20px);
    border: 1px dashed #e0a45c;
  }
  .ad-placeholder-demo{
    color: #b5661a;
    font-weight: 700;
  }

  .mini-player{ display:flex; gap:10px; align-items:center; padding:10px 0; border-top:1px solid var(--line); text-decoration:none; color:inherit; }
  .mini-player:first-of-type{ border-top:none; }
  .mini-player-photo{ width:40px;height:40px;border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--navy-deep)); flex-shrink:0; }
  .mini-player-name{ font-size:12.5px; font-weight:700; color:#1a1a1a; }
  .mini-player-role{ font-size:11px; color:#888; }

  /* ===== Category Page (category.php) ===== */
  .category-page-wrap{ max-width:1600px; margin:0 auto; padding:12px 160px 60px; display:grid; grid-template-columns:1fr 320px; gap:36px; font-family:'Noto Sans Bengali',Arial,sans-serif; align-items:start; }
  @media (max-width:960px){ .category-page-wrap{ grid-template-columns:1fr; } }
  @media (max-width:900px){ .category-page-wrap{ padding-left:24px; padding-right:24px; } }

  .category-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  @media (max-width:720px){ .category-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:480px){ .category-grid{ grid-template-columns:1fr; } }

  .pagination-row{ display:flex; justify-content:center; gap:8px; margin-top:36px; }
  .page-link{ min-width:34px; height:34px; padding:0 8px; border-radius:8px; border:1px solid var(--line); background:#fff; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:600; color:#555; text-decoration:none; }
  .page-link.active{ background:var(--red); color:#fff; border-color:var(--red); }
  .page-link.disabled{ opacity:0.4; pointer-events:none; }

  .popular-rank{ position:absolute; top:-6px; left:-6px; width:18px;height:18px; border-radius:50%; background:var(--navy); color:#fff; font-size:10px; font-weight:800; display:flex; align-items:center; justify-content:center; }

  .newsletter-box{ background:linear-gradient(135deg,var(--navy),var(--navy-deep)); border-radius:12px; padding:20px; color:#fff; margin-bottom:20px; }
  .newsletter-title{ font-size:14px; font-weight:800; margin-bottom:6px; }
  .newsletter-sub{ font-size:12px; color:rgba(255,255,255,0.7); margin-bottom:14px; line-height:1.5; }
  .newsletter-input{ width:100%; font-family:'Noto Sans Bengali',Arial,sans-serif; font-size:13px; border:none; border-radius:8px; padding:10px 12px; margin-bottom:8px; }
  .newsletter-btn{ width:100%; background:var(--red); color:#fff; border:none; padding:10px; border-radius:8px; font-weight:700; font-size:13px; cursor:pointer; font-family:inherit; }

  /* ===== Static Pages (terms.php, privacy.php, contact.php) ===== */
  .static-page-wrap{
    max-width:900px; margin:0 auto; padding:32px 24px 70px;
    font-family:'Noto Sans Bengali', Arial, sans-serif;
  }
  .static-page-wrap .category-header{ margin-bottom:28px; }
  .static-page-updated{ font-size:12.5px; color:#999; font-weight:600; margin-top:-16px; margin-bottom:24px; }

  .contact-info-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:32px;
  }
  .contact-info-card{
    background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px;
    display:flex; gap:12px; align-items:flex-start;
  }
  .contact-info-icon{
    width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,var(--navy),var(--navy-deep));
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .contact-info-icon svg{ width:17px; height:17px; fill:#fff; }
  .contact-info-label{ font-size:12px; font-weight:700; color:#999; margin-bottom:3px; }
  .contact-info-value{ font-size:13.5px; font-weight:600; color:#1a1a1a; line-height:1.5; }
  .contact-info-value a{ color:#1a1a1a; text-decoration:none; }
  .contact-info-value a:hover{ color:var(--red); }

  .contact-socials-row{ display:flex; gap:10px; margin-bottom:32px; }
  .contact-socials-row .social-icon{
    background:var(--cream); border-radius:50%; width:38px; height:38px;
    display:flex; align-items:center; justify-content:center;
  }
  .contact-socials-row .social-icon svg{ width:16px; height:16px; fill:#555; }
  .contact-socials-row .social-icon:hover svg{ fill:var(--red); }

  @media (max-width:720px){
    .contact-info-grid{ grid-template-columns:1fr; }
  }

  /* ===== Photo Gallery (gallery.php, gallery-photo.php) ===== */
  .gallery-page, .gallery-photo-page{
    max-width:1600px; margin:0 auto; padding:0px 160px 60px;
    font-family:'Noto Sans Bengali',Arial,sans-serif;
  }
  @media (max-width:900px){
    .gallery-page, .gallery-photo-page{ padding-left:24px; padding-right:24px; }
  }
  .gallery-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; flex-wrap:wrap; }
  .gallery-toolbar h1{ font-size:22px; color:#1b1b1b; }
  .gallery-search{ display:flex; align-items:center; background:#fff; border:1px solid var(--line); border-radius:8px; padding:0 4px 0 12px; max-width:280px; flex:1; }
  .gallery-search input{ border:none; outline:none; font-size:13px; padding:8px 0; flex:1; background:transparent; font-family:inherit; }
  .gallery-search button{ background:none; border:none; cursor:pointer; color:#888; padding:8px; display:flex; }
  .gallery-search button:hover{ color:var(--red); }

  .gallery-filter-pills{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
  .gallery-pill{ background:#fff; border:1px solid var(--line); color:#444; font-size:12px; font-weight:600; padding:7px 16px; border-radius:20px; text-decoration:none; }
  .gallery-pill:hover{ border-color:var(--red); color:var(--red); }
  .gallery-pill.is-active{ background:var(--red); border-color:var(--red); color:#fff; }

  .gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
  @media (max-width:960px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:720px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }

  .gallery-card{ display:block; text-decoration:none; }
  .gallery-card-thumb{
    position:relative; aspect-ratio:4/3; border-radius:10px; overflow:hidden;
    background-color:#ddd; background-size:cover; background-position:center;
  }
  .gallery-card-thumb::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(transparent 50%, rgba(0,0,0,.65));
  }
  .gallery-card-badge{
    position:absolute; top:8px; left:8px; z-index:1;
    background:var(--red); color:#fff; font-size:10px; font-weight:700;
    padding:3px 10px; border-radius:5px;
  }
  .gallery-card-title{
    position:absolute; bottom:8px; left:10px; right:10px; z-index:1;
    color:#fff; font-size:12px; font-weight:600; line-height:1.3;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }

  .gallery-photo-wrap{ display:grid; grid-template-columns:1fr 320px; gap:32px; align-items:start; margin-bottom:40px; }
  @media (max-width:820px){ .gallery-photo-wrap{ grid-template-columns:1fr; } }
  .gallery-photo-main{ border-radius:12px; overflow:hidden; background:#eee; }
  .gallery-photo-main img{ width:100%; display:block; }
  .gallery-photo-credit{ font-size:11.5px; color:#999; text-align:right; padding:6px 10px 0; font-style:italic; }
  .gallery-photo-info h1{ font-size:20px; color:#1a1a1a; margin:8px 0 10px; line-height:1.4; }
  .gallery-photo-cat{
    display:inline-block; background:var(--red); color:#fff; font-size:11px; font-weight:700;
    padding:4px 12px; border-radius:5px; text-decoration:none;
  }
  .gallery-photo-meta{ font-size:12.5px; color:#888; margin-bottom:20px; }
  .gallery-download-btn{
    display:inline-flex; align-items:center; gap:8px; background:var(--navy); color:#fff;
    font-size:13.5px; font-weight:700; padding:12px 22px; border-radius:8px; text-decoration:none;
  }
  .gallery-download-btn:hover{ background:var(--navy-deep); }

  .gallery-related-title{ font-size:15px; font-weight:800; color:#1a1a1a; margin-bottom:14px; }

  /* ---------- Tournament hub (cricket-tournament.php) ---------- */
  .tournament-page{ max-width:1600px; margin:0 auto; padding:28px 160px 60px; font-family:'Prothom Alo Surjo','Noto Sans Bengali',Arial,sans-serif; }
  @media (max-width:900px){ .tournament-page{ padding-left:24px; padding-right:24px; } }
  .trn-headrow{ display:flex; align-items:flex-end; justify-content:space-between; margin:18px 0 20px; flex-wrap:wrap; gap:12px; }
  .trn-breadcrumb{ font-size:12px; color:#8a8a86; letter-spacing:.4px; margin-bottom:4px; }
  .trn-h1{ font-size:26px; font-weight:700; margin:0; color:#1A1A2E; }
  .trn-totalbox{ background:#fff; border:1px solid #e5e2d8; border-radius:8px; padding:8px 16px; text-align:center; }
  .trn-totalnum{ font-size:19px; font-weight:800; color:var(--red); line-height:1.2; }
  .trn-totallabel{ font-size:11px; color:#8a8a86; }

  .trn-filterbar{
    display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    background:#fff; border:1px solid #e5e2d8; border-radius:10px; padding:10px 12px; margin-bottom:8px;
  }
  .trn-searchwrap{
    display:flex; align-items:center; gap:7px; background:#F7F4EE; border-radius:6px; padding:0 10px; flex:1; min-width:200px;
  }
  .trn-searchwrap input{
    border:none; background:transparent; flex:1; padding:9px 0; font-size:13px; font-family:inherit; color:#1A1A2E; outline:none;
  }
  .trn-icon{ width:16px; height:16px; color:#8a8a86; flex-shrink:0; }
  .trn-filterbar select{
    border:1px solid #e5e2d8; border-radius:6px; padding:8px 10px; font-size:13px; font-family:inherit; background:#fff; color:#1A1A2E;
  }
  .trn-resultcount{ font-size:12px; color:#8a8a86; margin-bottom:14px; }

  .trn-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
  @media (max-width:1100px){ .trn-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:700px){ .trn-grid{ grid-template-columns:1fr; } }

  .trn-card{
    background:#fff; border:1px solid #e5e2d8; border-radius:12px; padding:16px; position:relative;
    text-decoration:none; color:inherit; display:block; transition:box-shadow .15s ease, border-color .15s ease;
  }
  .trn-card:hover{ border-color:var(--navy); box-shadow:0 2px 8px rgba(0,0,0,.06); }
  .trn-card.is-past{ opacity:.85; }
  .trn-badge{
    position:absolute; top:14px; right:14px; font-size:11px; font-weight:700; padding:3px 9px; border-radius:20px;
  }
  .trn-badge.is-live{ background:#FDE8E8; color:#a31d1d; }
  .trn-badge.is-upcoming{ background:#FBEEDC; color:#854f0b; }
  .trn-badge.is-done{ background:#eeece4; color:#5c5c58; }
  .trn-logo{
    width:42px; height:42px; border-radius:8px; color:#fff; display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:14px; margin-bottom:10px;
  }
  .trn-name{ font-size:15px; font-weight:700; margin-bottom:2px; color:#1A1A2E; }
  .trn-sub{ font-size:12px; color:#8a8a86; margin-bottom:10px; }
  .trn-meta{
    font-size:12px; color:#5c5c58; display:flex; flex-direction:column; gap:6px;
    border-top:1px solid #f0eee6; padding-top:10px;
  }
  .trn-meta span{ display:flex; align-items:center; gap:6px; }
  .trn-icon-sm{ width:13px; height:13px; flex-shrink:0; color:#8a8a86; }
  .trn-live-note{ color:#a31d1d; font-weight:500; }
  .trn-live-note .trn-icon-sm{ color:#a31d1d; }

  .trn-loadmore-wrap{ margin-top:18px; text-align:center; }
  .trn-loadmore{
    background:#fff; border:1px solid #e5e2d8; border-radius:8px; padding:9px 22px; font-size:13px;
    font-family:inherit; color:#1A1A2E; cursor:pointer;
  }
  .trn-loadmore:hover{ border-color:var(--navy); }

/* ============================================
/* ============================================
   BREADCRUMB — reusable across pages (breaking.php, post.php, category.php,
   latest.php). .page-breadcrumb-wrap sits OUTSIDE the two-column grid
   (.article-page-wrap / .category-page-wrap) so it spans the full content
   width instead of being squeezed into just the main column.
   ============================================ */
.page-breadcrumb-wrap {
  max-width: 1600px;
  margin: 20px auto 0;
  padding-inline: 160px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
}
.page-breadcrumb-home {
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-breadcrumb-home i {
  font-size: 15px;
}
.page-breadcrumb-home:hover {
  color: var(--red-dark, #CC0000);
}
.page-breadcrumb-link {
  color: #666;
  text-decoration: none;
}
.page-breadcrumb-link:hover {
  color: var(--red-dark, #CC0000);
}
.page-breadcrumb-sep {
  color: #ccc;
}
.page-breadcrumb-current {
  color: var(--red-dark, #CC0000);
  font-weight: 500;
}

/* ============================================
   PILL MENU — quick-nav bar, reusable across pages (currently on breaking.php)
   ============================================ */
.pill-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--cream, #f6f2ea);
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  overflow-x: hidden;
}
.pill-menu-item {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pill-menu-item:hover {
  color: var(--red-dark, #CC0000);
}
.pill-menu-item.is-active {
  background: var(--red-dark, #CC0000);
  color: #fff;
}
.pill-menu-item.is-active:hover {
  color: #fff;
}

/* ============================================
   BREAKING NEWS PAGE — breaking.php
   ============================================ */
.breaking-page {
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: 160px;
  padding-block: 20px 60px;
}

.breaking-page-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--red-dark, #CC0000);
}

.breaking-page-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-deep, #0d1b2a);
}

.breaking-page-title-en {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--line, #999);
  margin-left: 8px;
  letter-spacing: 0.05em;
}

.breaking-page-sub {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}

.breaking-empty {
  padding: 60px 0;
  text-align: center;
  color: #888;
  font-size: 13.5px;
}

.breaking-panel {
  background: #fff;
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 8px;
  padding: 6px 16px;
}

.breaking-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line, #eee);
}
.breaking-row:last-child { border-bottom: none; }

.breaking-row-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCEBEB;
}
.breaking-row-icon i {
  font-size: 16px;
  color: var(--red-dark, #CC0000);
}
.breaking-row-football .breaking-row-icon {
  background: #EAF3DE;
}
.breaking-row-football .breaking-row-icon i {
  color: #1a7a3c;
}

.breaking-row-headline {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-deep, #0d1b2a);
  line-height: 1.4;
  margin: 0;
}

.breaking-row-time {
  flex-shrink: 0;
  font-size: 11px;
  color: #888;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .breaking-page { padding-inline: 20px; }
  .breaking-page-title { font-size: 18px; }
  .breaking-row { flex-wrap: wrap; }
  .breaking-row-time { order: 3; flex-basis: 100%; }
}

/* ============================================
   HOMEPAGE/SITE-WIDE BREAKING TICKER — header.php
   ============================================ */
.breaking-ticker-wrap {
  max-width: 1600px;
  margin: 20px auto 0;
  padding-inline: 160px;
}

.breaking-ticker {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 8px;
  padding: 10px 16px;
  overflow: hidden;
}

.bt-tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--red-dark, #CC0000);
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.bt-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.bt-scroll-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
}

.bt-scroll-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  animation: bt-scroll 90s linear infinite;
}
.breaking-ticker:hover .bt-scroll-track {
  animation-play-state: paused;
}

.bt-item {
  font-size: 13px;
  line-height: 1;
  color: var(--navy-deep, #0d1b2a);
  text-decoration: none;
  white-space: nowrap;
}
.bt-item:hover { text-decoration: underline; }

.bt-sep {
  color: #bbb;
  font-size: 12px;
  line-height: 1;
}

@keyframes bt-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .breaking-ticker-wrap { padding-inline: 16px; }
  .breaking-ticker { gap: 10px; }
}
