* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #222;
  padding-top: 80px; /* match your header height */
}

/* Hide scrollbar but keep page scrollable */
html, body {
  overflow-y: scroll;  /* still scrolls */
  overflow-x: hidden;
  -ms-overflow-style: none;  /* hides scrollbar in IE and Edge */
  scrollbar-width: none;  /* hides scrollbar in Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;  /* hides scrollbar in Chrome, Safari, Opera */
}

:root {
  --secondary-color: #fff; /* Dark gray */
  --background-color: #fff; /* Light gray */
  --surface-color: #fff; /* White */
}

:root {
  scroll-behavior: smooth;
}

/* ====== NAV TABS (scrolls with content) ====== */
.tabs {
  position: static;
  display: flex;
  gap: 0;
  background: #fff;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
 
  min-height: 40px;
  height: 40px;
  z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .tabs {
    min-height: 40px;
    height: 40px;
  }
}

/* small phones */
@media (max-width: 420px) {
  .tabs {
    min-height: 35px;
    height: 38px;
  }
}

@media (min-width: 820px) {
  .tabs {
    min-height: 39px;
    height: 48px;
  }
}

/* Adjust page content padding */
main {
  padding-top: 8px;
}

/* ====== NAV TAB BUTTONS ====== */
.tab {
  flex: 1 1 0;                        /* equally sized tabs that fill the row */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;                    /* horizontal padding only; height is fixed by .tabs */
  height: 100%;
  text-align: center;
  background: #f4f5f0;
  border: none;                       /* avoid border-width shifts when activated */
  border-top: 1px solid #e4e4e4;    /* visual separators without affecting sizing */
  border-right: 1px solid #eaeae9;;
  border-bottom: 1px solid #e4e4e4; 
  cursor: pointer;
  font-weight: 100;
  font-size: 14px;
  color: #000000;
  box-sizing: border-box;
  white-space: nowrap;
  font-weight: 400;

  /* Extend the tab visually downward beyond the .tabs container */
  align-self: stretch;                /* ensure it fills the tabs' cross axis */
  padding-bottom: 8px;                /* extra clickable/visual area */
  margin-bottom: -20px;               /* pull it down outside the fixed .tabs height */
  position: relative;
  z-index: 80;                         /* keep above the page content below */
}

/* Make active tab sit above others so its extension doesn't get hidden */
.tab.active {
  z-index: 80;
}

/* Remove right border on last tab so edges are flush */
.tab:last-child {
  border-right: none;
}

/* Badge inside tab */
.tab .badge {
  display: inline-block;
  margin-left: 8px;
  background: #d8ffa1;
  color: #555;
  padding: 3px 7px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 10px;
}

.tab .badge-2 {
  display: inline-block;
  margin-left: 8px;
  background: rgb(218, 218, 218);
  color: #555;
  padding: 3px 7px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 10px;
}




/* Hover state (visual only, does not change size) */
.tab:hover {
  background-color: #f3f3f3;
}

/* Active: change color/background but keep same dimensions */
.tab.active {
  background: #fff;    /* active background color */
  color: #252a2d;      /* active text color */
  font-weight: 600;
  border: none;        /* remove border for active tab */
  /* hide the .tabs bottom border under the active tab by painting a matching strip */
  box-shadow: 0 1px 0 #fff;
  border-top: 1px solid #e4e4e4;
}

/* Settled should not change size when applied — style only */
.tab.settled {
  font-weight: 100;       /* visual emphasis only */
  border: 1px solid #c4c2c2; /* add border for settled tab */
  border-bottom: 1px solid #c4c2c2; /* bottom border for settled tab */
  box-shadow: 0 1px 0 #c4c2c2; /* no padding/border differences so size remains consistent with other states */
}

/* Casino arrow */
.casino-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- Bet Cards Container --- */
/* ensure cards start below the fixed topbars + tabs */
:root {
  --cards-top-offset: calc(-20px + -20px); /* Reduced offset to move cards up */
}

/* mobile adjustments (topbar 48, tabs smaller) */
@media (max-width: 600px) {
  :root {
    --cards-top-offset: calc(0px + 6px); /* Same offset for consistency */
  }
}

