  :root{
    --red: #cc0000;
    --red-dark: #b30000;
    --gold: #d4a017;
    --cream: #f6f2ea;
    --navy: #1e3a5f;
  }
  *{
    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);
  }
  .login-btn{
    border:1px solid #fff;
    color:#fff;
    font-size:11.5px;
    font-weight:500;
    background:transparent;
    padding:3px 14px;
    border-radius:3px;
    cursor:pointer;
    font-family: inherit;
    line-height:1.4;
    white-space:nowrap;
  }
  .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;
  }
  .nav-home{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex-shrink:0;
  }
  .nav-home svg{
    width:19px;
    height:19px;
    fill:#fff;
  }
  .navbar-menu a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    white-space:nowrap;
  }
  .nav-item{
    position:relative;
    display:flex;
    align-items:center;
    flex-shrink:0;
  }
  .nav-item > a{
    display:flex;
    align-items:center;
    gap:4px;
    padding: 24px 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{
    transform: rotate(180deg);
  }
  .nav-submenu{
    position:absolute;
    top:100%;
    left:50%;
    transform: translateX(-50%) 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{
    opacity:1;
    visibility:visible;
    transform: translateX(-50%) 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;
  }
  .navbar-actions{
    display:flex;
    align-items:center;
    gap: 20px;
    flex-shrink:0;
  }
  .nav-hamburger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    cursor:pointer;
    width:24px;
    height:19px;
    position:relative;
    z-index:1002;
  }
  .nav-hamburger span{
    width:24px;
    height:2px;
    background:#fff;
    display:block;
    border-radius:2px;
    transition: transform .3s ease, opacity .2s ease, width .3s ease;
  }
  .nav-hamburger.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.active span:nth-child(2){
    opacity:0;
  }
  .nav-hamburger.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ===== Dropdown menu ===== */
  .menu-overlay{
    position:fixed;
    inset:0;
    background:transparent;
    opacity:0;
    visibility:hidden;
    transition:visibility .25s ease;
    z-index:1000;
  }
  .menu-overlay.active{
    opacity:1;
    visibility:visible;
  }
  .menu-drawer{
    position:fixed;
    top:111px;
    right:160px;
    width:200px;
    max-width:70vw;
    max-height:calc(100vh - 130px);
    background: var(--red);
    box-shadow:0 10px 24px rgba(0,0,0,.3);
    border-radius:8px;
    transform:translateY(-14px);
    opacity:0;
    visibility:hidden;
    transition:transform .3s cubic-bezier(.4,0,.2,1), opacity .25s ease, visibility .25s ease;
    z-index:1001;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    font-family: 'Prothom Alo Surjo', 'Noto Sans Bengali', Arial, sans-serif;
  }
  .menu-drawer.active{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }
  .menu-drawer-body{
    flex:1;
    overflow-y:auto;
    padding:4px 0 10px;
  }
  .menu-drawer-body a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:500;
    border-bottom:1px solid rgba(255,255,255,0.15);
    transition:background .15s ease, padding-left .15s ease, color .15s ease;
  }
  .menu-drawer-body a:hover{
    background: var(--red-dark);
    padding-left:18px;
    color:#fff;
  }

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

  .latest-grid{
    display:grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
  }

  .feature-thumb{
    width:100%;
    aspect-ratio: 827 / 430;
    border-radius:4px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    margin-bottom:16px;
  }
  .feature-title{
    font-size:18px;
    color:#1a1a1a;
    line-height:1.4;
    margin-bottom:10px;
  }

  .side-list{
    display:flex;
    flex-direction:column;
    /* justify-content: space-between; */
    gap:28px;
  }
  .side-item{
    display:flex;
    gap:16px;
    text-decoration:none;

  }
  .side-thumb{
    flex-shrink:0;
    align-self:flex-start;
    width:152px;
    aspect-ratio: 4 / 4;
    border-radius:4px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  }
  .side-body{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
  }
  .side-title{
    font-size:18px;
    color:#1a1a1a;
    line-height:1.4;
    margin-bottom:8px;
  }
  .side-desc{
    font-size:12px;
    color:#4a4a4a;
    line-height:1.5;
    padding-bottom:8px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .side-meta{
    font-size:12px;
    color: var(--red);
    font-weight:500;
  }

  /* ===== 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;
  }
  .video-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr) 300px;
    gap: 24px;
  }
  .video-card{
    display:flex;
    flex-direction:column;
    text-decoration:none;
  }
  .video-thumb{
    position:relative;
    width:100%;
    aspect-ratio: 16 / 9;
    border-radius:4px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    margin-bottom:14px;
    overflow:hidden;
  }
  .video-play{
    position:absolute;
    left:10px;
    bottom:10px;
    display:flex;
    align-items:center;
    gap:5px;
    background: rgba(0,0,0,0.55);
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:4px 10px 4px 6px;
    border-radius:20px;
  }
  .video-play svg{
    width:16px;
    height:16px;
    fill:#fff;
  }
  .video-tag{
    font-size:12.5px;
    font-weight:700;
    color: var(--red);
    margin-bottom:8px;
  }
  .video-title{
    font-size:18px;
    font-weight:400;
    color:#1a1a1a;
    line-height:1.4;
    margin-bottom:10px;
  }
  .video-desc{
    font-size:12px;
    color:#4a4a4a;
    line-height:1.5;
    margin-bottom:10px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .video-meta{
    font-size:12px;
    color: var(--red);
    font-weight:500;
  }

  .video-side-list{
    display:flex;
    flex-direction:column;
    gap:20px;
  }
  .video-side-item{
    display:flex;
    gap:12px;
    text-decoration:none;
  }
  .video-side-thumb{
    flex-shrink:0;
    width:90px;
    height:90px;
    border-radius:4px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  }
  .video-side-body{
    flex:1;
    min-width:0;
  }
  .video-side-title{
    font-size:13px;
    font-weight:400;
    color:#1a1a1a;
    line-height:1.4;
    margin-bottom:5px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .video-side-meta{
    font-size:11px;
    color: var(--red);
    font-weight:500;
  }

  @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;
    }
  }

  /* ===== 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;
  }
  .reel-thumb{
    position:relative;
    width:100%;
    aspect-ratio: 3 / 4;
    border-radius:6px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    margin-bottom:12px;
    overflow:hidden;
  }
  .reel-play{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    border:2px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .reel-play svg{
    width:20px;
    height:20px;
    fill:#fff;
    margin-left:2px;
  }
  .reel-caption{
    font-size:13px;
    color:#1a1a1a;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  @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);
  }
  .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;
    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:9px 22px;
    border-left:1px solid rgba(0,0,0,.08);
    cursor:pointer;
    transition:background .15s ease;
  }
  .lt-match:hover{ background: rgba(204,0,0,.05); }
  .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; }
    .lt-match{ padding:9px 16px; }
    .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);
  }
  .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;
    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:9px 22px;
    border-left:1px solid rgba(0,0,0,.08);
    cursor:pointer;
    transition:background .15s ease;
  }
  .fb-match:hover{ background: rgba(30,58,95,.05); }
  .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; }
    .fb-match{ padding:9px 16px; }
    .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; }
  }
