
   body {
      background-color: white;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    .header {
      background-color: #1a1a1a;
      color: white;
      padding: 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 30px; 
    }
    .card {
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .card-body h5 {
      color: #1a1a1a;
    }
    .btn-primary, .btn-success, .btn-warning {
      width: 100%;
      margin-top: 10px;
    }
    .section-title {
      color: #495057;
      font-weight: bold;
      margin-top: 30px;
      text-align: center;
    }
    .list-group-item span {
      font-weight: bold;
      color: #1a1a1a;
    }
    .info-item h6 {
        font-size: 1.1rem;
        color: #495057;
      }
      .info-item p {
        margin: 0;
        font-size: 0.85rem;
      }
      .info-item span {
        font-size: 1.2rem;
        color: #1a1a1a;
      }
      .text-primary {
        font-weight: 700;
      }





        img {
            max-width: 100%;
            max-height: 100%;
        }

        .portrait {
            height: 80px;
            width: 30px;
        }

        .landscape {
            height: 30px;
            width: 80px;
        }

        .square {
            height: 75px;
            width: 75px;
        }

        .countdown-timer {
          font-size: 1.8rem;
          color: #1a1a1a;
          transition: color 0.5s ease-in-out;
        }

        .countdown-timer.soon {
          color: #dc3545; /* Red color for the final minutes */
          animation: pulse 1s infinite; /* Pulsing animation for urgency */
        }

        @keyframes pulse {
          0% {
            transform: scale(1);
          }
          50% {
            transform: scale(1.1);
          }
          100% {
            transform: scale(1);
          }
        }

        #actionSpinner {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 8px;
        }

        /* Full-screen overlay styling */
        .spinner-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .spinner-content {
            text-align: center;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }

        .spinner-border {
            width: 3rem;
            height: 3rem;
            animation: spinnerAnimation 1s infinite linear;
        }

        /* Add a pulse effect for enhanced visibility */
        @keyframes spinnerAnimation {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .spinner-text {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-top: 10px;
            font-weight: 500;
        }

 /* General body styling */


    /* Card and button styling */
    .card {
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 1rem;
      padding: 1rem;
    }

    .header {
      background-color: #1a1a1a;
      color: white;
      padding: 15px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    /* Button and input field styling for mobile */
    .btn-primary, .btn-success, .btn-warning {
      width: 100%;
      margin-top: 0.5rem;
      padding: 0.75rem;
      font-size: 1rem;
      border-radius: 5px;
    }

    .section-title {
      color: #495057;
      font-weight: bold;
      text-align: center;
      font-size: 1.1rem;
      margin: 0.75rem 0;
    }

    .info-item h6 {
      font-size: 1rem;
      font-weight: 600;
      color: #495057;
      margin: 0.5rem 0;
    }

    /* Style for countdown timer */
    .countdown-timer {
      font-size: 1.4rem;
      color: #1a1a1a;
      transition: color 0.5s ease-in-out;
    }

    /* Spinner overlay styling */
    .spinner-overlay {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .spinner-content {
      text-align: center;
      background-color: white;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Mobile-specific styles */
    @media (max-width: 768px) {
      body {
        font-size: 14px;
      }

      .header {
        font-size: 1.1rem;
        padding: 10px;
      }

      .btn-primary, .btn-success, .btn-warning {
        font-size: 0.9rem;
        padding: 0.5rem;
      }

      .section-title {
        font-size: 1rem;
        margin: 0.5rem 0;
      }

      .info-item h6 {
        font-size: 0.95rem;
      }

      .info-item p {
        font-size: 0.8rem;
        margin: 0.25rem 0;
      }

      .info-item span {
        font-size: 1rem;
      }

      .countdown-timer {
        font-size: 2.4rem;
      }

      /* Full-screen width for elements in single column layout */
      .container, .card, .modal-dialog {
        padding: 0;
        margin: 0.5rem auto;
        width: 100%;
      }

      /* Adjust navbar for mobile */
      .navbar {
        padding: 0.5rem;
      }

      #connectButton {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
      }
    }


    .notification {
        display: flex;
        align-items: center;
        padding: 16px 20px; /* Increase padding for larger size */
        border-radius: 10px; /* Slightly larger border radius */
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        font-size: 1.25rem; /* Increase font size */
        max-width: 380px;
        opacity: 1;
        transition: opacity 0.5s ease, transform 0.5s ease;
        width: 100%;
    }

    .notification .close {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #fff;
        opacity: 0.8;
        font-size: 1.5rem; /* Larger close button */
    }

    /* Notification types */
    .alert-success {
        background-color: #28a745;
        color: white;
    }

    .alert-danger {
        background-color: #dc3545;
        color: white;
    }

    .alert-warning {
        background-color: #ffc107;
        color: #333;
    }

    .alert-info {
        background-color: #17a2b8;
        color: white;
    }

    /* Medium screen adjustments */
    @media (max-width: 768px) {
        .notification {
            font-size: 1.1rem;
            padding: 14px 18px;
            max-width: 350px;
        }
    }

    /* Small screen adjustments */
    @media (max-width: 576px) {
        #notificationContainer {
            align-items: center;
            z-index: 99999;
            top: 10px;
            right: 0;
            left: 0;
            max-width: 95%;
        }
        .notification {
            font-size: 1rem;
            padding: 12px 16px;
            width: 100%;
        }
        .notification .close {
            top: 8px;
            right: 8px;
            font-size: 1.25rem;
        }
    }

   /* Loading overlay container */
    #loadingOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); /* Translucent dark background */
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #ffffff;
      font-family: Arial, sans-serif;
    }

    /* Spinner animation */
    .spinner {
      border: 6px solid rgba(255, 255, 255, 0.2); /* Light border */
      border-top: 6px solid #1a1a1a; /* Blue border on top */
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 1s linear infinite;
      margin-bottom: 20px; /* Space between spinner and text */
    }

    /* Spin keyframe */
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Loading text styling */
    .loading-text {
      font-size: 1.2rem;
      font-weight: 600;
      text-align: center;
      margin-top: 10px;
    }

    /* Subtle pulse for the text */
    .loading-text span {
      animation: pulse 1.5s ease-in-out infinite;
    }

    /* Pulse keyframe */
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }




    /* QR code container styling */
    #qrCodeContainer {
      margin: 20px auto;
      padding: 15px;
      background: #f8f9fa; 
      border-radius: 12px;
      display: inline-block;
      transition: transform 0.3s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    #qrCodeContainer:hover {
      transform: scale(1.07);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    /* Button styling */
    #generateButton {
      background: linear-gradient(90deg, #1a1a1a, #34d8ac);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.4s, transform 0.2s;
    }
    #generateButton:hover {
      background: linear-gradient(90deg, #34d8ac, #1a1a1a);
      transform: translateY(-3px);
    }
    #generateButton:focus {
      outline: none;
    }



      body {
          font-family: 'Roboto', sans-serif;
          font-weight: 400;
        }
        
        h1, h2, h3 {
          font-family: 'Poppins', sans-serif;
          font-weight: 700;
        }
        
        .code-element {
          font-family: 'Source Code Pro', monospace;
          font-weight: 500;
        }


         /* Card style on small screens for improved readability */
          @media (max-width: 768px) {



          }


        #mynetwork {
            width: 100%;
            height: 100%;
        }
       /* Ensure the tree is responsive */
            #tree-container {
                width: 100%;
                max-width: 100%; /* Set a maximum width for larger screens */
                height: 100vh; /* Use viewport height for responsiveness */
                margin: 0 auto; /* Center the container */
                display: flex;
                justify-content: center;
                align-items: center;
            }
    
            /* Add padding for mobile devices */
            @media (max-width: 768px) {
                #tree-container {
                    padding: 10px;
                }
            }

          .deposit-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .btn-shadow {
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .form-label {
            font-weight: bold;
            color: #555;
          }
        
          .text-primary {
            color: purple;
          }

          .auth-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .captcha-canvas {
            width: 100%;
            height: auto;
            max-width: 300px;
            border: 1px solid #d3d3d3;
            background-color: #f0f0f5;
          }
        
          .btn-shadow {
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        
          .form-label {
            font-weight: bold;
            color: #555;
          }

          .referral-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        

        
          .btn-outline-secondary {
            display: inline-block;
          }

          .code-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        
          .btn-shadow {
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .form-label {
            font-weight: bold;
            color: #555;
          }
        
          .form-group {
            max-width: 400px;
            margin: 0 auto;
          }

         .referral-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        
          .referral-container {
            overflow-x: auto;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f8f9fa;
            padding: 10px;
          }
        
         .deposit-logs-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        
          .logs-container {
            overflow-x: auto;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f8f9fa;
            padding: 10px;
          }
        
         .withdrawal-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        
          .btn-shadow {
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-center {
            text-align: center;
          }
        
          .logs-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          }
        
          .text-primary {
            color: purple;
          }
        
          .logs-container {
            overflow-x: auto;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f8f9fa;
            padding: 10px;
          }
        

        
          .tree-container {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
          }
        
          
        .monitor-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            padding: 20px;
          }
        
       
         .admin-section {
            border-radius: 15px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            padding: 20px;
          }
        
          .text-success {
            color: green;
            font-weight: bold;
          }
        
          .table-container {
            margin-top: 20px;
          }
        
          .table {
            font-size: 0.9rem;
          }
        
          .thead-dark th {
            background-color: #343a40;
            color: #fff;
            text-align: center;
          }
        
          .table-hover tbody tr:hover {
            background-color: #f1f1f1;
          }
        
          .table-responsive {
            max-height: 400px;
            overflow-y: auto;
          }
        
          .btn-action {
            font-size: 0.85rem;
            padding: 5px 10px;
          }       
               
            .info-section {
                border-radius: 15px;
                box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                            rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                            rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
                padding: 20px;
              }
            
              .text-primary {
                color: purple;
              }
            
              .text-success {
                color: green;
              }
            
              .info-item h6 {
                font-size: 0.9rem;
                color: #333;
                font-weight: bold;
              }
            
              .info-item p {
                margin: 0;
                font-size: 0.8rem;
              }
            
              .font-weight-bold {
                font-weight: bold;
              }        




  /* General modal styling */
        .modal-content {
            border-radius: 1rem;
            border: none;
            overflow: hidden;
        }

        /* Header background color */
        .bg-primary {
            background-color: #1a1a1a;
            background: linear-gradient(135deg, #1a1a1a 0%, #0056b3 100%);
        }

        /* Highlighted amount */
        #alertMessage {
            font-size: 3rem;
            color: #28a745; /* Highlighted green */
        }

        /* OK button styling */
        .btn-primary {
            background-color: #1a1a1a;
            border: none;
            transition: all 0.3s ease-in-out;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .btn-dark {
            background-image: linear-gradient(to left bottom, #ff3131, #ec2928, #d8201e, #c61715, #b30c0c);
            border: none;
            transition: all 0.3s ease-in-out;
        }

        .btn-dark:hover {
            background-image: linear-gradient(to right bottom, #ff3131, #ec2928, #d8201e, #c61715, #b30c0c);
        }

        /* Modal fade-in animation */
        .modal.fade .modal-dialog {
            transform: translateY(-50px);
            opacity: 0;
            transition: all 0.4s ease-in-out;
        }

        .modal.fade.show .modal-dialog {
            transform: translateY(0);
            opacity: 1;
        }
        
      
      
      
        /* Background Animation */
        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Sticky 3D Button Styles */
        .audio-control {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 70px;
            height: 70px;
            background-image: linear-gradient(to right bottom, #ff3131, #ec2928, #d8201e, #c61715, #b30c0c);
            border: none;
            border-radius: 50%;
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            outline: none;
            transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.5s ease;
            z-index: 1000;
        }

        .audio-control:active {
            transform: scale(0.95);
            box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.3), inset -4px -4px 10px rgba(255, 255, 255, 0.2);
        }

        /* Hide Button */
        .audio-control.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Icon Styles */
        .play-icon, .stop-icon {
            width: 0;
            height: 0;
            border-style: solid;
            display: none;
        }

        .play-icon {
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent white;
        }

        .stop-icon {
            width: 20px;
            height: 20px;
            background: white;
            display: block;
        }

        /* Display Current State */
        .playing .play-icon {
            display: none;
        }

        .playing .stop-icon {
            display: block;
        }

        .paused .play-icon {
            display: block;
        }

        .paused .stop-icon {
            display: none;
        }

        /* Hidden Audio */
        #themeAudio {
            display: none;
        }





        /* Sticky Button */
        .sticky-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #03371a; /* Deep green base */
            color: #f5c62c; /* Yellow text for a bold contrast */
            border: none;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6); /* Stronger shadow for depth */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 1050;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease-in-out, box-shadow 0.3s ease;
            text-shadow: 0 0 5px #f5c62c, 0 0 10px #f5c62c; /* Soft glowing yellow text effect */
        }
        
        .sticky-button:hover {
            background-color: #f5c62c; /* Yellow background on hover */
            color: #03371a; /* Deep green text on hover for contrast */
            transform: scale(1.1); /* Slightly larger on hover */
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.8); /* Stronger shadow for glowing effect */
            text-shadow: 0 0 10px #f5c62c, 0 0 20px #f5c62c; /* Glowing yellow text effect on hover */
        }




/* Scrollable Container */
.carousel-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 1rem;
    scroll-behavior: smooth; /* Smooth scrolling behavior */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

.carousel-container::-webkit-scrollbar {
    height: 8px; /* Customize scrollbar height */
    background-color: #f1f1f1; /* Background of the scrollbar track */
}

.carousel-container::-webkit-scrollbar-thumb {
    background-color: #1a1a1a; /* Scrollbar color */
    border-radius: 10px; /* Rounded scrollbar */
}

/* Custom Card Styling */
.p-card {
    flex: 0 0 calc(80% - 1rem); /* Card width: 80% of the viewport minus gap */
    max-width: 300px; /* Limit maximum size */
    border: 1px solid #ddd; /* Light border for a box effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 0.5rem; /* Rounded corners for the box */
    background-color: #fff; /* White background for contrast */
}

.p-card:hover {
    transform: translateY(-5px); /* Lift the box slightly on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Custom Card Image Styling */
.p-card img {
    width: 100%; /* Full width of the card */
    height: 180px; /* Fixed height for uniformity */
    object-fit: cover; /* Maintain aspect ratio while covering the container */
    border-radius: 0.5rem 0.5rem 0 0; /* Rounded top corners */
    border-bottom: 1px solid #ddd; /* Separator between image and content */
}

/* Custom Card Body Styling */
.p-card .p-card-body {
    padding: 1rem;
    text-align: center; /* Center the text and button */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .p-card {
        flex: 0 0 calc(90% - 1rem); /* Adjust card width for smaller screens */
    }
}


.modal-header {
    background-image: linear-gradient(to left bottom, #03371a, #1a4d2b, #2f6b3d, #f5c62c); /* Deep green to yellow gradient */
    color: #f5c62c; /* Yellow text for a striking contrast */
}

.modal-title {
    font-weight: bold;
    color: #f5c62c; /* Yellow text for consistency */
}

.modal-body h5 {
    margin-top: 20px;
    font-weight: bold;
    color: #f5c62c; /* Yellow text for body headers */
}

.step {
    margin-top: 10px;
    color: #f5c62c; /* Yellow text for steps */
}

.modal-footer button {
    font-weight: bold;
    color: #f5c62c; /* Yellow text for footer buttons */
    background-color: #03371a; /* Deep green background for buttons */
    border: 1px solid #f5c62c; /* Yellow border for buttons */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-footer button:hover {
    background-color: #f5c62c; /* Yellow background on hover */
    color: #03371a; /* Deep green text on hover for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* Subtle shadow on hover */
}

.list-group-item strong {
    color: #f5c62c; /* Yellow text for list items */
}


    
    
    
    
   /* Floating Toggle Container */
        .floating-toggle-container {
            position: fixed;
            bottom: 120px;
            right: 20px;
            z-index: 999999;
            text-align: center;
        }

        /* Floating Button Styling */
        .floating-toggle {
            width: 70px;
            height: 70px;
            background: linear-gradient(90deg, #1a1a1a, #0056b3);
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: bold;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease-in-out;
        }

        .floating-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
        }

        /* Tooltip Styling */
        .tooltip {
            position: absolute;
            bottom: 85px;
            right: -15px;
            background-color: #ffffff;
            color: #333333;
            padding: 10px 15px;
            border-radius: 5px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
            font-size: 0.9rem;
            font-weight: bold;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
        }

        .floating-toggle-container:hover .tooltip {
            opacity: 1;
            visibility: visible;
            bottom: 95px;
        }

        /* Feedback Message */
        .feedback-message {
            position: fixed;
            bottom: 120px;
            right: 20px;
            background: #ffffff;
            color: #333333;
            padding: 10px 20px;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
            font-size: 0.9rem;
            display: none;
            z-index: 1001;
        }    
    
        /* Sticky Bottom Menu Container */
        .sticky-bottom-menu {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-image: linear-gradient(to left bottom, #03371a, #1a4d2b, #2f6b3d, #f5c62c); /* Deep green to yellow gradient */
            padding: 10px 0;
            z-index: 1050;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8); /* Stronger shadow for a polished look */
            border-top: 2px solid rgba(255, 255, 255, 0.1); /* Subtle light border for contrast */
            font-family: Arial, sans-serif;
            font-weight: bold;
            color: #f5c62c; /* Yellow text for a striking contrast */
            text-align: center;
            transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease; /* Smooth transitions */
            text-shadow: 0 0 5px #f5c62c, 0 0 10px #f5c62c; /* Soft glowing yellow text effect */
        }
        
        .sticky-bottom-menu:hover {
            background-image: linear-gradient(to right bottom, #03371a, #1a4d2b, #2f6b3d, #f5c62c); /* Keep green to yellow gradient on hover */
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.9); /* Stronger shadow for glowing effect */
            color: #03371a; /* Deep green text on hover for contrast */
            text-shadow: 0 0 10px #f5c62c, 0 0 20px #f5c62c; /* Glowing yellow text effect */
        }





  /* Scrollable Menu Wrapper */
  .menu-wrapper {
    display: flex;
    gap: 15px;
    justify-content: start;
    align-items: center;
    overflow-x: auto;
    padding: 0 10px;
    scroll-behavior: smooth;
  }

  /* Individual Menu Items */
  .menu-item {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    background: transparent;
    border: none;
    outline: none;
    transition: transform 0.2s ease, color 0.3s ease;
    cursor: pointer;
    min-width: 80px;
  }

  .menu-item i {
    font-size: 24px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
  }

  .menu-item span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Hover and Active Effects */
  .menu-item:hover {
    color: #ffe066;
    transform: scale(1.1);
  }

  .menu-item i:hover {
    color: #ffd700;
  }

  .menu-item:active {
    transform: scale(1.05);
  }

  /* Hide Scrollbar (Optional) */
  .menu-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-wrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  /* Mobile Responsiveness */
  @media (max-width: 576px) {
    .menu-item {
      font-size: 12px;
    }

    .menu-item i {
      font-size: 20px;
    }

    .menu-item span {
      font-size: 10px;
    }
  }
  
  
  
 
    .sticky-top-header {
        position: sticky;
        top: 0;
        width: 100%;
        background-image: linear-gradient(to left bottom, #03371a, #1a4d2b, #2f6b3d, #f5c62c); /* Green to yellow gradient */
        color: #f5c62c; /* Yellow text for a vibrant contrast */
        z-index: 1050;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
        padding: 15px 0;
        transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
        font-family: Arial, sans-serif;
        font-weight: bold;
        text-shadow: 0 0 5px #f5c62c; /* Soft glow effect for text */
        
                    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8); /* Stronger shadow for a polished look */
            border-top: 2px solid rgba(255, 255, 255, 0.1); /* Subtle light border for contrast */
        
    }
    
    .sticky-top-header:hover {
        background-image: linear-gradient(to right bottom, #03371a, #1a4d2b, #2f6b3d, #f5c62c); /* Keep green to yellow gradient on hover */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6); /* Slightly stronger shadow for emphasis */
        color: #f5c62c; /* Maintain yellow text */
        text-shadow: 0 0 10px #f5c62c; /* Increase the glowing effect for a dynamic finish */
    }





  .header-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers content horizontally */
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto; /* Centers the container */
  }

  .logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
    transition: transform 0.3s ease; /* Smooth animation */
  }

  .logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }

  .header-title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adds depth to text */
  }

  /* Mobile Responsiveness */
  @media (max-width: 576px) {
    .header-container {
      flex-direction: column; /* Stacks logo and title */
    }

    .logo {
      margin-right: 0;
      margin-bottom: 10px;
    }

    .header-title {
      font-size: 22px;
    }
  }
  
  
  
  /* Genealogy Section */
  .genealogy-section {
    flex: 1 1 auto; /* Fills the remaining space dynamically */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    background-color: white; /* Optional background color */
    overflow-y: auto; /* Add scrolling if content overflows */
  }

  /* Tree Container */
  .tree-container {
    width: 100%;
    max-width: 1200px; /* Optional max-width for content */
    padding: 20px;
  }

  .tree-container p {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
  }
  
 span#realtimePPE {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
} 



    
        /* Listing Container */
        .list-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 15px;
        }
        
        /* Cards */
        .card {
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .card:hover {
            transform: translateY(-10px); /* Lift effect on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
        }
        
        /* Progress Bar */
        .progress-bar {
            font-size: 12px;
            line-height: 20px;
            border-radius: 8px;
        }


        /* Table Styling */
        .table-responsive {
            margin-top: 15px;
        }
        
        .status-indicator {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 12px;
            text-transform: uppercase;
        }
        
        /* Status-specific styles */
        .bg-warning {
            background-color: #ffeeba;
            color: #856404;
        }
        
        .bg-success {
            background-color: #d4edda;
            color: #155724;
        }
        
        .status-indicator i {
            margin-right: 5px; /* Spacing between icon and text */
        }


        /* Sticky Bottom Menu */
        .sticky-bottom-menu {
          position: fixed;
          bottom: 0;
          width: 100%;
          background-color: #ffffff;
          box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
          z-index: 1030;
        }
        
        /* Menu Wrapper */
        .menu-wrapper {
          display: flex;
          overflow-x: auto;
          gap: 10px;
          padding: 10px 15px;
          scrollbar-width: thin;
          scrollbar-color: #888 transparent;
        }
        .menu-wrapper::-webkit-scrollbar {
          height: 6px;
        }
        .menu-wrapper::-webkit-scrollbar-thumb {
          background-color: #888;
          border-radius: 3px;
        }
        .menu-wrapper::-webkit-scrollbar-track {
          background: transparent;
        }
        
        /* Menu Item */
        .menu-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          padding: 10px;
          min-width: 70px;
          background: #f5c62c;
          border: none;
          border-radius: 8px;
          text-align: center;
          font-size: 12px;
          color: #03371a;
          transition: all 0.3s ease;
        }
        .menu-item i {
          font-size: 20px;
          margin-bottom: 5px;
        }
        .menu-item:hover {
          background-color: #1a1a1a;
          color: #fff;
          transform: translateY(-3px);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .menu-item:focus {
          outline: none;
          box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
        }
        
        
        
 @keyframes smoothCounter {
    0% {
      transform: translateY(10px) scale(0.9);
      opacity: 0;
    }
    50% {
      transform: translateY(0) scale(1.05);
      opacity: 1;
    }
    100% {
      transform: translateY(-5px) scale(1);
      opacity: 1;
    }
  }

  .smooth-counter {
    display: inline-block;
    animation: smoothCounter 0.6s ease-in-out;
  }
  
  
  
.circular-image {
  width: 42px; /* Adjust width as needed */
  height: 42px; /* Adjust height as needed */
  border-radius: 50%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image covers the element without distortion */
}
  
  
  

   /* Trigger Button */
    .popup-trigger {
        padding: 12px 25px;
        background-color: #ff6600;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, background-color 0.3s ease;
    }

    .popup-trigger:hover {
        background-color: #e65500;
        transform: scale(1.05);
    }

    /* Pop-Up Overlay */
    .popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .popup.visible {
        opacity: 1;
        visibility: visible;
    }

    /* Pop-Up Content */
    .popup-content {
        position: relative;
        background: white;
        border-radius: 15px;
        padding: 20px;
        width: 90%;
        max-width: 750px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        animation: slideIn 0.5s ease;
    }

    @keyframes slideIn {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Close Button */
    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: #333;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .close-btn:hover {
        color: #ff5252;
    }

    /* Title */
    #popupTitle {
        margin-bottom: 15px;
        font-size: 24px;
        text-align: center;
        color: #444;
    }

    /* Video Container */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 10px;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .popup-content {
            padding: 15px;
        }

        .close-btn {
            font-size: 20px;
        }

        #popupTitle {
            font-size: 20px;
        }

        .popup-trigger {
            font-size: 16px;
            padding: 10px 20px;
        }
    }
    
    
