/* =========================
   GLOBAL CSS
========================= */

:root {
  --primary: #b12b2e;
  --pink: #b12b2e;
  --green: #00d96e;
  --dark: #111111;
  --light: #f3f3f3;
  --white: #ffffff;
  --text: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
}

.logo {
  width: 100px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  margin: 0 15px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.nav-right {
  gap: 10px;
}

.nav-btn {
  background: #fff;
  color: #111;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
  text-transform: uppercase;
}

.nav-btn:hover {
  background: #b12b2e;
  color: #fff;
}

.cart-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #b12b2e;
  color: #fff;
}

.store-btn img {
  height: 40px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  height: 600px;
  /*    background:url('../images/banner.avif');*/
  background-size: cover;
  background-position: center;
  position: relative;
  /*        background: #480e0e;*/
  background: linear-gradient(
    90deg,
    rgb(124 46 46) 0%,
    rgb(249 81 85) 50%,
    rgb(241 194 58) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 90px;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

/* =========================
   TABS
========================= */

/* =========================
   TABS
========================= */

.custom-tabs {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* DEFAULT TAB DESIGN */

.custom-tabs .nav-link {
  border: none;
  background: #ffffff;
  color: #555;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
box-shadow: 0 4px 14px rgb(0 0 0 / 17%);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

/* HOVER EFFECT */

.custom-tabs .nav-link:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

/* ACTIVE TAB DESIGN */

.custom-tabs .nav-link.active {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  color: #000000;
  box-shadow: 0 8px 18px rgba(91, 29, 255, 0.25);
}

/* OPTIONAL SECONDARY STYLE */

.custom-tabs.secondary-tabs .nav-link {
  background: #fff;
  color: #666;
}

.custom-tabs.secondary-tabs .nav-link.active {
  background: #fff;
  color: #fff;
}

/* =========================
   CAMPAIGN CARD
========================= */

.campaign-card {
  background: #fff;
  border-radius: 35px;
  padding: 28px;
  position: relative;
box-shadow: 0 5px 18px rgb(0 0 0 / 28%);
}

.campaign-tag {
  position: absolute;
  top: -14px;
  left: 35px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
}

.yellow-tag {
  background: #b12b2e;
  color: #fff;
}

.green-tag {
  background: #b12b2e;
  color: #fff;
}

.red-tag {
  background: #b12b2e;
  color: #fff;
}

.black-tag {
  background: #b12b2e;
  color: #fff;
}

.campaign-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 28px;
}

.win-text {
  color: var(--pink);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
}

.cash-text {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.campaign-details {
  margin-top: 20px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.price-box {
  min-width: 140px;
  background: #ececec;
  border-radius: 35px;
  padding: 16px;
  text-align: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}

.price-box span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.buy-btn {
  border: none;
  background: linear-gradient(90deg, #b12b2e, #da1818);
  color: #fff;
  border-radius: 40px;
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.credit-note {
  color: #888;
  font-size: 12px;
  margin-bottom: 18px;
}

.info-btn {
  width: 100%;
  border: none;
  background: #ececec;
  color: #777;
  border-radius: 35px;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.info-btn:hover {
  background: #111;
  color: #fff;
}

/* =========================
   SECTION TITLES
========================= */

.section-title {
  display: inline-block;
  padding: 18px 70px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 900;
  margin: 0 auto 0px;
  text-align: center;
}

.green-title {
  background: #b12b2e;
  color: #ffffff;
}

.pink-title {
  background: #b12b2e;
  color: #fff;
}

.title-wrapper {
  text-align: center;
}

/* =========================
   HOW IT WORKS
========================= */

/* .step-card{
    min-height:270px;
    border-radius:35px;
    padding:35px;
    position:relative;
    overflow:hidden;
}

.blue-bg{
    background:#4d3cff;
    color:#fff;
}

.yellow-bg{
    background:#ffe600;
    color:#111;
}

.pink-bg{
    background:#ff57d2;
    color:#fff;
}

.red-bg{
    background:#ff4268;
    color:#fff;
}

.step-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:#1c2142;
    color:#fff;
    font-size:14px;
    font-weight:800;
    margin-bottom:20px;
}

.dark-badge{
    background:#111;
}

.step-card h3{
    font-size:28px;
    font-weight:900;
    max-width:260px;
    line-height:1.3;
}

.step-phone{
    position:absolute;
    right:10px;
    bottom:0;
    height:230px;
} */

.how-section {
  background: #fff;
  padding: 0px 200px !important;
}

.howitsection {
  padding-left: 200px;
  padding-right: 200px;
}

.step-card {
  border-radius: 45px;
  min-height: 280px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-content {
  /*    max-width:300px;*/
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.step-badge {
  display: inline-block;
  background: #ffffff;
  color: #000;
  font-size: 20px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 50px;
  margin-bottom: 25px;
  line-height: 1;
}

.dark-badge {
  background: #0a1c4d;
  color: #fff;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 34px;
  color: #fff;
  text-transform: uppercase;
}

.dark-text {
  color: #000 !important;
}

.step-mobile {
  position: absolute;
  right: 20px;
  bottom: 0;
  display: none;
}

.step-mobile img {
  height: 330px;
  object-fit: contain;
}

/* BACKGROUND COLORS */

/*.blue-bg{
    background:#224969;
}

.yellow-bg{
    background:#bd3538;
}

.pink-bg{
    background:#7c2e2e;
}

.red-bg{
    background:#cd851e;
}*/

.blue-bg {
  background: linear-gradient(135deg, #0d70b7 0%, #064070 100%) !important;
  box-shadow: 0 10px 25px rgba(13, 112, 183, 0.25);
}

.yellow-bg {
  background: linear-gradient(135deg, #d31826 0%, #880813 100%) !important;
  box-shadow: 0 10px 25px rgba(211, 24, 38, 0.25);
}

.pink-bg {
  background: linear-gradient(135deg, #1f2d4d 0%, #0d1527 100%) !important;
  box-shadow: 0 10px 25px rgba(13, 21, 39, 0.25);
}

.red-bg {
  background: linear-gradient(135deg, #f5a623 0%, #b86e06 100%) !important;
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.25);
}

/* =========================================
   SOLD OUT
========================================= */

.sold-title {
  background: #b12b2e;
  color: #fff;
}

.sold-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sold-overlay {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.sold-image {
  width: 100%;

  object-fit: cover;
}

.sold-body {
  padding: 20px;
}

.sold-body h4 {
  font-size: 20px;
  font-weight: 800;
}

.sold-body a {
  color: #4b4bff;
  text-decoration: none;
  font-weight: 600;
}

/* =========================================
   DOWNLOAD
========================================= */

.download-box {
  background: #fff;
  max-width: 420px;
  margin: auto;
  padding: 30px;
  border-radius: 50px;
}

.store-btn {
  height: 45px;
}

/* =========================================
   WINNERS
========================================= */

.winner-title {
  background: #b12b2e;
  color: #fff;
}

.winner-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.winner-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.winner-body {
  padding: 20px;
  text-align: center;
}

.winner-body h4 {
  font-size: 20px;
  font-weight: 900;
}

.winner-body h5 {
  font-size: 22px;
  color: #b12b2e;
  font-weight: 800;
}

.see-btn {
  background: #f7f7f7;
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 800;
}

/* =========================================
   DREAM STORE
========================================= */

.store-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.store-products {
  width: 50%;
  padding: 35px;
}

.store-banner {
  width: 50%;
}

.store-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modesh-logo {
  height: 45px;
  margin-bottom: 25px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-item {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
}

.product-item img {
  width: 100%;
}

.visit-btn {
  margin-top: 25px;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
}

/* =========================
   ARROWS
========================= */

.arrow {
  position: absolute;
  z-index: 5;
}

.arrow img {
  width: 90px;
  display: none;
}

/* STEP 1 TO STEP 2 */

.arrow-right {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* STEP 2 TO STEP 3 */

.arrow-left {
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   FOOTER
========================= */

.footer-section {
  background: #f7f7f7;
  padding: 60px 0 30px;
  margin-top: 0px;
}

.footer-logo {
  width: 115px;
}

.footer-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #444;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #b12b2e;
}

.contact-box {
  background: #f5f5f5;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}

.contact-box i {
  margin-right: 10px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #b12b2e;
}

.copyright {
  text-align: center;
  color: #888;
  font-size: 13px;
  margin-top: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .hero-section {
    height: 420px;
  }

  .hero-content {
    height: 380px !important;
  }

  .hero-title {
    font-size: 70px;
  }

  .campaign-image {
    margin-bottom: 25px;
  }

  .step-card {
    min-height: auto;
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }

  .step-content {
    max-width: 100%;
  }

  .step-mobile {
    position: relative;
    right: auto;
    margin-top: 30px;
    display: none;
  }

  .step-mobile img {
    height: 250px;
  }

  .step-card h3 {
    font-size: 22px;
  }
  .navbar-collapse {
    background: #111;
    padding: 20px;
    border-radius: 20px;
    margin-top: 10px;
  }

  .nav-right {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .arrow {
    display: none;
  }

  .store-wrapper {
    flex-direction: column;
  }

  .store-products,
  .store-banner {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.navbar-toggler:focus {
  box-shadow: unset !important;
}

/* res */

@media (max-width: 767px) {
    .dd-btn-blue, .dd-btn-white {
            padding: 12px 25px!important;
    }
    .dd-page-title {
    font-size: 22px !important;
}

.auth-title {
    font-size: 22px!important;
}

.auth-btn {
    font-size: 14px!important;
}

    .winner-body h5 {
    font-size: 18px!important;
}

    .total-label {
    font-size: 18px!important;
}

    .inner {
    margin-bottom: 120px!important;
}
    .dd-entries-title {
    font-size: 22px!important;
}

    .footer-logo {
    width: 90px!important;
}

    .navbar-nav .nav-link, .nav-btn {
 
    font-size: 13px!important;
}

    .winner-section .text-center {
    margin-bottom: 30px !important;
}

    section.sold-section {
    padding-top: 30px !important!important;
        padding-bottom: 30px !important;
}

.sold-section .text-center {
    margin-bottom: 30px !important;
}

.sold-body h4 {
    font-size: 16px!important;
   
}

.sold-body a {
    font-size: 14px!important;
}

.sold-body p {
    margin-bottom: 5px !important;
}

    ul.nav.nav-pills.custom-tabs {
    margin-bottom: 30px !important;
}

.campaign-section {
    padding-top: 30px !important;
}

    .footer-section {
   
    padding: 30px 0 10px!important;
  
}

.footer-logo {
    width: 75px!important;
}

.footer-links li {
    margin-bottom: 6px!important;
}

.footer-title {
        font-size: 18px!important;

    margin-bottom: 10px!important;
}

.social-icons a {
    width: 35px!important;
    height: 35px!important;
   
    margin-right: 4px!important;
 
}

.buy-btn {
              font-size: 14px !important;
    padding: 16px 24px!important;
    
}

    .section-title {
        font-size: 15px!important;
        padding: 12px 35px!important;
    }

        .step-card h3 {
              font-size: 14px !important;
        line-height: 26px !important;
    }

  .campaign-details {
    margin-bottom: 10px!important;
    margin-top: 10px!important;
  }

  .winner-body h4 {
    font-size: 18px !important;
  }

  .logo {
    width: 80px !important;
  }

  .howitsection {
    padding-left: 0px;
    padding-right: 0px;
  }

  .how-section {
    padding: 0 !important;
  }

  .hero-section {
    height: 300px;
  }

  .hero-content {
    height: 340px!important;
  }

  .hero-title {
    font-size: 30px;
  }

  .custom-tabs {
    gap: 10px;
  }

  .custom-tabs .nav-link {
    padding: 12px 18px;
    font-size: 11px;
  }

  .campaign-card {
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 25px !important;
  }

  .campaign-image {
    height: 200px;
  }

  .campaign-tag {
    left: 20px;
    font-size: 10px;
  }

  .win-text {
    font-size: 20px;
  }

  .cash-text {
    font-size: 20px!important;
  }

  .section-title {
           font-size: 14px!important;
        padding: 12px 30px!important;
  }

  .step-card {
    border-radius: 30px;
    padding: 25px;
  }

  .step-badge {
    font-size: 18px;
    padding: 12px 22px;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .step-mobile img {
    height: 220px;
  }

  .winner-content h4 {
    font-size: 22px;
  }

  .winner-image,
  .sold-image {
    height: 180px;
  }

  .download-box {
    border-radius: 25px;
    padding: 20px;
  }
}

.winner-section {
  padding-top: 0 !important;
}

.campaign-section {
  padding-bottom: 0 !important;
}

.winner-section {
  padding-bottom: 0 !important;
  margin-bottom: 80px;
}

.navbar-toggler {
  background: #fff;
}

/* login register css */

/* ================= DREAM CAIRO AUTH PAGES STYLING ================= */

.auth-section {
  background-color: #fff; /* Same smooth light background as campaigns */

  display: flex;
  align-items: center;
  position: relative;
}

/* Background Soft Glow to match Hero style */
.auth-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(195, 20, 30, 0.08) 0%,
    rgba(241, 242, 244, 0) 70%
  );
  pointer-events: none;
}

.auth-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 40px;
  box-shadow: 0 15px 35px rgb(0 0 0 / 20%);
  border: 1px solid #eaeaea;
  position: relative;
  z-index: 2;
}

.auth-badge {
  display: inline-block;
  background: rgba(195, 20, 30, 0.1);
  color: #c3141e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.auth-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.text-highlight {
  color: #c3141e; /* Dream Cairo Brand Red */
}

.auth-subtitle {
  font-size: 14px;
  color: #718096;
  margin-bottom: 0;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}

.auth-input {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #fafbfc;
  color: #2d3748;
  transition: all 0.25s ease-in-out;
}

.auth-input:focus {
  background-color: #ffffff;
  border-color: #c3141e;
  box-shadow: 0 0 0 3.5px rgba(195, 20, 30, 0.12);
  outline: none;
}

.country-code-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  background-color: #f4f5f7;
}

.input-group .auth-input:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Red Theme Pill Button (Matches Enter from EGP 300 button) */
.auth-btn {
  background: linear-gradient(135deg, #d31027 0%, #a80c1b 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(195, 20, 30, 0.28);
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: linear-gradient(135deg, #ba0c1f 0%, #900a16 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(195, 20, 30, 0.38);
  color: #fff;
}

.auth-btn:active {
  transform: translateY(0);
}

.custom-checkbox {
  border-radius: 5px;
  cursor: pointer;
}

.custom-checkbox:checked {
  background-color: #c3141e;
  border-color: #c3141e;
}

.forgot-link {
  font-size: 12px;
  color: #c3141e;
  text-decoration: none;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-footer p {
  margin: 0;
  font-size: 14px;
  color: #718096;
}

.auth-switch-link {
  color: #c3141e;
  font-weight: 700;
  text-decoration: none;
}

.auth-switch-link:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .auth-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

/**/

.inner {
  margin-bottom: 140px;
}

.inner .navbar {
  background: linear-gradient(90deg, #b12b2e, #da1818);
}

/* Phone input box styling */
.phone-input-container .iti {
  width: 100%;
}

.phone-input-container .iti__flag-container {
  padding: 0 4px;
}

/* Country code block style inside input */
.phone-input-container .iti__selected-flag {
  background-color: #fafbfc;
  border-right: 1px solid #e2e8f0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 0 12px 0 16px;
}

.phone-input-container .auth-input {
  padding-left: 120px !important;
}

/* Dropdown list styling */
.iti__country-list {
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #e2e8f0 !important;
  margin-top: 6px !important;
  z-index: 1000 !important;
  max-height: 220px !important;
}

.iti__country {
  padding: 10px 14px !important;
  font-size: 14px;
}

.iti__country.iti__highlight {
  background-color: #f7f9fb !important;
}

.inner .nav-btn:hover {
  background: #fff !important;
  color: #000 !important;
}

/* ================= DREAM DUBAI EXACT WALLET STYLES ================= */

.dd-wallet-section {
  background-color: #fff;

  font-family: inherit;
}

.dd-wallet-title {
  font-size: 32px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
}

/* Red/Pink Top Balance Banner */
.dd-balance-banner {
  background: #ff0055;
  background: linear-gradient(90deg, #b12b2e, #da1818);
  border-radius: 35px;
  padding: 40px 45px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(230, 0, 80, 0.2);
}

.dd-balance-label {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  opacity: 0.95;
}

.dd-balance-val {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Header Buttons */
.dd-btn-blue {
  background: #eda537;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  /* box-shadow: 0 8px 20px rgba(47, 46, 255, 0.4); */
  cursor: pointer;
  transition: all 0.2s ease;
}

.dd-btn-blue:hover {
  background: #eda537;
  transform: translateY(-2px);
}

.dd-btn-white {
  background: #ffffff;
  color: #111111;
  border: none;
  font-size: 14px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dd-btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* White Content Cards */
.dd-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
      box-shadow: 0 4px 20px rgb(0 0 0 / 11%);
  border: 1px solid #f0f0f0;
}

.dd-section-subhead {
  font-size: 16px;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.3px;
}

/* Amount Selector Pills */
.dd-amount-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.amount-pill {
  background: #ffffff;
  border: 1.5px solid #edf0f2;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.amount-pill.active {
  border: 2px solid #eda537;
  color: #111111;
  box-shadow: 0 0 0 1px #eda537;
}

.amount-pill:hover:not(.active) {
  border-color: #cbd5e1;
}

/* Custom Input Field */
.custom-amount-field {
  border-radius: 12px;
  border: 1.5px solid #edf0f2;
  padding: 16px 20px;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
}

.custom-amount-field:focus {
  border-color: #2f2eff;
  box-shadow: none;
}

/* Payment Section */
.add-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
}

.plus-circle {
  width: 22px;
  height: 22px;
  background: #111111;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.total-label {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
}

.total-price {
  font-size: 24px;
  font-weight: 900;
  color: #111111;
}

/* Pay Now Button */
.dd-pay-btn {
  background: #f0f2f5;
  color: #a0aec0;
  border: none;
  font-size: 15px;
  font-weight: 900;
  padding: 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dd-pay-btn:hover {
  background: #eda537;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47, 46, 255, 0.3);
}

@media (max-width: 768px) {
  .dd-balance-banner {
    border-radius: 22px;
    padding: 25px;
  }
  .dd-amount-grid {
    gap: 8px;
  }
  .amount-pill {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* tickets */

/* ================= ENTRIES / TICKETS PAGE STYLING ================= */

.dd-entries-section {
  background-color: #f1f2f4;

  font-family: inherit;
}

.dd-entries-title {
  font-size: 28px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-align: center;
}

/* Empty State Card/Container */
.dd-empty-state-card {
  padding: 60px 20px;
  background: #fff;
}

/* Vector Ticket Icon Styling */
.empty-ticket-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.empty-ticket-icon svg {
  display: block;
}

.empty-ticket-icon:hover {
  transform: scale(1.05) rotate(-5deg);
}

/* Uppercase Notice Text */
.empty-state-text {
  font-size: 15px;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.8px;
  line-height: 1.5;
  margin: 0;
}

/* Blue Rounded Pill Button */
.dd-btn-start-shopping {
  background: linear-gradient(90deg, #b12b2e, #da1818);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  /*  box-shadow: 0 8px 25px rgba(47, 46, 255, 0.35);*/
  transition: all 0.25s ease-in-out;
  border: none;
}

.dd-btn-start-shopping:hover {
  background: linear-gradient(90deg, #b12b2e, #da1818);
  transform: translateY(-2px);
  /*  box-shadow: 0 12px 28px rgba(47, 46, 255, 0.45);*/
  color: #ffffff;
}

.dd-btn-start-shopping:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .dd-empty-state-card {
    min-height: 380px;
    padding: 40px 15px;
  }

  .empty-state-text {
    font-size: 13px;
  }

  .dd-btn-start-shopping {
    padding: 14px 36px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
  }
}

/**/

/* ================= PROFILE / ACCOUNT EXACT STYLES ================= */

.dd-account-section {
  background-color: #fff;
  min-height: 85vh;
  font-family: inherit;
}

.dd-page-title {
  font-size: 28px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* --- Left Column Sidebar --- */
.dd-sidebar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 18px;
     box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
}

.avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
}

.avatar-circle {
  width: 90px;
  height: 90px;
  background-color: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.edit-avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
}

.user-name {
  font-size: 16px;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.3px;
}

.user-email {
  font-size: 12px;
  color: #718096;
}

.wallet-pill-badge {
  display: inline-block;
  background: #eda537;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Sidebar Menu Item Buttons */
.sidebar-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
/*  letter-spacing: 0.3px;*/
}

.side-menu-item:hover {
  background: #edf0f2;
  color: #111111;
}

.side-menu-item.active-yellow {
  background: linear-gradient(90deg, #b12b2e, #da1818);
  color: #fff;
}

.side-menu-item.store-cyan-btn {
  background: linear-gradient(90deg, #00d2ff 0%, #00a2ff 100%);
  color: #ffffff;
  justify-content: center;
}

.side-menu-item.logout-link {
  background: #f8f9fa;
  color: #111111;
  justify-content: flex-start;
  padding-left: 20px;
}

/* --- Right Column Form --- */
.dd-form-card {
  background: transparent;
  padding: 0 10px;
}

.form-main-heading {
  font-size: 18px;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.5px;
}

/* Dream Dubai Floating Card Style Input Boxes */
.floating-input-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 16px;
  border: 1.5px solid #edf0f2;
  position: relative;
  transition: border-color 0.2s ease;
}

.floating-input-box:focus-within {
  border-color: #2f2eff;
}

.floating-input-box label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #718096;
  margin-bottom: 2px;
}

.dd-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  background: transparent;
  padding: 0;
}

.select-wrapper {
  position: relative;
}

.dd-select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 4px 30px 4px 0;
}

.dd-select option {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  background-color: #ffffff;
  /* Left indentation and vertical spacing */
  text-indent: 16px !important;
  padding: 10px 16px !important;
  line-height: 28px;
}

.select-wrapper::after {
  content: "⌵";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 900;
  color: #111111;
  pointer-events: none;
}

/* Phone input container inside box */
.profile-phone-wrap .iti {
  width: 100%;
}

.profile-phone-wrap .iti__selected-flag {
  background: transparent;
  padding: 0;
}

/* Gender Radio Button Pills */
.gender-radio-card input[type="radio"] {
  display: none;
}

.radio-pill-box {
  background: #ffffff;
  border: 1.5px solid #edf0f2;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.custom-radio-dot {
  width: 16px;
  height: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.gender-radio-card input[type="radio"]:checked + .radio-pill-box {
  border-color: #111111;
}

.gender-radio-card
  input[type="radio"]:checked
  + .radio-pill-box
  .custom-radio-dot {
  border-color: #111111;
}

.gender-radio-card
  input[type="radio"]:checked
  + .radio-pill-box
  .custom-radio-dot::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: #111111;
  border-radius: 50%;
}

.mandatory-text {
  color: #b5292b;
  font-size: 11px;
  font-weight: 700;
}

/* Update Button */
.dd-update-btn {
  background: linear-gradient(90deg, #b12b2e, #da1818);
  color: #fff;
  font-size: 14px;

  font-weight: 900;
  letter-spacing: 0.8px;
  border: none;
  padding: 14px;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.dd-update-btn:hover {
  background: linear-gradient(90deg, #b12b2e, #da1818);
  color: #fff;
}

/* Delete Account Pill */
.dd-delete-account-btn {
  background: #ffffff;
  border: 1px solid #b12b2e;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #b12b2e;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dd-delete-account-btn:hover {
  color: #b12b2e;
  border-color: #b12b2e;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
  .dd-account-section {
    padding-top: 15px;
  }
  .dd-sidebar-card {
    padding: 20px 14px;
    margin-bottom: 20px;
  }
  .dd-form-card {
    padding: 0;
  }
}
/* ================= DREAM CAIRO PRIVACY POLICY STYLES ================= */

.policy-section {
  background-color: #f1f2f4;
  min-height: calc(100vh - 120px);
  font-family: inherit;
}

.policy-badge {
  display: inline-block;
  background: rgba(195, 20, 30, 0.1);
  color: #c3141e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.policy-title {
     font-size: 28px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.text-highlight {
  color: #c3141e;
}

.policy-subtitle {
  font-size: 13px;
  color: #718096;
  font-weight: 700;
}

/* Central Card */
.policy-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 48px 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf0f2;
}

.policy-heading {
  font-size: 18px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
}

.policy-block p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-list {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-list li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 8px;
}

.policy-list li strong {
  color: #111111;
}

/* Contact Details Box */
.contact-box {
  background-color: #fafbfc;
  border-left: 4px solid #c3141e;
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 14px;
  border-top: 1px solid #edf0f2;
  border-right: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.contact-box p {
  font-size: 14px;
  color: #2d3748;
}

.policy-link {
  color: #c3141e;
  font-weight: 700;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .policy-card {
    padding: 30px 20px;
    border-radius: 18px;
  }
  
  .policy-title {
    font-size: 26px;
  }

  .policy-heading {
    font-size: 16px;
  }
}

.contact-box1 {
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}

label.gender-radio-card {
    width: 100%;
}




/* ================= CART PAGE STYLING ================= */

.dd-cart-section {
  background-color: #f1f2f4;
  min-height: calc(100vh - 140px);
  font-family: inherit;
}

.dd-cart-title {
  font-size: 32px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
}

.text-highlight {
  color: #c3141e; /* Dream Cairo Red */
}

.cart-items-count {
  font-size: 13px;
  font-weight: 700;
  color: #718096;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}

/* Cart Item Card */
.cart-item-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #edf0f2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.25s ease;
}

.cart-item-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cart-item-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.cart-item-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.item-tag-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ffcc00;
  color: #111111;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.campaign-ref {
  font-size: 11px;
  font-weight: 700;
  color: #a0aec0;
  display: block;
}

.cart-item-title {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

.cart-item-sub {
  font-size: 12px;
  color: #718096;
}

.unit-price {
  font-size: 12.5px;
  font-weight: 700;
  color: #c3141e;
}

/* Quantity Controls (+ / -) */
.qty-control-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 1.5px solid #edf0f2;
  border-radius: 50px;
  padding: 4px;
  max-width: 120px;
  margin: 0 auto;
}

.qty-btn {
  background: #ffffff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #c3141e;
  color: #ffffff;
}

.qty-input {
  width: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: #111111;
  outline: none;
}

.tickets-awarded-text {
  font-size: 11px;
  font-weight: 700;
  color: #2b6cb0;
}

/* Item Total & Remove */
.item-total-price {
  font-size: 16px;
  font-weight: 900;
  color: #111111;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.cart-remove-btn:hover {
  color: #c3141e;
}

/* Promo Voucher Box */
.promo-input {
  border-radius: 12px;
  border: 1.5px solid #edf0f2;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}

.promo-input:focus {
  border-color: #c3141e;
  box-shadow: none;
}

.btn-apply-promo {
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 11px 16px;
  transition: background 0.2s ease;
}

.btn-apply-promo:hover {
  background: #333333;
}

/* Right Summary Card */
.cart-summary-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 26px;
  border: 1px solid #edf0f2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.summary-heading {
  font-size: 17px;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.3px;
}

.summary-label {
  font-size: 14px;
  color: #718096;
  font-weight: 600;
}

.summary-val {
  font-size: 14px;
  color: #111111;
  font-weight: 800;
}

.summary-divider {
  border-top: 1px dashed #e2e8f0;
  opacity: 1;
}

.total-heading {
  font-size: 18px;
  font-weight: 900;
  color: #111111;
}

.total-sum {
  font-size: 22px;
  font-weight: 900;
  color: #c3141e;
}

/* Checkout Button */
.dd-btn-checkout {
  background: #c3141e;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(195, 20, 30, 0.3);
  transition: all 0.25s ease;
}

.dd-btn-checkout:hover {
  background: #a80c1b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(195, 20, 30, 0.4);
  color: #ffffff;
}

.continue-shopping-link {
  font-size: 13px;
  font-weight: 700;
  color: #718096;
  text-decoration: none;
  transition: color 0.2s ease;
}

.continue-shopping-link:hover {
  color: #c3141e;
}

.secure-badge small {
  color: #a0aec0;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .cart-item-card {
    padding: 15px;
  }
  .cart-item-thumb img {
    height: 75px;
  }
  .cart-item-title {
    font-size: 14px;
  }
  .dd-cart-title {
    font-size: 24px;
  }
}


.home-qty-wrapper {
  background: #ffffff;
  border: 1.5px solid #edf0f2;
  border-radius: 50px;
  padding: 4px 10px;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.home-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #f1f2f4;
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-qty-btn:hover {
  background: #c3141e;
  color: #ffffff;
}

.qty-info {
  display: flex;
  align-items: center;
  gap: 3px;
}

.home-qty-val {
  width: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  color: #111111;
  outline: none;
}

.qty-label {
  font-size: 11px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
}

.tickets-highlight-text {
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
}

.tickets-highlight-text strong {
  color: #c3141e;
}


/* ================= SUCCESS & FAILED STATUS PAGES ================= */

.status-section {
  background-color: #f1f2f4;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  font-family: inherit;
}

/* Central Card */
.status-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 45px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf0f2;
}

/* Icon Containers with Soft Radial Glow */
.status-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.status-card:hover .status-icon-box {
  transform: scale(1.06);
}

.success-glow {
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.25);
}

.failed-glow {
  background: rgba(239, 68, 68, 0.12);
  border: 2px solid rgba(239, 68, 68, 0.25);
}

/* Small Tag Badges */
.status-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
}

.success-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.failed-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.status-title {
  font-size: 24px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
}

.status-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

/* Summary Box */
.status-info-box {
  background: #f8fafc;
  border: 1.5px solid #edf2f7;
  border-radius: 16px;
  padding: 14px 20px;
}

.info-label {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
}

.info-val {
  font-size: 14px;
  color: #1e293b;
  font-weight: 800;
}

/* Buttons */
.status-btn {
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.25s ease;
  border: none;
}

.primary-btn {
  background: #c3141e; /* Dream Cairo Brand Red */
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(195, 20, 30, 0.3);
}

.primary-btn:hover {
  background: #a80c1b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 20, 30, 0.4);
}

.secondary-btn {
  background: #edf2f7;
  color: #334155 !important;
}

.secondary-btn:hover {
  background: #e2e8f0;
  color: #0f172a !important;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .status-card {
    padding: 30px 18px;
    border-radius: 20px;
  }

  .status-title {
    font-size: 20px;
  }
}

/* ================= MY TICKETS DASHBOARD STYLING ================= */

.ticket-history-section {
  background-color: #f1f2f4;
  min-height: calc(100vh - 140px);
  font-family: inherit;
}

.page-main-heading {
  font-size: 30px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
}

.text-highlight {
  color: #c3141e; /* Dream Cairo Red */
}

.ticket-summary-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: #4a5568;
}

.ticket-summary-pill strong {
  color: #c3141e;
}

/* Sidebar Styling */
.dc-sidebar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 18px;
  border: 1px solid #edf0f2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.avatar-circle {
  width: 80px;
  height: 80px;
  background-color: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-display-name {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

.wallet-badge {
  background: #fff5f5;
  color: #c3141e;
  border: 1px solid #fed7d7;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.sidebar-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.side-link-btn:hover {
  background: #edf2f7;
  color: #111111;
}

.side-link-btn.active-link {
  background: #c3141e;
  color: #ffffff;
}

.side-link-btn.logout-item {
  color: #e53e3e;
}

/* Tab Pills */
.dc-ticket-tabs .nav-link {
  background: #ffffff;
  color: #4a5568;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  margin-right: 10px;
  transition: all 0.2s ease;
}

.dc-ticket-tabs .nav-link.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Ticket Entry Card */
.ticket-entry-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid #edf0f2;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket-entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ticket-status-tag {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.tag-live {
  background: #dcfce7;
  color: #15803d;
}

.tag-upcoming {
  background: #f1f5f9;
  color: #475569;
}

.ticket-price-heading {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.ticket-meta-details p {
  font-size: 12.5px;
  color: #4b5563;
  line-height: 1.5;
}

.section-micro-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

/* Lottery Balls (Numbers) */
.lottery-numbers-wrap {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.number-ball {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Green Ball: Current / Live Draw */
.ball-green {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  border: 1px solid #059669;
}

/* Red Ball: Other / Upcoming Draw */
.ball-red {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border: 1px solid #dc2626;
}

/* Raffle Badge & Action */
.raffle-id-badge {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  display: inline-block;
  letter-spacing: 0.5px;
}

.view-cert-btn {
  background: none;
  border: 1px solid #e2e8f0;
  color: #c3141e;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-cert-btn:hover {
  background: #c3141e;
  color: #ffffff;
  border-color: #c3141e;
}

/* Pagination */
.dc-pagination .page-link {
  color: #111111;
  border: 1px solid #e2e8f0;
  margin: 0 3px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}

.dc-pagination .page-item.active .page-link {
  background-color: #c3141e;
  border-color: #c3141e;
  color: #ffffff;
}

/* Modal Content */
.dc-modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modal-receipt-icon {
  font-size: 40px;
}

@media (max-width: 768px) {
  .ticket-entry-card {
    padding: 18px 16px;
  }
  .lottery-numbers-wrap {
    justify-content: flex-start !important;
  }
}


/* ================= PASSWORD VISIBILITY EYE TOGGLE STYLES ================= */

.password-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field-wrapper .password-input {
  padding-right: 48px !important; /* Space for eye icon inside box */
}

.eye-toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 5;
}

.eye-toggle-btn:hover {
  color: #c3141e; /* Dream Cairo Brand Red */
}

.eye-toggle-btn:focus {
  outline: none;
}