body {
  background-color: rgb(24, 24, 24);
}

.navbar-custom {
  background-color: #000 !important;
  /* border-bottom: 2px solid #be8e2e; */
}

.navbar-custom .nav-link {
  color: #000;
  font-weight: bold;
}

.navbar-custom .nav-link:hover {
  color: #545454;
}

.sidebar {
  background-color:#e1c35a!important;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar i {
  color: rgb(24, 24, 24) !important;
}

.sidebar a {
  color: #1b1b1b !important;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  padding: 12px 19px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-left: 5px solid transparent;
  transition: 0.3s ease all;
}

.sidebar a.active,
.sidebar a:hover {
  background-color: rgb(0, 0, 0) !important;
  border-radius: 0 50px 50px 0;
  color: #ffffff !important;
  border-left: 5px solid #be8e2e;
}

.sidebar a.active i,
.sidebar a:hover i {
  color: #be8e2e !important;
}

.sidebar a i {
  width: 30px;
  font-size: 25px;
  text-align: center;
}

.card-yellow {
  background-color: #edb631;
  color: #000;
  font-weight: bold;
  border: 1px solid #be8e2e;
}

/* login card css */
.login {
  background: url("/assets/images/4.png") no-repeat center center fixed ;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.login-card {
  background: rgba(66, 66, 64, 0.3);  
  backdrop-filter: blur(10px);        
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  color: #fff;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2); /* thin glass border */
}
.login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 0;
}

.login-card {
  position: relative;
  z-index: 1;
}

.login-card h1 {
  font-weight: bold;
  color: #f2b632;
  margin-bottom: 30px;
}

.form-control {
  background-color: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
}

.form-control:focus {
  background-color: #2a2a2a;
  color: #fff;
  border-color: #f2b632;
  box-shadow: none;
}
.btn-login {
  background-color: #f2d278;
  border: none;
  font-weight: bold;
  color: #000;
}

.btn-login:hover {
  background-color: #d9b85f;
}

.signup-link {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #ccc;
}