.bet-cards {
  display: flex;
  flex-direction: column;
  gap: 0.63rem;
  padding: 1rem;
  margin-top: var(--cards-top-offset);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;

  /* slightly increase visual card width */
  width: calc(100% + 24px);
  margin-left: -12px;
}

/* reduce expansion on small screens to avoid horizontal overflow */
@media (max-width: 600px) {
  .bet-cards {
    width: calc(100% + 8px);
    margin-left: -5px;
    padding: 0.92rem;
  }
}

/* --- Each Bet Card --- */
.bet-card {
  border: 1px solid #ecede5;
  border-radius: 0;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
  text-decoration: none;

  /* visual fade on hover / touch */
  transition: opacity .1s ease, transform .1s ease;
  will-change: opacity, transform;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}

/* Hover (mouse) and keyboard focus visual */
.bet-card:hover,
.bet-card:focus,
.bet-card:focus-visible {
  opacity: 0.15; /* faded look while hovered/focused */
}

/* For devices that do not support hover, ensure :active triggers the fade */
@media (hover: none) {
  .bet-card:hover {
    opacity: 0.15; /* ignore hover on touch devices to avoid sticky states */
  }
  .bet-card:active {
    opacity: 0.15;
    transition: opacity 1s ease; /* transition for 1 second */
  }
}


/* --- Header --- */
.bet-header {
  background: #f4f5f0;
  padding: 8px 10px;
  font-size: 13px;
  align-items: center;
  color: #0d0d0d;
  display: flex;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  border-bottom: 1px solid #ecede5;
}

.bet-header strong {
  font-weight: 500;
  font-size: 13px;
}

/* --- Body --- */
.bet-body {
  padding: 13px 12px;
}


.result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  width: 100%;
}

/* Left label */
.result-label {
  font-weight: 500;
  font-size: 15px;
  color: #b7b7b7;
}

.result-label-2 {
  font-weight: 600;
  font-size: 15px;
  color: #ff8800;
}

/* Right side (status + color box) */
.result-right {
  display: flex;
  align-items: center;
  gap: 8px; /* small space between text and box */
}

.bet-id {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #909090;
  margin-bottom: 0px;
}

/* Status styles */
.status {
  font-weight: 600;
  font-size: 13px;
}

.status.wons {
  color: #78c70b;
}

.status.losts {
  color: #cc371b;
}

.status.cashout {
  color: #78c70b;
}

/* Color boxes */
.color-box {
  width: 15px;
  height: 15px;
  border-radius: 0px;
}

.color-box.green {
  background: #78c70b;
}

.color-box.red {
  background: #cc371b;
}

/* ✅ Responsive: stays on the right even on small screens */
@media (max-width: 600px) {
  .result {
    justify-content: space-between;
  }
  .result-right {
    gap: 6px;
  }
}
  .status {
    font-size: 13px;
    font-weight: 600;
  }

  .details {
    flex-direction: row;
    font-size: 13px;
    text-decoration-style: none;
  }


.details {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: #9c9c9c;
  border-top: 1px solid #ecede5;
  padding-top: 15px;
  padding-bottom: -1px;
}

.details span {
  font-weight: 500;
  font-size: 13px;
  color: #7a7a7a;
  margin-left: 60px; /* pushes the span to the right within .details (flex container) */
  text-align: right;
}

.details strong {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}