#mainSection {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    display: none;
}

    
#dashboardSection {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    display: none;
}

.message-item {
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

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

.message-body {
    padding-top: 8px;
}

.amount {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 5px;
}

.message-text {
    font-size: 14px;
    color: #555;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Mobile Responsive */
@media (max-width: 600px) {
    #mainSection {
        padding: 10px;
    }
    #dashboardSection {
        padding: 10px;
    }    
    .message-item {
        padding: 10px;
        font-size: 14px;
    }
    .amount {
        font-size: 16px;
    }
    .message-text {
        font-size: 13px;
    }
}


  /* Betting Button Styles */
  .bet-btn {
    width: 45%;
    padding: 12px;
    font-size: 1.4rem;
    border-radius: 12px;
    font-weight: bold;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .bet-btn:hover {
    transform: scale(1.05);
  }
  
  .bet-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
    box-shadow: 0px 0px 15px rgba(0, 123, 255, 0.5);
  }
  
  .bet-btn:nth-child(1) {
    background-color: #ff4747;
    color: white;
  }
  
  .bet-btn:nth-child(2) {
    background-color: #2ecc71;
    color: white;
  }

  /* Input Styling */
  .bet-input {
    font-size: 1.4rem;
    border-radius: 10px;
    padding: 10px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .bet-btn {
      font-size: 1.2rem;
      padding: 10px;
    }

    .bet-input {
      font-size: 1.2rem;
    }
  }
  
  
 /* Tooltip Popup Styles */
  .tooltip-popup {
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 9999; 
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
  }

  .tooltip-content {
    position: relative;
    padding: 15px;
  }

  .close-tooltip {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    color: red;
    font-weight: bold;
  }

  /* Animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  /* Hide on small screens when not triggered */
  @media (max-width: 768px) {
    .tooltip-popup {
      bottom: 10%;
    }
  }  
  
  
.parallax-container {
    position: absolute;
    bottom: 100px;
    right: 0%;
    z-index: -1;
    width: 100%;
    max-width: 500px;
  }

  .parallax-img {
    width: 100%;
    height: auto;
    will-change: transform;
    animation: float 4s ease-in-out infinite; /* Smooth floating effect */
  }

  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
 
  