.signup-link:hover {
  color: #f2b632;
  text-decoration: none;
}
/* sign up css */
  :root{
    --gold:#edb631;
    --gold-2:#e1c35a;
    --text:#ffffff;
    --glass: rgba(50,50,50,.55);
  }


  .mybody{
    margin:0;
    font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
    color:var(--text);
    background:
      linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.8)),
      url("/assets/images/1_cleanup.png") center/cover no-repeat fixed;
    overflow-x:hidden;
  }

  /* Layout */
  .hero{
    min-height:100vh;
    display:grid;
    align-items:center;
    position:relative;
  }
  .brand-logo{
    width:92px;
    height:auto;
    margin-bottom:18px;
  }

  /* Headings (left side) */
  .title-xl{
    font-weight:800;
    line-height:1.05;
    letter-spacing:.5px;
    color:var(--gold);
    text-shadow:0 3px 0 rgba(0,0,0,.65);
    font-size:clamp(30px,4.4vw,56px);
  }
  .subtitle{
    text-transform:uppercase;
    font-weight:700;
    font-size:clamp(14px,1.6vw,22px);
    margin-top:8px;
  }
  .muted{
    margin-top:6px;
    letter-spacing:.4px;
    color:rgba(255,255,255,.75);
    font-weight:600;
  }

  /* Glass card (right) */
  .glass{
    background:var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius:12px;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 12px 40px rgba(0,0,0,.55);
    padding:34px 28px;
    max-width:720px; /* wide like the screenshot */
  }

  /* Fields */
  .field{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 16px 12px 88px; /* space for icon chip */
    margin-bottom:18px;
    border-radius:8px;
    background:rgba(0,0,0,.35);
    border:2px solid var(--gold);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.45),
      0 5px 12px rgba(0,0,0,.25);
  }
  /* faux “double-line” top accent like the design */
  .field::before{
    content:"";
    position:absolute;
    top:-8px;
    right:18px;
    width:78%;
    height:8px;
    border-top:3px solid var(--gold);
    border-right:3px solid var(--gold);
    transform:skewX(-15deg);
    opacity:.95;
  }

  .icon-chip{
    position:absolute;
    left:16px;
    width:56px; height:56px;
    display:grid; place-items:center;
    border-radius:999px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.35);
  }
  .icon-chip::after{
    content:"";
    position:absolute; inset:6px;
    border-radius:999px;
    background:var(--gold);
  }
  .icon-chip i{
    position:relative; /* above ::after */
    z-index:1; color:#1a1a1a; font-size:18px;
  }

  .field input{
    background:transparent;
    border:0;
    outline:0;
    color:#fff;
    width:100%;
    font-weight:600;
    letter-spacing:.4px;
    padding:6px 2px;
  }
  .field input::placeholder{ color:#e7e7e7; text-transform:uppercase; font-weight:700; }

  /* CTA button */
  .btn-gold{
    display:block;
    width:100%;
    border:0;
    border-radius:42px;
    padding:14px 24px;
    font-weight:800;
    letter-spacing:.6px;
    color:#161616;
    background:linear-gradient(180deg, #f1e5a0, var(--gold-2));
    box-shadow:
      inset 0 3px 0 rgba(255,255,255,.45),
      0 8px 22px rgba(0,0,0,.35);
    transition:transform .15s ease, filter .15s ease;
  }
  .btn-gold:hover{ transform:translateY(-1px); filter:saturate(1.1); }

  /* Layered yellow corner shapes (bottom left / right) */
  .corners{ pointer-events:none; }
  .corner{
    position:absolute; bottom:0; width:280px; height:210px;
  }
  .corner.left{ left:0; }
  .corner.right{ right:0; transform:scaleX(-1); } /* mirror the same shapes */

  .bar{
    position:absolute; background:var(--gold);
    box-shadow:inset -4px -4px 0 rgba(0,0,0,.3);
    transform:skewX(-28deg);
  }
  /* stack bars to mimic screenshot */
  .left .bar.b1{ left:-30px; bottom:18px; width:210px; height:22px; }
  .left .bar.b2{ left:-10px; bottom:52px; width:240px; height:22px; }
  .left .bar.b3{ left:50px;  bottom:86px; width:170px; height:22px; }
  .left .bar.b4{ left:110px; bottom:120px; width:120px; height:22px; }
  /* dark “cut” detail */
  .cut{
    position:absolute; right:26px; bottom:58px;
    width:20px; height:76px; background:#111; opacity:.85;
    box-shadow:inset -3px -3px 0 rgba(0,0,0,.6);
    transform:skewX(-28deg);
  }

  /* Responsiveness */
  @media (max-width: 991.98px){
    .glass{max-width:100%}
    .corner{opacity:.65; width:200px; height:150px}
    .left .bar.b1{bottom:10px;width:150px;height:18px}
    .left .bar.b2{bottom:38px;width:170px;height:18px}
    .left .bar.b3{bottom:64px;width:120px;height:18px}
    .left .bar.b4{bottom:90px;width:90px; height:18px}
    .cut{right:18px;bottom:40px;height:58px}
  }
/* allproducts */
.top-graphic img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: bottom bottom;
}

/* my games css */
.banner {

      border: 1px solid #c2b273;
      /* padding: 5px 0; */
      /* margin: 15px 0; */
      font-weight: bold;
      color: #ffb300;
      font-size: 30px;
      letter-spacing: 2px;
    }
    .banner span {
      background: black;
      color: #ffb300;
      padding: 6px 45px;
      clip-path: polygon(100% 0, 85% 50%, 100% 100%, 0% 100%, 15% 50%, 0% 0%);
      display: inline-block;
    }
    .price-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      border: 1.9px solid #c2b273 !important;
    }
    .price-box div {
      flex: 1;
      padding: 15px;
      font-weight: bolder;
      color: white;
      background-color: #b38a42;
      width: 20px;
      text-align: center;
    }
    .price-box div:last-child {
      text-align: right;
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0 50%);
    }
    .price-box div:first-child {
      text-align: left;
      clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 0% 50%);
    }

    /* invoic style  */
  
    /* Tabs */
    .invoice .report-tab {
      background: linear-gradient(to right, #e2b60500,#d6b107, #f1c40f, #e2b60500);
      color: #000;
      font-weight: bold;
      border-radius: 8px;
      margin-bottom: 8px;
      width: 100%;
      font-size: 24px;
      padding: 18px;
      cursor: pointer;
      text-align: center;
    }
    .invoice .report-tab.active {
      background: linear-gradient(to right,#e2b60500,#b79305, #d7ae0a, #e2b60500);
    }
    
    .invoice .report-content {
      display: none;
      background: #f3e6aa;
      color: #000;
      border-radius: 6px;
      padding: 16px;
    }
    .invoice .report-content.active {
      display: block;
    }

    /* Table Styling */
    .invoice table {
      width: 100%;
      border-collapse: collapse;
      background: #f3e6aa;
      color: #000;
      font-size: 15px;
    }
    .invoice table td {
      padding: 8px 12px;
      border: 1px solid #000;
    }
    .invoice table td:first-child {
      font-weight: bold;
    }

    /* Check Button Style */
    .invoice .check-btn {
      display: inline-block;
      background: linear-gradient(#f1c40f, #d6b107);
      color: #000;
      font-weight: bold;
      font-size: 20px;
      padding: 14px 50px;
      border: none;
      clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
      transition: all 0.2s ease-in-out;
      /* border: 2px solid  black; */
      position: relative;
    }
    
    .invoice .check-btn:hover {
      background: linear-gradient(#d6b107, #f1c40f);
      transform: scale(1.05);
    }

    /* qr code css */
    .app-body { 
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
      color: #fff;
      min-height: 100vh;
    }
    .section-title {
      margin-top: 20px;
      font-size: 24px;
      color: white;
      text-align: center;
    }
    .card-box {
      margin: 20px auto;
      text-align: center;
    }
    .btn-primary {
      padding: 12px 25px;
      margin: 15px;
      cursor: pointer;
      font-size: 16px;
      border: none;
      border-radius: 25px;
      background: linear-gradient(135deg, #00c6ff, #0072ff);
      color: white;
      font-weight: bold;
      transition: 0.3s;
    }
    .btn-primary:hover {
      transform: scale(1.05);
      background: linear-gradient(135deg, #0072ff, #00c6ff);
    }
    .scan-result {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      font-weight: bold;
    }
