/* Jackpot Logo Options */

/* Base Jackpot Indicator */
.jackpot-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  animation: jackpotGlow 2s ease-in-out infinite;
}


/* .jackpot-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1px solid #010d1a;
  transition: all 0.3s ease;
  animation: jackpotGlow 2s ease-in-out infinite;
}

@keyframes jackpotGlow {
  0%, 100% {
    box-shadow: 
      0 3px 10px #020e1b,
      0 1px 3px rgba(73, 9, 9, 0.3);
  }
  50% {
    box-shadow: 
      0 4px 12px #1f76d2,
      0 2px 4px rgba(43, 16, 106, 0.4);
  }
} */

.jackpot-indicator:hover {
  transform: scale(1.15);
}

.jackpot-indicator span {
  font-size: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Option 1: Money Bag 💰 */
.jackpot-option-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  box-shadow:
    0 3px 10px rgba(255, 215, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.jackpot-option-1:hover {
  box-shadow:
    0 5px 15px rgba(255, 215, 0, 0.6),
    0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Option 2: Trophy 🏆 */
.jackpot-option-2 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow:
    0 3px 10px rgba(255, 215, 0, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.jackpot-option-2:hover {
  box-shadow:
    0 5px 15px rgba(255, 215, 0, 0.7),
    0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Option 3: Star ⭐ */
.jackpot-option-3 {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
  box-shadow:
    0 3px 10px rgba(255, 215, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.3);
  animation: jackpotStarGlow 1.5s ease-in-out infinite;
}

.jackpot-option-3:hover {
  box-shadow:
    0 5px 15px rgba(255, 215, 0, 0.8),
    0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Option 4: Diamond 💎 */
.jackpot-option-4 {
  background: linear-gradient(135deg, #E6E6FA, #DDA0DD, #DA70D6);
  box-shadow:
    0 3px 10px rgba(221, 160, 221, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.3);
  animation: jackpotDiamondGlow 2s ease-in-out infinite;
}

.jackpot-option-4:hover {
  box-shadow:
    0 5px 15px rgba(221, 160, 221, 0.7),
    0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Option 5: Crown 👑 */
.jackpot-option-5 {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  box-shadow:
    0 3px 10px rgba(255, 215, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.jackpot-option-5:hover {
  box-shadow:
    0 5px 15px rgba(255, 215, 0, 0.6),
    0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes jackpotGlow {

  0%,
  100% {
    box-shadow:
      0 3px 10px rgba(255, 215, 0, 0.4),
      0 1px 3px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow:
      0 4px 12px rgba(255, 215, 0, 0.6),
      0 2px 4px rgba(0, 0, 0, 0.4);
  }
}

@keyframes jackpotStarGlow {

  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 3px 10px rgba(255, 215, 0, 0.6),
      0 1px 3px rgba(0, 0, 0, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow:
      0 4px 12px rgba(255, 215, 0, 0.8),
      0 2px 4px rgba(0, 0, 0, 0.4);
  }
}

@keyframes jackpotDiamondGlow {

  0%,
  100% {
    box-shadow:
      0 3px 10px rgba(221, 160, 221, 0.5),
      0 1px 3px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow:
      0 4px 12px rgba(221, 160, 221, 0.7),
      0 2px 4px rgba(0, 0, 0, 0.4);
  }
}

.customclassLink {
  color: #d0d0d0;
}

.custominkclass a {
  text-decoration: underline;
  color: green;
}


.show {
  display: block;
}

.form-error {
  color: red;
  font-size: small;
}

.customloader {
  z-index: 10000 !important;
}

.with-icon input.form-control.is-invalid {
  background: none;
}


.image-preview-container {
  margin-top: 10px;
  text-align: center;
}

.image-preview {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

input.form-control.is-invalid,
.MuiFormControl-root.MuiTextField-root.form-control.datePicker-custom.is-invalid input {
  border: 1px solid red !important;
}

.customnav {
  width: 61%;
}

.avatar.custom-header-user.sb-avatar.sb-avatar--text {
  margin: 0;
  padding: 0;
}

.avatar.custom-header-user.sb-avatar.sb-avatar--text span {
  font-size: 15px;
  text-align: center;
  font-weight: 800;
  padding: 0;
  margin: 0;
}

.custom-modal .modal-content {
  color: white;
}

.custom-modal .modal-content .modal-body {
  text-align: center;
}

/* .datePicker-custom {
  border: 1px solid;
} */

/* .datePicker-custom input {
  box-shadow: none;
  background: url(/images/input-bg01.svg) no-repeat;
  height: 45px;
  border-radius: 50px;
  border: none;
  padding: 0px 15px;
  color: #fff;
  font-size: 14px;
} */

.datePicker-custom input .MuiOutlinedInput-notchedOutline:focus {
  border: none !important;
}


.custom-file-input {
  display: none;
  /* Hide the default file input */
}

/* select.form-control option {
  background: #01243c;
  color: white;
} */

.erormodel {
  text-align: center;
}

.MuiInputBase-root {
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.MuiInputBase-root:focus-visible,
.MuiInputBase-root:focus {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.MuiInputBase-root .MuiInputBase-input {
  padding: 11px 15px !important;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(90deg, #0E3956, #011824, #011824, #011824, #011824, #011824, #011824) padding-box,
    linear-gradient(60deg, #0098FF, #0A2C44) border-box;
  margin: 0 !important;
  border-radius: 20px;
  border: 1px solid transparent;
}

.MuiInputBase-root .MuiInputBase-input:focus-visible,
.MuiInputBase-root .MuiInputBase-input:focus,
.MuiInputBase-root .MuiInputBase-input:active {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.css-1ll44ll-MuiOutlinedInput-notchedOutline {
  outline: none !important;
}

.MuiInputBase-root fieldset {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* .form-check-input:checked[type="checkbox"]{background: url(/../images/check-line.svg) no-repeat #fff;} */


.customStyle {
  color: #d0d0d0;
}

.react-datepicker {
  position: absolute !important;
  z-index: 100;
  top: 47px;
  left: -213px;
}

.content-warper,
.modal-content {
  -moz-backdrop-filter: blur(70px);
  -webkit-backdrop-filter: blur(70px);
}

.calendar-icon {
  position: absolute;
  right: 20px;
  color: white;
}

.flag-dropdown {
  background: none !important;
  display: contents;
}

.selected-flag {
  left: 2px;
  top: -22px;
  color: white;
}

.customPhoneNumber {
  box-shadow: none !important;
  height: 45px !important;
  border-radius: 50px !important;
  border: none !important;
  padding: 0px 15px !important;
  color: #fff !important;
  font-size: 14px !important;
  background: linear-gradient(90deg, #0E3956, #011824, #011824, #011824, #011824, #011824, #011824) padding-box, linear-gradient(60deg, #0098FF, #0A2C44) border-box !important;
  border: 1px solid transparent !important;
  border-radius: 40px !important;
  width: 100% !important;
  padding-left: 34px !important;
}

.react-tel-input .selected-flag .arrow {
  left: 18px !important;
  border-top: 4px solid #ffffff !important;
}

.MuiFormControl-root.MuiTextField-root.form-control.datePicker-custom {
  padding: 0 !important;
}

select.form-control.is-invalid {
  background-image: none !important;
}

.accordion-body.customStyle ul {
  list-style: unset;
  padding: revert;
  margin: revert;
}

.accordion-body.customStyle a {
  color: blue !important;
  text-decoration: underline !important;
}

.SocialLogin {
  background: color(display-p3 1.000 1.000 1.000 / 0.08);
  border-radius: 80px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  color: var(--p);
  font-weight: 600;
}

.Mui-disabled {
  -webkit-text-fill-color: rgb(255 255 255) !important;
}

a.plus-btn,
.player-info {
  gap: 15px;
  color: white;
  background: none !important;
}

.pagination ul li button,
.pagination ul li div {
  color: white !important;
}

.pagination {
  justify-content: center;
}




/**/
/* Style for disabled player rows or buttons */
.plus-btn.disabled {
  pointer-events: none;
  /* Disable clicks */
  opacity: 0.5;
  /* Dim the button */
  cursor: not-allowed;
  /* Not allowed cursor */
}

tr.selected-row {
  background-color: #e6f0ff38;
  /* Light blue background for selected player row */
}


.caption-vice-box {
  position: relative;
}

.caption-vice {
  position: absolute;
  top: 1px;
  left: 89px;
  font-size: 9px;
  background: black;
  border-radius: 22px;
  color: white;
  padding: 6px 6px 5px 7px;
}

.team-preview-box {
  width: 100%;
}



.eye-icon-wrapper {
  position: relative;
  display: inline-block;
}

.custom-tooltip {
  position: absolute;
  top: 91%;
  left: -62%;

  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 100;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

span.prizeBox {
  color: white;
  border: 1px solid gray;
  border-radius: 5px;
  position: relative;
  left: -23px;
  padding: 10px 18px 11px 18px;
  top: 6px;
}




.react-datepicker-wrapper {
  display: inherit !important;
}

.react-datepicker__tab-loop {
  position: relative;
  left: 48%;
  top: -75px;
}


button.btn.disablebutton {
  color: white !important;
}

input:-webkit-autofill {}


/* .team-preview-point-bg {
  gap: 0 !important
} */

span.checkbox-customPlayer {
  position: absolute;
  top: -2px;
  left: 0;
  cursor: pointer;
}


.editprofileMessage h4 {
  text-decoration: underline;
  color: red;
}













.fixture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.fixture-card {
  background: #0b1e35;
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.teams img {
  max-width: 35px;
  max-height: 35px;
}

.team-name {
  flex: 1;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.vs {
  margin: 0 0.5rem;
  color: #aaa;
  text-align: center;
}


.chat-window {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ccc;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #f5f5f5;
}

.chat-message {
  margin-bottom: 8px;
}

.from-me {
  text-align: right;
  background-color: #dcf8c6;
  padding: 5px;
  border-radius: 8px;
}

.from-them {
  text-align: left;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
}

.chat-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.chat-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
}

.send-button {
  margin-left: 8px;
  padding: 8px 12px;
}
























/* src/components/ChatWindow.css */

.chat-window {
  display: flex;
  flex-direction: column;
  height: 500px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #0a0f1c;
  color: white;
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background-color: #0a0f1c;
}

.chat-message {
  max-width: 70%;
  padding: 8px 12px;
  margin: 4px 0;
  border-radius: 10px;
  word-wrap: break-word;
}

.from-me {
  background-color: #007bff;
  color: white;
  margin-left: auto;
}

.from-them {
  background-color: #444;
  margin-right: auto;
}

.chat-input-area {
  display: flex;
  border-top: 1px solid #333;
  background-color: #111;
  padding: 8px;
}

.chat-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #222;
  color: white;
}

.send-button {
  margin-left: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

.send-button:hover {
  background-color: #0056b3;
}


span.message-time {
  display: block;
  text-align: right;
}


.selectPlayerBox {
  background: #2b528a;
}


.point-system {
  margin: 30px auto;
  background-color: #0b0f1a;
  padding: 20px;
  overflow: auto;
  border-radius: 10px;
  color: #cdd3e0;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

.point-system h2 {
  text-align: center;
  color: #f0f0f0;
  border-bottom: 2px solid #121c34;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.point-system table {
  width: 100%;
  border-collapse: collapse;
}

.point-system th {
  background-color: #121c34;
  color: #f0f0f0;
  padding: 12px;
  border: 1px solid #222c3e;
}

.point-system td {
  padding: 12px;
  border: 1px solid #222c3e;
  text-align: left;
  background-color: #0b0f1a;
}

.point-system tr:nth-child(even) td {
  background-color: #101624;
}

.point-system .section {
  background-color: #121c34;
  font-weight: bold;
  text-align: left;
  color: #f0f0f0;
}

.point-system .positive {
  color: #36d27a;
  font-weight: bold;
}

.point-system .negative {
  color: #e84855;
  font-weight: bold;
}

.team-preview-member-list ul {
  gap: 8px;
}

.team-preview-member-list.team-preview-member-bottom {
  padding: 0;
}

.custombox-dropdown {
  margin-left: -11px !important;
  height: 350px !important;
}

/* .after-login-box.d-flex.align-items-center.gap-3.d-lg-none.mt-3 .dropdown.profile-box a#dropdownMenuButton1 {
    position: relative;
    left: 95%;
    top: -9px;
    width: 29px;
    margin-left: 48%;
 } */

.deshboardView {
  display: block;
}

.mobileView {
  display: none;
}


.message-box {
  line-break: anywhere;
}


.empty-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.empty-chat-message {
  text-align: center;
  color: #888;
}

.tab-head-box .nav.nav-pills {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 15px;
  overflow: auto;
  padding: 10px 10px;
}

body .back-btn {
  min-width: 50px;
  padding-left: 0;
  padding-right: 0;
}

.back-btn svg {
  width: 24px;
  height: 24px;
}

.back-btn {
  display: none;
}

.add-friend-pagination-bg {
  flex-wrap: wrap;
  gap: 15px;
}

.add-friend-pagination-bg nav {
  width: 100%;
}

.add-friend-pagination-bg nav button {
  width: 25px;
  min-width: 25px;
  height: 25px;
}

.message-sender-name {
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}

.member-box figcaption h5 {
  font-size: 11px;
}

.jackboxBox {
  margin-right: 2%;
  background: none;
}

.jackboxBox.btn:hover {
  background: #414a50;
  color: var(--white);
}


::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;

}

::-webkit-scrollbar-thumb {
  background: #3aa2ff;
  border-radius: 10px;

}


::-webkit-scrollbar-thumb:hover {
  background: #3aa2ff;
}

::-webkit-scrollbar {
  height: 5px;
  width: 7px;
}

.captain-vice-captain button.btn {
  min-width: 74px;
  /* padding: 3% 9% 3% 9%; */
  border: none;
}

.captain-vice-captain button.btn::before {
  border: none;
}


.match-time-date-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.match-time {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
}

.match-date {
  font-size: 1rem;
  color: #bbbbbb;
  margin-top: 0.2rem;
}

.match-time-block {
  width: 23%;
}

.chat-left-message-box .message-box .message-content p {
  margin-left: 0;
  margin-bottom: 4px;
  margin-top: 15px;
}

.message-status i.ti.ti-check {
  color: #3798ff;
  font-size: 18px;
  font-weight: bold;
}

ul.live-score-match-user span {
  width: 100%;
  float: right;
  color: white;
  display: block;
  text-align: end;
  cursor: pointer;
  margin-bottom: 2px;
}


/*Test test*/

.match-selection-container {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #f9f9f9;
}

.match-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.match-tab {
  padding: 10px 20px;
  border: none;
  background: #f0f0f0;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
}

.match-tab:hover {
  background: #e0e0e0;
  color: #333;
}

.match-tab.active {
  background: #007bff;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.match-content {
  /* background: white; */
  border-radius: 6px;
  padding: 20px;
  min-height: 200px;
}

.tab-pane {
  display: block;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.tab-header h6 {
  color: #333;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.match-count {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.week-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
}

.week-header h6 {
  color: #555;
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.match-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.match-item:hover {
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
  transform: translateY(-1px);
}

.match-item.selected {
  border-color: #28a745;
  background: #f8fff9;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

.match-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.match-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.match-time {
  font-size: 12px;
  color: #666;
}

.match-status {
  display: flex;
  align-items: center;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-1 {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.status-2 {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-3 {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.week-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.week-tab {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.week-tab:hover {
  border-color: #007bff;
  color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.week-tab.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.week-dates {
  font-size: 10px;
  opacity: 0.8;
}

.week-number {
  font-weight: 600;
  color: inherit;
  font-size: 14px;
}

.week-content {
  display: none;
}

.week-content.active {
  display: block;
}

.no-matches {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.no-matches p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .match-tabs {
    flex-wrap: wrap;
    gap: 3px;
  }

  .match-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  .match-item {
    padding: 12px 15px;
  }

  .tab-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.fixture-box {
  margin: 15px 0px;
  text-align: right;
}

.fixture-box a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
}

.match-selection-container .match-content {
  padding: 0;
}

.prize-amount {
  color: #fff;
  /* white text */
  font-weight: bold;
  /* optional: make it stand out */
  font-size: 16px;
  /* adjust as needed */
  display: inline-block;
  text-align: center;
  margin-top: 24px;
}

/* Responsible Gambling Links Styles */
.responsible-gambling-links {
  margin-top: 30px;
  padding: 20px 0;
}

.responsible-gambling-links h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.link-item {
  background: transparent;
  border: 1px solid #666666;
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #999999;
}

.link-title {
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.link-url {
  color: #D0D0D0;
  font-size: 13px;
  line-height: 1.4;
  word-break: break-all;
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .responsible-gambling-links h3 {
    font-size: 20px;
  }

  .link-item {
    padding: 12px 16px;
  }

  .link-title {
    font-size: 15px;
  }

  .link-url {
    font-size: 13px;
  }
}

.table-text-center-header {
  text-align: center !important;
}

.table-text-center-header td {
  text-align: center !important;
}

/* Jackpot Success Modal Styles */
.jackpot-success-section {
  background: #389bff08;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #dee2e6;
}

.jackpot-success-section h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.jackpot-item {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.jackpot-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.jackpot-info h5 {
  color: #212529;
  font-weight: 600;
  margin-bottom: 8px;
}

.jackpot-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 12px;
}

.jackpot-prizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.jackpot-prizes .badge {
  font-size: 12px;
  padding: 6px 12px;
}

.prize-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.prize-amounts .badge {
  background: linear-gradient(45deg, #28a745, #20c997) !important;
  color: white;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 8px;
}

.jackpot-number {
  text-align: center;
  min-width: 120px;
}

.jackpot-number-display {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 4px;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.jackpot-list {
  max-height: 400px;
  overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .jackpot-success-section {
    padding: 15px;
  }

  .jackpot-item .d-flex {
    flex-direction: column;
    gap: 15px;
  }

  .jackpot-number {
    min-width: auto;
    width: 100%;
  }

  .jackpot-prizes {
    justify-content: center;
  }
}

.homeAutoslider {
  font-size: 59px;
  color: var(--blue);
  font-weight: 600;
}