.win-amount {
  background-color: #eeefeb;
  display: grid;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  max-height: 20vh;
  gap: 4px;
  padding: 10px 0;
  background-image: url('images/win1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px;
  margin-bottom: 20px;
}

.win-amount p {
  font-size: 14px;
  margin: 0;
  color: #6b6b6b;
  margin-bottom: 1px;
  margin-left: 33px;
}

.win-amount h {
  font-size: 16px;
  color: #000;
  margin: 3px 0 0;
  font-weight: 800;
  margin-top: 0px;
  margin-left: 34px;
}



/* Outer wrapper color area */
.summary-area {
  width: 100vw;                  /* full viewport width */
  height: 73vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;            /* make it break out of container */
  margin-right: -50vw;
  background-color: #eeefeb;     /* outer color */
  padding: 20px 0;               /* top & bottom spacing only */
  border-top: 1px solid #e6e7e2;
  border-bottom: 1px solid #e6e7e2;
  top: 10px;
  margin-top: 35px;
  margin-bottom: 5px;
}

.summary-area-2 {
  width: 100vw;                  /* full viewport width */
  height: 33vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;            /* make it break out of container */
  margin-right: -50vw;
  background-color: #f2f3f0;     /* outer color */
  padding: 20px 0;               /* top & bottom spacing only */
  border-top: 1px solid #e6e7e2;
  border-bottom: 1px solid #e6e7e2;
  top: 10px;
  margin-top: 14px;
  margin-bottom: -8px;
}



.ticket-summary h1 {
  font-size: 18px;
  color: #222;
  margin-top: 15px;
  font-weight: 800;
  text-align: center;
}



/* Keep summary box with its own background color */
.summary-box {
  background-color: #ffffff; /* stays white */
  border: 3px solid transparent; /* required for border-image */
  border-image: linear-gradient(90deg, #b76e00, #ffd700, #b76e00, #ffd700);
  border-image-slice: 1;
  padding: 15px;
  border-radius: 1px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -5px;
  height: auto;
  max-width: 6000vh;
}

@media (max-width: 600px) {
  .summary-box {
    width: 95%;
  }

  .summary-area {
    height: auto;
    top: -70px;
  }
}

.summary-box p {
  margin: 4px 0;
  font-size: 13px;
  font-weight: 400;
  color: #606060;
}


.summary-box strong {
  font-weight: 600;
  color: #0f0f0fff;
}

.summary-box span {
  float: right;
  color: #606060;
  font-size: 12px;
}

.payout {
  padding-top: 10px;
  font-weight: 700;
}

.won {
  color: #4CAF50;
}

.summary-box-2 {
  background-color: #ffffff; /* stays white */
  border: 1px solid #dfe0dc; 
  padding: 15px;
  border-radius: 1px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -8px;
  height: auto;
  max-width: 6000vh;
}

@media (max-width: 600px) {
  .summary-box-2 {
    width: 95%;
  }

  .summary-area-2 {
    height: auto;
    top: -85px;
  }
}

.summary-box-2 p {
  margin: 4px 0;
  font-size: 13px;
}


.summary-box-2 strong {
  font-weight: 600;
  color: #444;
}

.summary-box-2 span {
  float: right;
  color: #222;
}


/* Share Button */
.share-btn {
  margin-top: 10px;
  text-align: center;
}

.share-btn button {
  background-color: #9feb35;
  color: #222;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.3s;
  max-width: 280px;

 }

.share-btn button i {
  margin-right: 4px;
  margin-left: 1px;
  font-size: 14px;
  height: 5px;
  color: #222;
}

.share-btn button span {
  vertical-align: middle;
  margin-right: 7px;
}

.share-btn button:hover {
  background-color: #35d142;
}



/* Responsive */
@media (max-width: 768px) {
  .ticket-summary, .matches {
    margin: 10px;
    padding: 10px;
  }

  .summary-box p {
    font-size: 14px;
    font-weight: 300;
  }

  #shareBtn {
    font-size: 14px;
    padding: 10px 27px;
  }

}

.top-section {
  text-align: center;
  padding-top: 10px;
}


.match-box {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 18px 14px;
  border-top: 1px solid #eaeae9;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  top: -80px; /* desktop default offset */
  position: relative;
}

/* Keep same offset on medium screens but pull up more on small devices */
@media (max-width: 768px) {
  .match-box {
    top: -85px; /* extended upward on small devices */
  }
}

/* Very small phones — extend further if needed */
@media (max-width: 420px) {
  .match-box {
    top: -140px;
  }
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: 13px;
  color: #444;
}

.match-odds {
  display: flex;
  align-items: center;
  gap: 5px;
}

.odd-value {
  color: #8dc63f;
  font-weight: 700;
  font-size: 14px;
}

.odd-box {
  width: 18px;
  height: 18px;
  background: #8dc63f;
}

.odd-value-2 {
  color: #cc371b;
  font-weight: 700;
  font-size: 14px;
}

.odd-box-2 {
  width: 18px;
  height: 18px;
  background: #cc371b;
}

.match-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin: 3px 0;
}

