
    :root {
        --dark-blue: #09438F;
        --green: #0C8E48;
        --easy-green: #0C8E48;
        --bg: #09438F;
        --accent: #E63946;
        --primary-blue: #09438F;
    }

    body {
        background: #f5f6fa;
        font-family: 'Baloo 2', cursive;
    }

    .draw-card {
        border-radius: 24px;
        box-shadow: 0 12px 25px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .draw-header {
        background: var(--dark-blue);
        color: #fff;
        padding: 30px 20px;
        text-align: center;
        font-weight: 600;
    }

    .draw-header small {
        display: block;
        margin-top: 8px;
        font-size: 0.95rem;
        opacity: 0.9;
    }

    .winning-title {
        font-weight: 600;
        margin-top: 20px;
        color: var(--dark-blue);
    }

    .numbers-pill {
        background: #00b85c;
        padding: 12px 18px;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 12px 0 20px;
    }

    .number-ball {
        background: #fff;
        color: var(--dark-blue);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .stats {
        font-weight: 600;
        margin-bottom: 6px;
    }

    .stats span {
        color: var(--green);
    }

    .btn-view {
        background: var(--green);
        color: #fff;
        border-radius: 50px;
        padding: 12px 28px;
        font-weight: 600;
        margin-top: 20px;
    }

    .btn-view:hover {
        background: #0a7b3d;
        color: #fff;
    }

    .top-bar {
        background: #1F1B49;
        transition: transform 0.3s ease;
    }

    .top-bar.hidden {
        transform: translateY(-100%);
    }

    .main-navbar {
        background: #1F1B49;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }


    .footer {
        background: #09438F;
    }

    .footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 6px;
        font-weight: 500;
    }

    .footer a:hover {
        text-decoration: underline;
    }

    .download-section {
        background: #ffffff;
    }
    .checkout-number-ball {
      background-color: var(--easy-green);
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 6px;
      font-weight: 600;
    }

    .place-order {
      background-color: #1c1c4c;
      color: #fff;
      border-radius: 30px;
      padding: 12px 50px;
      border: none;
    }
/* game */
    .lottery-card {
      color: #fff;
      border-radius: 20px;
      padding: 24px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .lottery-title {
      font-size: 28px;
      font-weight: 800;
    }

    .lottery-badge {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 12px;
      background: rgba(255,255,255,0.2);
    }

    .prize-label {
      font-size: 14px;
      opacity: 0.9;
      text-transform: uppercase;
    }

    .prize-amount {
      font-size: 32px;
      font-weight: 800;
    }

    .countdown {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 15px;
    }

    .time-box {
      background: #fff;
      color: #000;
      border-radius: 10px;
      width: 60px;
      padding: 6px 0;
      text-align: center;
    }

    .time-box span {
      display: block;
      font-size: 18px;
      font-weight: 700;
    }

    .time-box small {
      font-size: 10px;
      text-transform: uppercase;
      opacity: 0.6;
    }

    .btn-buy {
      background: #fff;
      border-radius: 30px;
      padding: 10px 24px;
      font-weight: 700;
      border: none;
      margin-top: 20px;
      width: fit-content;
      align-self: center;
    }

    /* Card Colors */
    .mega7 { background: #d62839; }
    .easy6 { background: #0bb65c; }
    .fast5 { background: #1484e6; }
    .pick2 { background: #ff8616; }
    .pick1 { background: #9b59b6; }
/* end of game */


/** Header */

body {
    padding-top: 130px;
    /* height: 100%; */
}

/* HEADER */
.main-header {
    background: var(--bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-row {
    padding: 8px 0;
    font-size: 14px;
}

.menu-row {
    padding: 14px 0;
    transition: padding 0.3s ease;
}

/* SHRINK MODE */
.header-shrink .top-row {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-shrink .menu-row nav {
    display: none;
}

.header-shrink .menu-row {
    padding: 6px 0;
}

/* LOGO */
.logo img {
    height: 66px;
    transition: height 0.3s ease;
}

.header-shrink .logo img {
    height: 34px;
}

/* DESKTOP NAV */
.nav-links a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 18px;
}

/* BUTTONS */
.btn-buy {
    background: var(--accent);
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 700;
    border: none;
}

.icon-btn {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    position: relative;
}

/* MOBILE MENU */
.mobile-menu {
    background: var(--bg);
    display: none;
}

.mobile-menu a {
    color: #fff;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    body {
    padding-top: 80px;
    }

    .top-row,
    .nav-links {
    display: none !important;
    }

    .logo img {
    height: 36px;
    }
}


/* login */
.login-body {
    min-height: 75vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", sans-serif;
}
.login-wrapper {
    width: 80%;
    max-width: 420px;
    text-align: center;
}

.user-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #1f2a6d;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon::before {
    content: "";
    width: 26px;
    height: 26px;
    border: 2px solid #1f2a6d;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-10px);
}

.user-icon::after {
    content: "";
    width: 38px;
    height: 20px;
    border: 2px solid #1f2a6d;
    border-top: none;
    border-radius: 0 0 20px 20px;
    position: absolute;
    transform: translateY(16px);
}

h2 {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.form-control {
    background-color: #eaf0ff;
    border-radius: 8px;
    border: 1px solid #b9c4ff;
    padding: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6c79ff;
}

.btn-login {
    background-color: #c9b0b0;
    color: #fff;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    border: none;
}

.btn-login:hover {
    background-color: #b39898;
}

.links a {
    color: red;
    text-decoration: none;
    font-size: 14px;
}

.divider {
    border-top: 1px solid #e0c5d8;
    margin: 25px 0;
}

.create-account a {
    color: red;
    font-weight: 500;
    text-decoration: none;
}
/* End of login */


.ticket {
    border: 2px solid #e5e5e5;
    border-radius: 14px;
    padding: 15px;
    background: #fff;
    position: relative;
  }

  .ticket.active {
    border-color: #0bb35a;
  }

  .ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .easy-icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  /* Selected numbers (top placeholders) */
  .selected-row {
    display: flex;
    gap: 6px;
    margin: 10px 0;
  }

  .selected-ball {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #0bb35a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #0bb35a;
  }

  .selected-ball.filled {
    background: #0bb35a;
    color: #fff;
  }

  /* Number grid */
  .numbers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
  }

  @media (max-width: 576px) {
    .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}


  @media (max-width: 576px) {
        .numbers .badge {
            padding: 10px;
            font-size: 0.85rem;
        }
        .create-account{
            margin-bottom: 14px;
        }
    }


  .ball {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #0bb35a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
  }

  .ball.selected {
    background: #0bb35a;
    color: #fff;
  }

  .ticket-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .add-ticket {
    border: 2px dashed #0bb35a;
    border-radius: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0bb35a;
    font-weight: 600;
    cursor: pointer;
  }

  /* Easy Header */
  .easy-header {
    background: linear-gradient(180deg, #14b35a 0%, #0a6b34 100%);
    color: #fff;
    padding: 30px 15px;
    margin-top: 0;
  }

  .easy-logo {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .easy-logo span {
    font-weight: 600;
  }

  .next-draw {
    text-align: center;
  }

  .countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }

  .time-box {
    background: #ffffff;
    color: #0bb35a;
    border-radius: 10px;
    width: 70px;
    padding: 8px 0;
    text-align: center;
    font-weight: 700;
  }

  .time-box small {
    display: block;
    font-size: 11px;
    color: #0bb35a;
    font-weight: 600;
  }

  .jackpot {
    font-size: 36px;
    font-weight: 800;
    text-align: end;
  }
  .btn-green {
    background-color: var(--easy-green);
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
  }

.btn-green:hover {
    background-color: #0a7b3e;
}

@media (max-width: 768px) {
    .easy-logo {
      font-size: 36px;
      text-align: center;
    }

    .jackpot {
      text-align: center;
      margin-top: 15px;
    }
}
  /* end of easy header */

/* Start of add credit */
.amount-btn {
    border-radius: 20px;
    padding: 6px 16px;
    background: #1f1b4d;
    color: #fff;
    border: none;
}
.add-credit-btn {
    border-radius: 20px;
    padding: 6px 16px;
    background: #1f1b4d;
    color: #fff;
    border: none;
}
.card-box {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 25px;
}
.pay-btn {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 12px 25px;
    border: none;
}

/* End of add credit start of account */
/* Wallet cards */
.wallet-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

.wallet-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 30px;
    padding: 8px 25px;
    border: none;
    font-size: 14px;
}

/* Sidebar */
.sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.sidebar a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.sidebar a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.sidebar i {
    margin-right: 10px;
    font-size: 16px;
}

/* Details */
.details-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.detail-row {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #777;
}

.detail-value {
    font-size: 15px;
    color: #000;
}

.edit-icon {
    color: var(--primary-blue);
    cursor: pointer;
}

/* Account */

.page-title {
    font-size: 32px;
    font-weight: 800;
    color: #1F1B49;
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

label {
    font-weight: 600;
    margin-bottom: 10px;
}

.required {
    color: red;
}

.form-control.custom-input {
    height: 64px;
    border-radius: 40px;
    padding: 0 24px;
    border: 1px solid #cfcfcf;
}

.form-control.custom-input:focus {
    box-shadow: none;
    border-color: #1F1B49;
}

.btn-change {
    background: #8e8e94;
    color: #fff;
    border-radius: 40px;
    padding: 14px 36px;
    font-weight: 700;
    border: none;
    margin-top: 10px;
}

hr.section-divider {
    margin: 25px 0 25px;
    border-top: 1px solid #cfcfcf;
}

.delete-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.delete-text {
    color: #8c8c8c;
    max-width: 800px;
    margin-bottom: 24px;
}

.btn-delete {
    background: #d72638;
    color: #fff;
    border-radius: 40px;
    padding: 14px 36px;
    font-weight: 700;
    border: none;
}

.btn-delete:hover {
    background: #bb1f2e;
}

/* winnings */
h2, h3 {
    font-weight: 700;
    color: #1f1b4d;
}
.divider {
    border-top: 2px solid #e5e5e5;
    margin: 20px 0;
}
.btn-bank {
    background: #9c9ca3;
    color: #fff;
    border-radius: 40px;
    padding: 12px 40px;
    border: none;
}
.table-placeholder {
    background: #e6e6e6;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    color: #555;
}
/* End of winnions */


/* start of cart */
.add-credit-btn {
  background-color: #1c1b4d;
  color: #fff;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
}

.add-credit-btn:hover {
  background-color: #15143a;
   color: #fff;
}

/* Center button on small screens */
@media (max-width: 768px) {
  .add-credit-btn {
    margin: 0 auto;
    display: block;
  }
  body{
        padding-top: 60px;
    }
}
#cartCount {
  font-size: 0.7rem;
  padding: 4px 6px;
}

/* end of cart */

