  :root {
      --primary-blue: #2b294e;
      --dark-blue: #1a1836;
      /* Slightly darker for deeper contrast */
      --gold: #FFD700;
      --dark-gold: #FBC02D;
      --success-green: #4CAF50;
      --alert-red: #E53935;
      --light-gray: #F5F5F5;
      --modern-green: #2b294e;
      /* Keeping your green for brand consistency */
      --dark-green: #059669;
      /* Keeping your dark green */
      --light-green: #2b294e;
      /* Keeping your light green */
      --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      /* Lighter shadow */
      --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
      /* Medium shadow */
      --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.15);
      /* Heavier shadow */
      --border-radius-card: 16px;
      --spacing-base: 1.5rem;
  }

  body {
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding-top: 80px;
      background-color: #f0f2f5;
      /* Light background for clean look */
      color: var(--primary-blue);
  }

  /* Loader Styles (keeping existing, assuming functional) */
  .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
  }

  .loader-content {
      text-align: center;
      color: white;
  }

  .loader-logo {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      animation: pulse 1.5s infinite;
  }

  .loader-logo span {
      color: var(--gold);
  }

  .loader-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255, 255, 255, 0.3);
      border-top: 5px solid var(--gold);
      border-radius: 50%;
      margin: 0 auto 20px;
      animation: spin 1s linear infinite;
  }

  .loader-text {
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 1px;
      animation: fadeIn 1s ease-in-out;
  }

 

  .dashboard-wrapper {
      background: #f0f2f5;
      /* Ensure a consistent background */
      min-height: calc(100vh - 80px);
      /* Adjust based on navbar height */
      padding-bottom: 3rem;
      /* Space before footer */
  }

  /* Navigation Styles */
  .modern-navbar {
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: var(--shadow-medium);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: fixed !important;
      top: 0;
      width: 100%;
      z-index: 1030;
      height: 80px;
      display: flex;
      align-items: center;
  }