.match-title-group {
  display: flex;
  align-items: center;
  gap: 4px; /* very close spacing between title and arrow */
  flex: 1;
}

.match-title {
  text-decoration: underline;
  color: #000;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-title2 {
  text-decoration: none;
  color: #161616;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-arrow {
  color: #000;
  font-weight: 000;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif; /* thinner look */
  font-size: 14px;
  transform: scale(1.02, 1.02); /* scaleX, scaleY */
  margin-left: 4px;
}

.match-score {
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

.match-subtitle {
  color: #999;
  font-size: 12px;
  margin-top: 2px;
}

.match-market {
  font-size: 12px;
  margin-top: 3px;
  color: #000;
}

@media (max-width: 768px) {
  .match-box {
    padding: 9px 12px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .match-header,
  .match-main,
  .match-subtitle,
  .match-market {
    font-size: 12px;
    margin-top: 0px;
  }

  .odd-box {
    width: 18px;
    height: 18px;
  }

  .match-time, .odd-value {
    font-size: 13px;
  }

  .match-score {
    font-size: 13px;
  }
}


.terms {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  font-size: 18px;
  border-top: 1px solid #eaeae9;;
  font-style: italic;
  color: #141414;
  margin-top: 0;
  line-height: 1.4;
  align-items: center;

  /* pull the terms section upward across all devices */
  position: relative;
  top: -80px;          /* default pull-up for desktop/tablet */
  box-sizing: border-box;
  padding: 12px 16px;
  z-index: 2;
}

/* ensure it stays pulled up (and adjust if necessary) on smaller screens */
@media (max-width: 768px) {
  .terms {
    top: -80px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .terms {
    top: -130px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

.terms p {
  margin: 4px 0;
  text-align: center;
}

.terms a {
  color: #030202;
  text-decoration: underline;
  font-weight: bold;
}

@media (max-width: 780px)  {
  .terms {
    padding: 10px 20px;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .summary-box p { font-size: 14px; }
  .terms { font-size: 12px; }
  .terms p { margin: 2px 0; }
}

.bet-status-box {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 12px 16px;
  border-top: 1px solid #eaeae9;;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  position: relative;
  top: -80px; /* Default offset for all screens */
}

/* Keep same offset on medium screens but pull up more on small devices */
@media (max-width: 768px) {
  .bet-status-box {
    top: -85px; /* Pull up slightly more on small devices */
  }
}

/* Very small phones — extend further up */
@media (max-width: 420px) {
  .bet-status-box {
    top: -140px; /* Pull up significantly on very small devices */
  }
}

.bet-time {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.status-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #222;
}

.status-color {
  width: 18px;
  height: 18px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colors */
.pending {
  background: #e6e6e6;
}

.won {
  background: #8dc63f;
}

.lost {
  background: #cc371b;
}

.void {
  background: #e6e6e6;
  color: #555;
  font-weight: bold;
}

.void-x {
  font-size: 16px;        /* slightly taller */
  line-height: 1;         /* keeps it vertically centered */
  font-weight: 100;       /* makes it thin */
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif; /* thinner look */
  transform: scale(1.6, 1.7); /* scaleX, scaleY */  /* makes it taller vertically */
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .bet-status-box {
    padding: 10px 12px;
  }

  .bet-time {
    font-size: 13px;
  }

  .status-item {
    font-size: 13px;
    gap: 5px;
  }

  .status-color {
    width: 18px;
    height: 18px;
  }
}

mybets {
  height: 30px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  font-size: 18px;
  font-style: italic;
  color: #141414;
  margin-top: 0px;
  line-height: 1.4;
  align-items: center;
}

.my-bets-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* prevents text from breaking into 2 lines */
  margin: auto;
  margin-top: 10px;
  width: 24%;
  max-width: 600px;
  height: 40px;
  background-color: #252a2d;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.3s;
  padding: 12px 13px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 780px) {
  .my-bets {
    padding: 10px 20px;
    bottom: 15px;
  }
  .my-bets-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* For iPhone 13 size (approx 390px width) */
@media (max-width: 420px) {
  .my-bets-btn {
    width: 80%;        /* Increase width so text fits */
    font-size: 15px;   /* Slightly smaller text */
    padding: 8px 12px; /* Reduce padding to avoid wrapping */
  }
}


/* Reset box sizing */
* { box-sizing: border-box; }

/* Footer container */
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* edges touch viewport edges */
  background: #252a2d;
  color: #989898;
  padding: 28px 16px 40px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

/* Top area rows */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 1px;
}

@media (min-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr 1fr; /* two columns on wider screens */
    gap: 20px;
  }
}

/* sports nav - centered text links */
.sports-nav {
  display:flex;
  justify-content:center;
  gap: 20px;
  font-size: 3px;
  color: #fff;
  flex-wrap:wrap;
  margin-top: 1px;
}
.sports-nav a { color: #dddddd; text-decoration: none; opacity: 0.95; font-size: 12px; }

/* social icons row */
.social-row {
  display:flex;
  justify-content:center;
  gap: 22px;
  align-items:center;
}

/* social icons as fixed size images (will NOT scale on small screens) */
.social-icon {
  width: 56px;        /* fixed size from screenshot */
  height: 56px;
  object-fit: contain;
  display:block;
  border-radius:50%;
  background: rgba(255,255,255,0.06);
  padding: 8px;       /* inner padding like screenshot */
}

/* links row below social icons */
.links-row {
  display:flex;
  justify-content:center;
  gap: 17px;
  flex-wrap:wrap;
  color: var(--white);
  font-size: 16px;
}
.links-row a { color: var(--white); text-decoration: none; opacity: 0.95; }

/* brand (betPawa) - image centered, fixed size */
.brand-row {
  margin-top: 8px;
  margin-bottom: 8px;
}
.brand-logo {
  width: 220px;       /* fixed width — stays same on mobile */
  height: auto;
  object-fit: contain;
  display: inline-block;
}

/* country row */
.country-row {
  margin-top: 6px;
  display:flex;
  justify-content:center;
  gap: 10px;
  align-items:center;
  color: var(--white);
  font-size: 18px;
}
.country-row .flag {
  width: 26px;
  height: 18px;
  object-fit: cover;
  display:inline-block;
}
.change-link {
  color: var(--white);
  opacity: 0.85;
  margin-left: 6px;
  text-decoration: none;
  font-size: 16px;
}

/* partner section */
.partner-section {
  margin-top: 30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}
.official {
  color: var(--white);
  opacity: 0.95;
  font-size: 16px;
}
.fuba-logo {
  width: 78px;       /* fixed width to match screenshot */
  height: auto;
  object-fit: contain;
  display:block;
  filter: grayscale(100%) brightness(1.2); /* monochrome look similar to screenshot */
}

/* license paragraph */
.license-text {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

/* ensure the images keep their pixel sizes on small screens */
@media (max-width: 768px) {
  .brand-logo { width: 160px; } /* keep same as desktop */
  .social-icon { width: 56px; height: 56px; }
  .fuba-logo { width: 78px; }

  .sports-nav { gap: 18px; font-size: 16px; }
  .links-row { gap: 14px; font-size: 14px; }
  .country-row { font-size: 16px; }
  .license-text { font-size: 13px; line-height:1.6; }
}

/* optional small tweak for very small screens */
@media (max-width: 360px) {
  .links-row { gap: 8px; }
}

/* Bet ID Text */
.bet-id-bar .bet-id-text {
  font-weight: 700;
  font-size: 15px; /* Changed to match mobile */
  color: #000;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .bet-id-bar {
    top: 50px;
    padding: 16px 14px;
    min-height: 56px;
  }

  .bet-id-bar .back-btn {
    font-size: 20px;
    font-weight: 700;
    left: 12px;
  }

  .bet-id-bar .back-btn i {
    font-size: 20px;
    font-weight: 700;
    left: 12px;
  }

  .bet-id-bar .bet-id-text {
    font-size: 40px;
  }
}
.bets-container {
  width: 100vw; /* full viewport width */
  display: flex;
  align-items: center;  /* center horizontally */
  border-top: 1px solid #252a2d; /* top border only */
  margin-top: -50px;          /* adjust this to place it anywhere vertically */
  margin-left: calc(50% - 50vw); /* ensure it reaches edges */
}

.my-bets-btn {
  padding: 16px 28px; /* increased height */
  font-size: 18px;
  background: #252a2d;
  border: none;
  text-align: center;
  cursor: pointer;
  border-radius: 0px;
  text-transform: uppercase;
  display: inline-flex; /* ensure text is in the same line */
  align-items: center; /* center text vertically */
  width: 10px; /* increased button width */
}

/* Responsive for smaller screens */
@media (max-width: 480px) {
  .my-bets-btn {
    font-size: 16px;
    padding: 14px 28px;
    width: 30%; /* wider on mobile */
  }

  .bets-container {
    margin-top: 20px; /* a little closer to the top on mobile */
    margin-bottom: 12px; /* a little closer to the top on mobile */
  }
}

.footer-container {
  width: 100vw; /* full viewport width */
  background: #2a2d2f;              /* dark gray like screenshot */
  text-align: center;
  padding: 30px 15px;
  color: #d3d3d3;
  margin-left: calc(50% - 50vw); /* ensure it reaches edges */
  text-decoration: none;
  font-style: normal;
}

/* Top navigation */
.footer-top-links a {
  display: inline-block;
  position: relative;
  top: -40px;                 /* lift links up to the start of the footer container */
  margin: 0 8px;              /* horizontal spacing between links */
  padding-top: -4px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 100;           /* thin weight */
  line-height: 1;
}

/* Responsive tweak so links don't overlap on small screens */
@media (max-width: 600px) {
  .footer-top-links a {
    top: -22px;
    font-size: 14px;
  }
}

/* Social icons */
.footer-social img {
  width: 70px;
  height: 65px;
  margin: -11px;
  border-radius: 50%;
  background: #2a2d2f;
  padding: 8px;
  margin-top: -45px;
  margin-bottom: -35px;
}

/* Middle navigation links */
.footer-middle-links {
  margin: 20px 0;
}

.footer-middle-links a {
  margin: 6px 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 100;           /* thin weight */
  line-height: -2;
}

/* Logos */
.betpawa-logo {
  width: 270px;
  height: 70px;
  margin-top: -15px;
   margin-bottom: -15px;
}

.footer-country {
  margin: 15px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
}

.footer-country span {
  font-size: 15px;
  color: white;
  font-style: normal;
  font-weight: bold;
}

.footer-country img {
  width: 28px;
  height: 18px;
}

.footer-country .change-link {
  color: white;
  text-decoration: none;
  font-style: normal;
  font-weight: 100;
}

/* Partner logo */
.official-partner p {
  margin-top: 30px;
  font-size: 18px;
  color: white;
  font-style: normal;
}

.partner-logo {
  width: 90px;
  margin-top: 10px;
}

/* Footer note */
.footer-note {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.5;
  color: #c3c3c3;
  font-style: normal;
}

.footer-note a {
  color: #c3c3c3;
  font-style: normal;
}
/* Responsive */
@media (max-width: 600px) {

  .footer-top-links a,
  .footer-middle-links a {
    display: inline-block;
    margin: 2px;
    font-size: 13px;
    font-style: 500;
  }

  .footer-social img {
    width: 80px;
    height: 70px;
    padding: 6px;
    top: -30px;
  }

  .betpawa-logo {
    width: 230px;
  }

  .partner-logo {
    width: 70px;
    height: 130px;
  }

  .footer-note {
    font-size: 11px;
    font-style: normal;
  }
}