                                                                        :root {
  --ipl-blue:  #003f7d;
  --ipl-gold:  #f5a623;
  --ipl-green: #1a7a3c;
  --ipl-red:   #c0392b;
  --ipl-dark:  #1a1a2e;
  --ipl-light: #f4f6fb;
  --ipl-border:#dde3ec;
  
  
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --font-size-base:     16px;
  --font-size-small:    14px;
  --font-size-xs:       12px;
  --font-size-h1:       38px;
  --font-size-h2:       30px;
  --font-size-h3:       24px;
  --font-size-h4:       20px;
  --font-size-h5:       18px;
  --font-size-h6:       16px;
}



body {
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

h1{font-size:var(--font-size-h1);}
h2{font-size:var(--font-size-h2);}
h3{font-size:var(--font-size-h3);}
h4{font-size:var(--font-size-h4);}
h5{font-size:var(--font-size-h5);}
h6{font-size:var(--font-size-h6);}
/* ── TOP NAV ── */

table {
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: #0d6efd;
  color: white;
  text-align: center;
}

table th, table td {
  padding: 12px;
  vertical-align: middle;
}

table tbody tr:hover {
  background-color: #f1f1f1;
  transition: 0.3s;
}

table {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

body{
overflow-x:hidden;
}

.top-nav {
  background: var(--ipl-dark);
  padding: 6px 0;
  font-size: 12px;
  color: #aaa;
}

.top-nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
}

.top-nav a:hover {
  color: #fff;
}
/* IMPORTANT: prevent layout shift */
.navbar {
  position: relative;
}

/* FLOATING MENU */
.floating-menu {
  position: absolute;
  top: 60px;
  right: 10px;
  width: 220px;

  background: #0b2f55;
  border-radius: 10px;
  padding: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 9999;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .floating-menu {
    position: static;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}

/* Mobile link styling */
.floating-menu .nav-link {
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.floating-menu .nav-link:last-child {
  border-bottom: none;
}
.nav-link {
  color: #fff;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffcc00;
}

/* Smooth animation */
@media (min-width: 992px) {

  .floating-menu {
    position: static !important;
    width: auto !important;
    height: auto !important;

    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center;
  }

  .floating-menu .navbar-nav {
    flex-direction: row !important;
    gap: 15px;
  }

  .floating-menu .nav-link {
    border: none;
    padding: 8px 10px;
  }
}

.floating-menu.show {
  transform: translateY(0);
  opacity: 1;
}


/* TOP BAR */

.ipl-topbar{
display:flex;
align-items:center;
justify-content:flex-start;
gap:15px;
color:#fff;
font-size:12px;
padding:4px 10px;
flex-wrap:nowrap;
overflow:hidden;
}

.ipl-date-time{
    font-weight:500;
    white-space:nowrap;
}

/* BREAKING NEWS BAR */

.ipl-breaking-bar{
    display:flex;
    align-items:center;
    background:#0a1b36;
    color:#fff;
    height:34px;
    font-size:13px;
    overflow:hidden;
}

/* LIVE label */

.breaking-label{
    background:#e10600;
    padding:5px 10px;
    font-weight:700;
    white-space:nowrap;
    flex-shrink:0;
}

/* content area */

.breaking-content{
    flex:1;
    overflow:hidden;
    padding-left:10px;
    display:flex;
    align-items:center;
}

/* ticker text */

#match-ticker{
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
display:block;
transition:transform .5s ease, opacity .5s ease;
}

/* link */

#match-ticker a{
    color:#ffc107;
    text-decoration:none;
    font-weight:500;
}

/* MOBILE FIX */

@media(max-width:768px){

.ipl-topbar{
font-size:10px;
gap:8px;
}

.ipl-date-time{
display:none;
}

.ipl-breaking-bar{
height:28px;
font-size:11px;
}

.breaking-label{
padding:3px 6px;
font-size:10px;
}

}
/* ── HEADER ── */

header {
  background: linear-gradient(135deg, var(--ipl-blue) 0%, #005fa3 100%);
  color: #fff;
  padding: 18px 0 14px;
}

header .logo {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

header .logo span {
  color: var(--ipl-gold);
}
.logo img{
    width: 250px;
}

.header-tagline {
  font-size: 13px;
  opacity: .85;
  margin-top: 4px;
}

.header-nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
}

.header-nav a:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ── HERO BANNER ── */

.hero-banner {
  background: linear-gradient(100deg, #003060 0%, var(--ipl-green) 100%);
  color: #fff;
  padding: 32px 0 28px;
}

.hero-banner h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-banner h1 span {
  color: var(--ipl-gold);
}

.hero-banner p {
  font-size: 14px;
  opacity: .9;
  max-width: 680px;
}

.hero-badge {
  display:inline-block;
  background: var(--ipl-gold);
  color:#000;
  font-weight:700;
  font-size:11px;
  padding:3px 10px;
  border-radius:20px;
  margin-bottom:10px;
}


.ipl-season-box{
  background: url('/media/tata-ipl-2026.png') center/cover no-repeat;
  border-radius:12px;
  padding:100px 0 100px 0;
  color:#fff;
  position:relative;
}

/* dark overlay for readability */
.ipl-season-box::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  border-radius:12px;
}

.ipl-season-box *{
  position:relative;
  z-index:2;
}

.season-title{
  font-family:'Oswald',sans-serif;
  font-size:1.3rem;
}

.season-date{
  font-size:12px;
  opacity:.85;
}

/* ── SECTION TITLES ── */

.section-title {
  font-family:'Oswald',sans-serif;
  font-size:1.4rem;
  font-weight:700;
  color:var(--ipl-blue);
  border-left:4px solid var(--ipl-gold);
  padding-left:12px;
  margin-bottom:16px;
}

.section-title.white {
  color:#fff;
  border-color:var(--ipl-gold);
}

/* ── BETTING SITE CARDS ── */

.site-card {
  border:1px solid var(--ipl-border);
  border-radius:8px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:12px 16px;
  margin-bottom:10px;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  transition:box-shadow .2s;
}

.site-card:hover {
  box-shadow:0 4px 14px rgba(0,0,0,.12);
}

.site-rank {
  font-family:'Oswald',sans-serif;
  font-size:22px;
  font-weight:700;
  color:var(--ipl-gold);
  width:36px;
  text-align:center;
  flex-shrink:0;
}

.site-logo-box {
  width:80px;
  height:50px;
  border:1px solid var(--ipl-border);
  border-radius:6px;
  background:#f7f9fc;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin:0 14px;
  font-family:'Oswald',sans-serif;
  font-size:15px;
  font-weight:700;
  color:var(--ipl-blue);
}

.site-info {
  flex:1;
}

.site-info h5 {
  font-size:15px;
  font-weight:700;
  margin:0 0 2px;
  color:var(--ipl-dark);
}

.site-info .bonus {
  font-size:12px;
  color:var(--ipl-green);
  font-weight:600;
}

.site-info .rating {
  font-size:12px;
  color:#888;
}

.site-info .stars {
  color:var(--ipl-gold);
  font-size:13px;
}

.btn-visit {
  background:var(--ipl-green);
  color:#fff;
  border:none;
  border-radius:5px;
  padding:8px 18px;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  text-decoration:none;
}

.btn-visit:hover {
  background:#145e2d;
  color:#fff;
}

.badge-top {
  background:var(--ipl-red);
  color:#fff;
  font-size:10px;
  padding:2px 7px;
  border-radius:3px;
  margin-left:6px;
  vertical-align:middle;
}

/* ── INFO BOXES ── */

.info-box {
  background:var(--ipl-light);
  border-left:4px solid var(--ipl-blue);
  border-radius:6px;
  padding:16px 18px;
  margin-bottom:18px;
}

.info-box h4 {
  font-size:1.05rem;
  color:var(--ipl-blue);
  margin-bottom:8px;
}

.info-box p,
.info-box ul {
  font-size:13.5px;
  color:#444;
  margin:0;
}

.info-box ul {
  padding-left:18px;
}

.info-box ul li {
  margin-bottom:4px;
}

/* ── GREEN SECTION ── */

.section-green {
  background: linear-gradient(100deg, var(--ipl-green) 0%, #145e2d 100%);
  color:#fff;
  padding:28px 0;
}

.section-green .section-title {
  color:#fff;
  border-color:var(--ipl-gold);
}

/* ── HOW-TO STEPS ── */

.step-card {
  background:#fff;
  border-radius:8px;
  padding:18px;
  box-shadow:0 2px 8px rgba(0,0,0,.07);
  height:100%;
}

.step-number {
  width:36px;
  height:36px;
  background:var(--ipl-blue);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Oswald',sans-serif;
  font-size:18px;
  margin-bottom:12px;
}

.step-card h5 {
  font-size:.95rem;
  color:var(--ipl-blue);
  margin-bottom:6px;
}

.step-card p {
  font-size:13px;
  color:#555;
  margin:0;
}

/* ── COMPARISON TABLE ── */

.compare-table th {
  background:var(--ipl-blue);
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-size:13px;
  font-weight:500;
}

.compare-table td {
  font-size:13px;
  vertical-align:middle;
}

.compare-table .check {
  color:var(--ipl-green);
  font-size:15px;
}

.compare-table .cross {
  color:var(--ipl-red);
  font-size:15px;
}

.compare-table tr:nth-child(even) td {
  background:#f6f9ff;
}

/* ── BET TYPE CARDS ── */

.bet-type-card {
  border:1px solid var(--ipl-border);
  border-radius:8px;
  padding:16px;
  margin-bottom:14px;
  background:#fff;
}

.bet-type-card h5 {
  color:var(--ipl-blue);
  font-size:1rem;
  margin-bottom:6px;
}

.bet-type-card p {
  font-size:13px;
  color:#555;
  margin:0;
}

/* ── PAYMENT TABLE ── */

.payment-table th {
  background:var(--ipl-dark);
  color:#fff;
  font-size:12px;
}

.payment-table td {
  font-size:12px;
}

.payment-table tr:hover td {
  background:#eef3ff;
}

/* ── TIPS SECTION ── */

.tips-section {
  background:var(--ipl-light);
  padding:28px 0;
}

.tip-card {
  background:#fff;
  border-radius:8px;
  padding:16px;
  box-shadow:0 1px 5px rgba(0,0,0,.06);
  height:100%;
  border-top:3px solid var(--ipl-gold);
}

.tip-card h5 {
  color:var(--ipl-blue);
  font-size:.95rem;
  margin-bottom:8px;
}

.tip-card p {
  font-size:13px;
  color:#555;
  margin:0;
}

/* ── REVIEW CARDS ── */

.review-card {
  background:#fff;
  border-radius:10px;
  padding:20px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  position:relative;
}

.review-card .quote {
  font-size:40px;
  line-height:1;
  color:var(--ipl-gold);
  font-family:'Oswald',sans-serif;
  position:absolute;
  top:10px;
  left:16px;
}

.review-card p {
  font-size:13px;
  color:#444;
  padding-top:20px;
}

.reviewer {
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}

.reviewer .avatar {
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--ipl-blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Oswald',sans-serif;
  font-size:16px;
}

.reviewer .name {
  font-weight:700;
  font-size:13px;
}

.reviewer .role {
  font-size:12px;
  color:#888;
}

/* ── FAQ ── */

.faq-item {
  border:1px solid var(--ipl-border);
  border-radius:6px;
  margin-bottom:8px;
  overflow:hidden;
}

.faq-q {
  background:#f0f4ff;
  padding:12px 16px;
  font-weight:600;
  font-size:13.5px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-q:hover {
  background:#e2e9ff;
}

.faq-a {
  padding:12px 16px 14px;
  font-size:13px;
  color:#444;
  display:none;
  border-top:1px solid var(--ipl-border);
  background:#fff;
}

.faq-a.open {
  display:block;
}

/* ── SECURITY ── */

.security-section {
  background:var(--ipl-dark);
  color:#fff;
  padding:28px 0;
}

.security-item {
  display:flex;
  gap:14px;
  margin-bottom:18px;
  align-items:flex-start;
}

.security-icon {
  font-size:24px;
  color:var(--ipl-gold);
  flex-shrink:0;
}

.security-item h6 {
  color:var(--ipl-gold);
  margin-bottom:4px;
  font-size:.9rem;
}

.security-item p {
  font-size:12.5px;
  color:#bbb;
  margin:0;
}

h3>a{
    text-decoration: none;
}


/* ── FOOTER ── */

footer {
  background:#111;
  color:#999;
  font-size:12px;
  padding:22px 0 14px;
}

footer a {
  color:#bbb;
  text-decoration:none;
}

footer a:hover {
  color:#fff;
}

.footer-disclaimer {
  background:#1a1a1a;
  padding:14px 0;
  margin-top:14px;
  font-size:11px;
  color:#666;
  border-top:1px solid #2a2a2a;
}

/* ── STICKY CTA BAR ── */

.sticky-cta {
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:var(--ipl-blue);
  color:#fff;
  z-index:999;
  padding:10px 0;
  display:none;
}

@media(max-width:576px) {
  .sticky-cta { display:block; }
}

/* ── MISC ── */

@media (max-width:768px){

.site-card{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.site-logo-box{
margin:5px 0;
}

.btn-visit{
width:100%;
text-align:center;
margin-top:8px;
}

}


.highlight-box {
  background:linear-gradient(135deg,#fff8e1,#fffde7);
  border:1px solid #ffe082;
  border-radius:8px;
  padding:16px 18px;
  margin-bottom:18px;
}

.app-card {
  background:var(--ipl-dark);
  color:#fff;
  border-radius:10px;
  padding:20px;
}

.app-card h5 {
  color:var(--ipl-gold);
}

.tag-pill {
  display:inline-block;
  background:#e8f0fe;
  color:var(--ipl-blue);
  border-radius:20px;
  padding:3px 12px;
  font-size:12px;
  margin:2px;
}

.conclusion-box {
  background:linear-gradient(135deg,#003f7d,#005fa3);
  color:#fff;
  border-radius:10px;
  padding:24px;
}

.conclusion-box h3 {
  color:var(--ipl-gold);
}

/* AUTHOR */
.author-image{
    object-fit: cover;
    height: 130px;
    width: 125px;
    border-radius: 5px;
}
.author-avatar {
  width:70px;
  height:70px;
  border-radius:50%;
  background:#0d6efd;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:24px;
}

.author-social a {
  margin-right:10px;
  font-size:14px;
  text-decoration:none;
  color:#0d6efd;
}


/* ===== HERO SECTION ===== */
.cw-live-hero {
    background: linear-gradient(135deg, #0d3b66, #1e5fa3);
    color: #fff;
}

.cw-live-hero h2 {
    font-size: 34px;
    font-weight: 700;
}

.cw-live-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTON */
.cw-live-btn-primary {
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cw-live-btn-primary:hover {
    background: #1ebe5d;
    color: #fff;
}

/* ===== VIDEO CARD ===== */
.live-video-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 14px;
    overflow: hidden;
}

.live-thumbnail {
    transition: transform 0.3s ease;
}

.live-video-wrapper:hover .live-thumbnail {
    transform: scale(1.05);
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-icon {
    font-size: 50px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 18px 22px;
    border-radius: 50%;
}

/* ===== WHY SECTION ===== */
.cw-live-why {
    background: #fff;
}

.cw-live-heading {
    font-weight: 700;
    font-size: 28px;
}

.cw-live-divider {
    width: 60px;
    height: 4px;
    background: #0d6efd;
    margin: 10px auto 20px;
    border-radius: 10px;
}

.cw-live-subtext {
    color: #666;
    max-width: 700px;
    margin: auto;
}

/* CARDS */
.cw-live-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    height: 100%;
}

.cw-live-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.cw-live-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

/* ===== STEPS ===== */
.cw-steps-wrapper {
    background: #f9fafc;
}

.cw-steps-heading {
    font-size: 28px;
    font-weight: 700;
}

.cw-steps-subtext {
    color: #666;
}

/* Step Card */
.cw-step-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.cw-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Step Number */
.cw-step-number {
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
}

/* ===== CTA CARD ===== */
.mt-100px {
    margin-top: 100px;
}

.card-header {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

#card-body {
    padding: 20px;
    text-align: center;
}

/* ===== LIVE BADGE & VIEWERS ===== */
.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: red;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.viewer-count {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
}

/* ===== SERVER SECTION ===== */
.cw-server-section {
    background: #ffffff;
}

.cw-server-title {
    font-size: 28px;
    font-weight: 700;
}

.cw-server-subtitle {
    color: #666;
}

/* TABLE */
.cw-server-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.cw-server-table thead {
    background: #0d6efd;
    color: #fff;
}

.cw-server-table th {
    padding: 14px;
    font-weight: 600;
}

.cw-server-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.cw-server-table tbody tr:hover {
    background: #f8f9fa;
}

/* BUTTONS */
.cw-server-btn {
    background: #25D366;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.cw-server-btn:hover {
    background: #1ebe5d;
    color: #fff;
}

.cw-server-btn-lg {
    background: #198754;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
}

.cw-server-btn-lg:hover {
    background: #157347;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cw-server-title {
        font-size: 22px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cw-live-hero h2 {
        font-size: 26px;
    }

    .play-icon {
        font-size: 36px;
        padding: 14px;
    }
}    



.breadcrumb-item{
    font-size: 16px;
}