.phone-input-group {
    display: flex;
    gap: 8px;
}

  .modern-navbar.scrolled {
      box-shadow: var(--shadow-heavy);
  }

  .modern-navbar .navbar-brand {
      color: var(--primary-blue) !important;
      font-weight: 700;
      font-size: 1.8rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  }

  .modern-navbar .navbar-brand:hover {
      transform: scale(1.02);
      color: var(--modern-green) !important;
      /* Brand color on hover */
  }

  .modern-navbar .navbar-brand .text-gold {
      color: var(--modern-green) !important;
      background: linear-gradient(135deg, var(--modern-green), var(--dark-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .modern-navbar .nav-link {
      color: var(--primary-blue) !important;
      font-weight: 500;
      position: relative;
      padding: 10px 18px !important;
      margin: 0 4px;
      border-radius: 10px;
      transition: all 0.3s ease;
  }

  .modern-navbar .nav-link:hover,
  .modern-navbar .nav-link.active {
      color: var(--dark-green) !important;
      background-color: rgba(var(--modern-green-rgb), 0.08);
      /* Use RGB for transparency */
      transform: translateY(-2px);
      box-shadow: var(--shadow-light);
  }

  /* Mobile specific navigation header */
  .mobile-nav-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: var(--shadow-medium);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav-header .navbar-brand {
      font-size: 1.6rem !important;
  }

  .navbar-toggler {
      border: none;
      padding: 8px 12px;
      border-radius: 8px;
      background: rgba(var(--modern-green-rgb), 0.1);
      transition: all 0.3s ease;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(43, 41, 78)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Mobile Navigation Styles */
  @media (max-width: 991.98px) {
      .modern-navbar {
          top: 80px;
          height: calc(100vh - 80px);
          transform: translateX(-100%);
          transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          padding-top: 20px;
          display: block;
          overflow-y: auto;
          background: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(15px);
          -webkit-backdrop-filter: blur(15px);
          box-shadow: var(--shadow-medium);
      }

      .modern-navbar.show {
          transform: translateX(0);
      }

      /* Ensure navbar-collapse is fully visible */
      .modern-navbar .navbar-collapse {
          display: none;
          flex-direction: column;
          align-items: center;
          padding: 40px 20px;
          /* Increased padding for space */
          width: 100%;
          min-height: calc(100vh - 120px);
          /* Ensure enough height */
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .modern-navbar.show .navbar-collapse {
          display: flex;
          /* Use flex for vertical layout */
          opacity: 1;
      }

      .modern-navbar .navbar-nav {
          flex-direction: column;
          align-items: center;
          width: 100%;
          padding: 20px 0;
          margin: 0;
      }

      .modern-navbar .nav-item {
          width: 100%;
          text-align: center;
          margin: 12px 0;
          /* Increased margin for spacing */
      }

      .modern-navbar .nav-link {
          font-size: 1.2rem;
          /* Slightly larger for readability */
          padding: 12px 25px !important;
          margin: 8px auto;
          width: 80%;
          border-radius: 10px;
          color: #333 !important;
          /* Darker color for contrast */
          background-color: rgba(0, 0, 0, 0.05);
          /* Subtle background */
          font-weight: 600;
          display: flex;
          /* Flex for icon alignment */
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
      }

      .modern-navbar .nav-link i {
          margin-right: 8px;
          /* Space between icon and text */
          color: var(--modern-green);
          /* Green icons */
          font-size: 1.3rem;
      }

      .modern-navbar .nav-link:hover,
      .modern-navbar .nav-link.active {
          color: var(--dark-green) !important;
          background-color: rgba(var(--dark-green-rgb), 0.15);
          transform: translateY(-2px);
      }

      .mobile-close-btn {
          display: none;
          position: fixed;
          /* Fixed to stay at top-right */
          top: 20px;
          right: 20px;
          background: none;
          border: none;
          font-size: 2rem;
          color: var(--primary-blue);
          z-index: 10001;
          transition: transform 0.2s ease;
      }

      .modern-navbar.show .mobile-close-btn {
          display: block;
      }

      body.mobile-menu-open {
          overflow: hidden;
      }
  }

  /* Fix announcement bar positioning */

  /* Announcement Bar */
  .announcement-bar {
      background-color: var(--modern-green);
      color: white;
      padding: 12px 0;
      font-weight: 500;
      position: relative;
      overflow: hidden;
      z-index: 1020;
      /* Below fixed navbar */
      text-align: center;
      font-size: 0.95rem;
  }

  /* .announcement-bar p {
            margin-bottom: 0;
        } */

  /* Stats Grid (Dashboard Cards) */
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: var(--spacing-base);
      margin-bottom: var(--spacing-base);
  }

  .stat-card {
      background: white;
      border-radius: var(--border-radius-card);
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
  }

  .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: var(--modern-green);
      border-top-left-radius: var(--border-radius-card);
      border-top-right-radius: var(--border-radius-card);
  }

  .stat-value {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      line-height: 1;
      color: var(--primary-blue);
      /* Default color, overridden by inline style */
  }

  .stat-label {
      font-size: 1rem;
      font-weight: 500;
      color: #6c757d;
  }

  /* New Card Styles - My Ticket, Check Ticket, Profile */
  .menu-card {
      background: white;
      border-radius: var(--border-radius-card);
      box-shadow: var(--shadow-light);
      padding: var(--spacing-base);
      margin-bottom: var(--spacing-base);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all 0.3s ease;
  }

  .menu-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
  }

  .menu-item {
      display: flex;
      align-items: center;
      padding: 0.8rem 1rem;
      border-radius: 10px;
      background-color: var(--light-gray);
      color: var(--primary-blue);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .menu-item:hover {
      background-color: rgba(var(--modern-green-rgb), 0.1);
      color: var(--dark-green);
      transform: translateX(5px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .menu-item i {
      font-size: 1.2rem;
      margin-right: 1rem;
      color: var(--modern-green);
      /* Icon color */
  }

  .menu-item span {
      flex-grow: 1;
  }

  /* Wallet Actions */
  .action-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1rem;
      padding: var(--spacing-base);
      /* Added padding to the grid directly */
      background: white;
      /* Ensure background matches the card */
      border-radius: var(--border-radius-card);
      /* Match card border radius */
      box-shadow: var(--shadow-light);
      /* Match card shadow */
      margin-bottom: var(--spacing-base);
      /* Spacing below action grid */
  }

  .action-grid .btn {
      width: 100%;
      padding: 5px 5px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.1rem;
      transition: all 0.3s ease;
  }

  .action-grid .btn i {
      font-size: 16px;
      /* margin-bottom: 0.2rem; */

  }

  .action-grid .btn-primary {
      background-color: var(--modern-green);
      border: none;
      color: white;
      box-shadow: var(--shadow-light);
  }

  .action-grid .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
      opacity: 0.9;
  }

  .action-grid .btn-warning {
      background: linear-gradient(45deg, var(--gold), var(--dark-gold));
      border: none;
      color: var(--primary-blue);
      box-shadow: var(--shadow-light);
  }

  .action-grid .btn-warning:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
      opacity: 0.9;
  }

  .action-grid .btn-success {
      background: linear-gradient(45deg, var(--success-green), #28a745);
      /* Darker green */
      border: none;
      color: white;
      box-shadow: var(--shadow-light);
  }

  .action-grid .btn-success:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
      opacity: 0.9;
  }

  .action-grid .btn-outline {
      /* For Buy Ticket */
      background: white;
      border: 2px solid var(--modern-green);
      color: var(--modern-green);
      box-shadow: var(--shadow-light);
  }

  .action-grid .btn-outline:hover {
      background: var(--modern-green);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
  }

  /* Lottery Card (Upcoming Draws) */
  .lottery-card {
      background: white;
      border-radius: var(--border-radius-card);
      padding: var(--spacing-base);
      margin-bottom: var(--spacing-base);
      box-shadow: var(--shadow-medium);
      transition: all 0.3s ease;
  }

  .lottery-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-heavy);
  }

  .lottery-card .card-header {
      background: var(--primary-blue);
      color: white;
      border-radius: 12px;
      padding: 1rem 1.5rem;
      margin-bottom: 1.5rem;
      font-weight: 600;
      font-size: 1.1rem;
      text-align: center;
      box-shadow: var(--shadow-light);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .draw-item {
      background: var(--light-gray);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      /* Spacing between draw items */
      text-align: center;
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .draw-item:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-medium);
  }

  .draw-date {
      font-size: 1rem;
      font-weight: 500;
      color: #6c757d;
      margin-bottom: 0.5rem;
  }

  .draw-jackpot {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 1rem;
  }

  .draw-item .action-btn {
      background: hsla(277.8, 27.3%, 19.4%, 1);
      color: #ffffff;
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .draw-item .action-btn:hover {
      background: var(--dark-gold);
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
  }


  /* Utility for transparent background clips to ensure color variables work */
  .text-clip-gradient {
      background: linear-gradient(135deg, var(--modern-green), var(--light-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  /* New variables for RGB colors to use with rgba() */
  body {
      --modern-green-rgb: 43, 41, 78;
      /* RGB values of #2b294e */
      --dark-green-rgb: 5, 150, 105;
      /* RGB values of #059669 */
      --primary-blue-rgb: 43, 41, 78;
      /* RGB values of #2b294e */
  }



  /* Modern Responsive Footer Styles */
  .leta-bet-footer {
      background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
      color: var(--text-light, #e2e8f0);
      padding: 60px 0 0 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      position: relative;
      overflow: hidden;
  }

  .leta-bet-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, transparent 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
      pointer-events: none;
  }

  .leta-bet-footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
  }

  .footer-brand {
      grid-column: span 1;
  }

  .footer-logo {
      margin-bottom: 24px;
  }

  .logo-text {
      color: var(--gold, #fbbf24);
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
  }

  .logo-text span {
      color: #ffffff;
  }

  .logo-subtext {
      color: var(--text-muted, #94a3b8);
      font-size: 14px;
      margin-bottom: 24px;
      line-height: 1.5;
  }

  .social-icons {
      display: flex;
      gap: 16px;
      margin-bottom: 32px;
  }

  .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(4px);
  }

  .social-icons a:hover {
      background: var(--modern-green, #10b981);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  }

  .footer-section h5 {
      color: var(--gold, #fbbf24);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
  }

  .footer-section h5::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--modern-green, #10b981);
      border-radius: 1px;
  }

  .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-section ul li {
      margin-bottom: 12px;
  }

  .footer-section ul li a {
      color: var(--text-light, #e2e8f0);
      text-decoration: none;
      font-size: 14px;
      line-height: 1.6;
      transition: all 0.3s ease;
      position: relative;
  }

  .footer-section ul li a:hover {
      color: var(--gold, #fbbf24);
      padding-left: 8px;
  }

  .contact-info {
      font-size: 14px;
      line-height: 1.7;
  }

  .contact-item {
      margin-bottom: 24px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-item strong {
      display: block;
      margin-bottom: 8px;
      color: var(--gold, #fbbf24);
      font-size: 15px;
  }

  .contact-item a {
      color: var(--text-light, #e2e8f0);
      text-decoration: none;
      display: block;
      margin-bottom: 4px;
      transition: color 0.3s ease;
  }

  .contact-item a:hover {
      color: var(--modern-green, #10b981);
  }

  .lottery-chat-btn {
      background: linear-gradient(135deg, var(--modern-green, #10b981), var(--light-green, #34d399));
      color: #ffffff;
      border: none;
      padding: 14px 28px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
      margin-top: 16px;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  }

  .lottery-chat-btn:hover {
      background: linear-gradient(135deg, var(--dark-green, #047857), var(--modern-green, #10b981));
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 24px 0;
      text-align: center;
      background: rgba(0, 0, 0, 0.2);
  }

  .footer-bottom p {
      font-size: 13px;
      color: var(--text-muted, #94a3b8);
      margin: 0;
  }

  /* Tablet Styles */
  @media (max-width: 1024px) {
      .footer-grid {
          grid-template-columns: 1fr 1fr 1fr;
          gap: 32px;
      }

      .footer-brand {
          grid-column: span 1;
      }

      .logo-text {
          font-size: 28px;
      }
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
      .leta-bet-footer {
          padding: 40px 0 0 0;
      }

      .leta-bet-footer .container {
          padding: 0 16px;
      }

      .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
          text-align: center;
      }

      .footer-brand {
          grid-column: span 1;
          order: -1;
      }

      .logo-text {
          font-size: 26px;
      }

      .logo-subtext {
          font-size: 13px;
      }

      .social-icons {
          justify-content: center;
          gap: 20px;
      }

      .social-icons a {
          width: 48px;
          height: 48px;
      }

      .footer-section h5 {
          font-size: 16px;
          text-align: center;
      }

      .footer-section h5::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .contact-item {
          text-align: left;
          margin-bottom: 16px;
      }

      .lottery-chat-btn {
          max-width: 200px;
          margin: 16px auto 0;
      }

      .footer-bottom {
          padding: 20px 0;
      }

      .footer-bottom p {
          font-size: 12px;
          line-height: 1.5;
      }
  }

  /* Small Mobile Styles */
  @media (max-width: 480px) {
      .leta-bet-footer {
          padding: 32px 0 0 0;
      }

      .footer-grid {
          gap: 24px;
      }

      .logo-text {
          font-size: 24px;
      }

      .logo-subtext {
          font-size: 12px;
      }

      .social-icons a {
          width: 44px;
          height: 44px;
          font-size: 18px;
      }

      .footer-section h5 {
          font-size: 15px;
          margin-bottom: 16px;
      }

      .footer-section ul li {
          margin-bottom: 10px;
      }

      .footer-section ul li a {
          font-size: 13px;
      }

      .contact-item {
          padding: 12px;
      }

      .contact-item strong {
          font-size: 14px;
      }

      .lottery-chat-btn {
          padding: 12px 24px;
          font-size: 13px;
      }

      .footer-bottom p {
          font-size: 11px;
      }
  }

  /* Large Screen Enhancements */
  @media (min-width: 1200px) {
      .leta-bet-footer .container {
          max-width: 1400px;
      }

      .footer-grid {
          gap: 60px;
      }

      .logo-text {
          font-size: 36px;
      }

      .logo-subtext {
          font-size: 15px;
      }

      .footer-section h5 {
          font-size: 19px;
      }

      .footer-section ul li a {
          font-size: 15px;
      }

      .contact-info {
          font-size: 15px;
      }
  }

  /* Hover Effects and Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .footer-section {
      animation: fadeInUp 0.6s ease forwards;
  }

  .footer-section:nth-child(2) {
      animation-delay: 0.1s;
  }

  .footer-section:nth-child(3) {
      animation-delay: 0.2s;
  }

  .footer-section:nth-child(4) {
      animation-delay: 0.3s;
  }

  .footer-section:nth-child(5) {
      animation-delay: 0.4s;
  }

  /* 
here is the ticket for winner and losser when they the check their ticket */
  .modal-content {
      border-radius: 1rem;
      /* More rounded corners */
      border: none;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      /* Ensures content respects the border radius */
  }

  .ticket-win {
      border-left: 7px solid var(--dark-blue);
      /* Green border for win */
  }

  .ticket-lost {
      border-left: 7px solid #dc3545;
      /* Red border for lost */
  }

  .ticket-header {
      background: var(--dark-blue) color: white;
      padding: 1.5rem;
  }

  .ticket-body {
      padding: 2rem;
  }

  .ticket-info p {
      margin-bottom: 0.75rem;
  }

  .ticket-info strong {
      display: inline-block;
      width: 150px;
      /* Aligns the values */
      color: #495057;
  }

  .form-control-lg {
      text-transform: uppercase;
      text-align: center;
      font-weight: bold;
      letter-spacing: 0.5em;
  }

  .result-fade-in {
      opacity: 0;
      animation: fadeIn 0.8s ease-in-out forwards;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }