        @import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Orbitron:wght@400..900&display=swap');
        
        :root {
            --primary-green: #cfff04; /* Lime Green Color */
            --bg-dark: #070c0f;
            --input-bg: #191a27;
            --text-muted: #aab2b7;
            --card-bg-top: rgba(194, 242, 25, 0.08);
            --card-bg-bottom: #0f1214; 
            --card-bg: #10151a85;
            --icon-bg: #19202b;
            --border-color: #292929;
            --text-secondary: #7f8b9d;
            --social-bg: #1e2223;
            --telegram-blue: #26a5e4;
            --marquee-bg: #cbf9a0;
            --scroll-speed: 25s;
            --dark-bg: #111315;
            --darker-bg: #0b0c0e;
        }

        .navbar-toggler-icon {
            filter: invert(90%) sepia(100%) saturate(750%) hue-rotate(70deg);
        }

        .table {
            border-color: #606060 !important;
        }


        body {
            font-family: 'Google Sans', sans-serif;
            background-color: var(--bg-dark);
            color: white;
            overflow-x: hidden;
        }

        .orbitron{
            font-family: 'Orbitron';
        }

        .gradient-text {
            background: linear-gradient(90deg, #ffffff, var(--primary-green), #24c6dc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* Navbar Customization */
        .navbar {
            padding-top: 20px;
        }
        
        .navbar-brand span {
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .nav-link {
            color: white !important;
            margin: 0 10px;
            font-weight: 400;
        }

        .btn-login {
            color: white;
            border: 1px solid #333;
            border-radius: 30px;
            padding: 8px 25px;
            margin-right: 10px;
            background: #1a1a1a;
        }

        .btn-theme {
            background-color: var(--primary-green);
            color: black;
            font-weight: 600;
            border-radius: 30px;
            padding: 8px 25px;
            border: none;
        }

        .btn.disabled {
            background-color: #5d7f01 !important; /* deep green */
            color: #fff;
            cursor: not-allowed;
            opacity: 0.8;
        }

        .btn-theme:hover {
            background-color: var(--primary-green);
            color: black;
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            position: relative;
        }

        .tagline {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        h1.hero-title {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* Custom Email Input */
        .email-wrapper {
            background-color: var(--input-bg);
            border-radius: 50px;
            padding: 5px;
            display: flex;
            align-items: center;
            max-width: 500px;
            margin-bottom: 60px;
        }

        .email-wrapper input {
            background: transparent;
            border: none;
            color: white;
            flex-grow: 1;
            padding-left: 20px;
            outline: none;
        }

        .email-wrapper .btn-get-started {
            background-color: var(--primary-green);
            color: black;
            font-weight: 600;
            border-radius: 50px;
            padding: 10px 30px;
            border: none;
        }

        /* Stats Section */
        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 400;
        }

        .stat-item p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .stat-border {
            border-left: 1px solid #333;
            padding-left: 20px;
        }
        
        /* Remove border on mobile */
        @media (max-width: 768px) {
            .stat-border {
                border-left: none;
                padding-left: 0;
                margin-top: 20px;
            }
            h1.hero-title {
                font-size: 2.5rem;
            }
        }

        /* Image styling placeholder */
        .hero-img-container {
            position: relative;
            display: flex;
            justify-content: center;
        }
        
        .hero-img-container img {
            max-width: 100%;
            height: auto;
            /* Drop shadow to simulate the glow */
            filter: drop-shadow(0 0 20px rgba(207, 255, 4, 0.1));
        }
        .text-neon {
            color: var(--primary-green) !important;
        }

        .btn-neon-outline {
            color: var(--primary-green);
            border: 1px solid var(--primary-green);
            border-radius: 50px; /* Pill shape */
            padding: 8px 25px;
            background: transparent;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
        }

        .btn-neon-outline:hover {
            background: var(--primary-green);
            color: black;
            box-shadow: 0 0 15px rgba(204, 255, 0, 0.4);
        }

        /* --- Section 1: Our Projects --- */
        .projects-section {
            padding: 60px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-left: 10px;
            padding-right: 10px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 600;
        }

        .view-all-link {
            color: var(--primary-green);
            text-decoration: none;
            font-size: 0.9rem;
        }

        /* The Polygon Card Design */
        .poly-card-wrapper {
            position: relative;
            /* Create the border using background color on wrapper + padding */
            background: var(--primary-green); 
            padding: 1px; 
            /* The Shape: Cut Top-Left and Bottom-Right */
            clip-path: polygon(
                30px 0, 100% 0, 
                100% calc(100% - 30px), 
                calc(100% - 30px) 100%, 
                0 100%, 
                0 30px
            );
            transition: transform 0.3s ease;
            height: 100%;
        }

        .poly-card-wrapper:hover {
            transform: translateY(-5px);
        }

        .poly-card-inner {
            background: var(--bg-dark);
            height: 100%;
            /* Same clip-path needed to match inner content */
            clip-path: polygon(
                30px 0, 100% 0, 
                100% calc(100% - 30px), 
                calc(100% - 30px) 100%, 
                0 100%, 
                0 30px
            );
            display: flex;
            flex-direction: column;
        }

        .card-img-area {
            height: 160px;
            background: #fff; /* White bg for charts as per image */
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .card-img-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .live-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            color: black;
            font-weight: bold;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 2px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .card-content p {
            color: var(--text-gray);
            font-size: 0.85rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .card-btn-wrapper {
            margin-top: 15px;
            text-align: center;
        }

        /* Bottom Action Buttons */
        .bottom-actions {
            margin-top: 50px;
            display: flex;
            gap: 20px;
            justify-content: flex-end;
        }

        /* --- Section 2: IB Program / Trusted Partner --- */
        .trusted-section {
            padding: 80px 0;
            background-color: #0b0f15; /* Ensures dark bg matches */
        }

        .small-label {
            color: var(--primary-green);
            font-size: 1rem;
            margin-bottom: 15px;
            display: block;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .hero-title span {
            font-weight: 600;
        }

        .hero-desc {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 90%;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 40px;
        }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .section-header h2 { font-size: 2rem; }
            .hero-title { font-size: 2.2rem; }
            .bottom-actions { justify-content: center; flex-wrap: wrap; }
            .poly-card-wrapper { margin-bottom: 30px; }
        }
        /* --- Header Styles --- */
        .subtitle-badge {
            color: var(--primary-green);
            font-weight: 600;
            text-transform: lowercase;
            margin-bottom: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        /* The little green dot */
        .subtitle-badge::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--primary-green);
            border-radius: 50%;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0;
        }

        /* Apply green color to specific words */

        .section-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* --- Card Styles --- */
        .process-card {
            background: linear-gradient(180deg, var(--card-bg-top) 0%, var(--card-bg-bottom) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .process-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
        }

        .step-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
        }

        .card-title {
            color: var(--primary-green);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .card-text {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .read-more-link {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.2s ease;
        }

        .read-more-link:hover {
            gap: 15px; /* Arrow moves slightly on hover */
            color: var(--primary-green);
        }

        /* Responsive Tweaks */
        @media (max-width: 991px) {
            .main-title { font-size: 2.5rem; }
            .section-desc { margin-top: 20px; }
        }
        .crypto-table {
            width: 100%;
            border-collapse: collapse;
            border-spacing: 0;
        }

        .crypto-table thead th {
            border: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.75rem 1rem;
            text-align: left;
        }

        .crypto-table tbody tr {
            border-bottom: 1px solid var(--border-color);
        }

        .crypto-table tbody td {
            border: 0;
            background-color: transparent;
            padding: 1.25rem 1rem;
            vertical-align: middle;
        }

        /* Coin Logo Badge */
        .coin-badge {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 0.85rem;
        }

        .coin-name h6 {
            margin:0;
            font-size: 1rem;
            font-weight: 500;
        }
        .coin-name small {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* Wavy trading line */
        .wavy-line {
            display: inline-block;
            width: 75px;
            height: 16px;
            background: url("data:image/svg+xml,%3Csvg width='80' height='16' viewBox='0 0 80 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8C10 12 20 4 30 8C40 12 50 4 60 8C70 12 80 4 80 4' stroke='%2322d36f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
        }

        .empty-col {
            color: var(--text-secondary);
        }
        /* Stats Section */
        .stat-value {
            font-size: 18px;
            font-weight: 400;
            color: var(--primary-green);
            line-height: 1;
        }
        .stat-home-value {
            font-size: 4.8rem;
            font-weight: 400;
            color: var(--primary-green);
            line-height: 1;
        }

        .stat-label {
            color: var(--text-secondary);
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-top: 0.75rem;
            letter-spacing: 0.05rem;
        }

        /* Main Heading */
        .main-heading {
            margin: 4rem auto;
            max-width: 900px;
        }

        .main-heading h2 {
            font-size: 2.75rem;
            font-weight: 700;
        }

        .highlight-green {
            color: var(--primary-green);
        }

        /* Feature Cards */
        .feature-card {
            background-color: var(--card-bg);
            border: 0;
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.2s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background-color: var(--icon-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h5 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-main {
            background-color: var(--bg-footer);
            color: #fff;
            padding: 4rem 1rem 2rem;
            border-top: 1px solid var(--border-color);
            margin-top: 50px;
        }

        /* Brand Section */
        .footer-brand img {
            max-height: 48px;
        }

        .footer-social {
            margin-top: 1.5rem;
            gap: 0.75rem;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background-color: var(--social-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.2s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-green);
            color: #000;
        }

        .payment-badges {
            margin-top: 2.5rem;
            gap: 1rem;
        }

        .payment-badge {
            height: 20px;
            width: 30px;
            object-fit: contain;
            background-color: #ffffff;
            padding: 5px;
            border-radius: 3px;
        }

        /* Footer Columns */
        .footer-col h6 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin:0;
        }

        .footer-links li {
            margin-bottom: 0.85rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        /* Telegram Community */
        .telegram-icon {
            width: 48px;
            height: 48px;
            background-color: var(--telegram-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .telegram-label {
            color: var(--text-secondary);
        }

        /* Footer Bottom */
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top:1px solid var(--border-color);
        }

        .footer-bottom .text-secondary {
            color: var(--text-secondary) !important;
        }

        .logo-marquee {
            overflow: hidden;
            width: 100%;
            padding: 2.5rem 0;
            background: linear-gradient(90deg, #9ad104, #d5e8a2, #d1ef7c);
        }

        .carousel-track {
            display: flex;
            align-items: center;
            gap: 4rem;
            will-change: transform;
        }

        .carousel-track img {
            height: 28px;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .navbar-toggler:focus {
            text-decoration: none;
            outline: 0;
            box-shadow: 0 0 0 -0.75px;
        }

        .nav-label {
            font-size: 0.8rem;
        }

        .custom-offcanvas {
            background-color: #000 !important; 
            color: white;
        }

        /* উপরের লোগো এবং ব্যাক বাটন */
        .offcanvas-header .btn-close-custom {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Stats Box (Earning, Invested etc.) */
        .stat-box {
            background-color: #111; /* একদম কালোর চেয়ে একটু লাইট */
            border-radius: 8px;
            padding: 15px 10px;
            text-align: left;
            height: 100%;
            border: 1px solid #222;
        }
    
        /* Grid Menu Items (Icons) */
        .menu-grid-item {
            background-color: #0a0a0a;
            border: 1px solid #222;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px 5px;
            height: 100px; /* ফিক্সড হাইট */
            text-decoration: none;
            color: white;
            transition: 0.3s;
        }
        .menu-grid-item:hover {
            background-color: #1a1a1a;
            color: #76ff03; /* হোভার করলে সবুজ হবে */
        }
        .menu-grid-item i {
            font-size: 24px;
            margin-bottom: 8px;
        }
        .menu-grid-item span {
            font-size: 11px;
            text-align: center;
        }

        /* Section Title */
        .section-title {
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        /* Logo Green Color */
        .text-brand {
            color: #76ff03;
        }

        .contact-section {
            background-color: transparent;
            padding: 2rem;
        }
        .contact-heading {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        .check-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .check-icon {
            color: #8eff5e;
            font-size: 1.8rem;
            margin-right: 1rem;
        }
        .check-text {
            font-size: 1.1rem;
        }
        .description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-top: 2rem;
            line-height: 1.6;
        }
        .contact-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        .contact-icon {
            background-color: #8eff5e;
            color: #121212;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        .contact-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .contact-info {
            color: #cccccc;
        }
        .contact-image {
            border-radius: 10px;
            overflow: hidden;
        }
        .contact-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .form-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #f7f7f7;
        }
        .form-control {
            background-color: var(--input-bg);
            border: none;
            padding: 12px 15px;
            color: #f7f7f7;
            border-radius: 4px;
        }

        .form-control:focus {
            background-color: #fff;
            box-shadow: 0 0 0 2px var(--primary-green);
        }

        /* Password Eye Icon */
        .input-group-text {
            background-color: var(--input-bg); /* Match input bg */
            border: none;
            cursor: pointer;
        }
        /* Right Side Image Area */
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 600px; /* Fixed height for desktop */
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Custom Checkbox color */
        .form-check-input:checked {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }

        .user-btn {
            background-color: var(--dark-bg);
            border: 1px solid #333;
            color: white;
            padding: 5px 15px 5px 5px; /* Avatar এর জন্য বামে প্যাডিং কম */
            border-radius: 50rem; /* Pill shape */
            transition: 0.3s;
        }

        .user-btn:hover, .user-btn:focus, .user-btn.show {
            background-color: #222;
            color: white;
            border-color: #555;
        }

        /* ড্রপডাউন মেনু বডি */
        .custom-dropdown-menu {
            background-color: var(--dark-bg);
            border: 1px solid #333;
            border-radius: 15px;
            width: 300px;
            padding: 0;
            margin-top: 10px !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* হেডারের স্টাইল (নাম এবং ইমেইল) */
        .dropdown-header-area {
            padding: 20px;
            border-bottom: 1px solid #333;
        }

        .user-email {
            font-size: 0.85rem;
            color: #888;
        }

        /* মেনু আইটেম স্টাইল */
        .custom-item {
            color: white;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            font-weight: 500;
            transition: 0.2s;
        }

        .custom-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: white;
        }

        /* আইকনের কালার */
        .icon-lime {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin-right: 15px;
        }

        /* ইউজার অবতার */
        .avatar-circle {
            width: 40px;
            height: 40px;
            background-color: #ccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .avatar-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .btn-avatar {
            width: 32px;
            height: 32px;
        }

        .chart-filter-btn {
            background-color: transparent;
            border: 1px solid #333;
            color: var(--text-gray);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: 0.3s;
        }
        .chart-filter-btn.active {
            background-color: rgba(193, 253, 53, 0.1);
            color: var(--lime-color);
            border-color: var(--lime-color);
        }
        .date-picker-btn {
            background-color: #1a1d21;
            border: 1px solid #333;
            color: white;
            font-size: 0.85rem;
            padding: 8px 15px;
            border-radius: 8px;
        }
        
        .legend-dot {
            height: 8px;
            width: 8px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }
        .dot-green { background-color: var(--primary-green); }
        .dot-red { background-color: red; }

        .total-label { color: var(--text-gray); font-size: 0.9rem; }

        /* Sidebar Styling */
        .sidebar {
            min-height: 100vh;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 10px;
        }
        .side-link {
            color: var(--text-secondary);
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: 0.3s;
        }
        .side-link.active {
            color: black;
            background: var(--primary-green);
            border-radius: 10px;
            margin-right: 10px;
        }
        .side-link i {
            font-size: 1.2rem;
        }
        .side-link a{
            color: black;
        }
        /* Responsive adjustment */
        @media (max-width: 768px) {
            .sidebar {
                display: none; /* Mobile e sidebar hide thakbe, upore icon dewa jete pare */
            }
        }

        .table-transparent {
            --bs-table-bg: transparent;
            --bs-table-striped-bg: transparent;
            --bs-table-hover-bg: rgba(255, 255, 255, 0.05);
            --bs-table-color: #f7f7f7; /* text secondary */
        }

        /* Modal Custom Styling */
        .modal-content {
            background-color: #1a1a1a;
            color: #ffffff;
            border-radius: 20px;
            border: 1px solid #333;
        }
        .modal-header {
            border-bottom: 1px solid #333;
        }
        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .deposit-header {
            background: #222;
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #333;
            margin-bottom: 20px;
        }
        
        .form-label {
            font-size: 0.85rem;
            color: #aaa;
            margin-bottom: 5px;
        }

        .form-control, .form-select {
            background-color: #262626;
            border: 1px solid #444;
            color: #fff;
            border-radius: 10px;
            padding: 10px;
        }

        .form-control:focus {
            background-color: #2d2d2d;
            border-color: var(--primary-green);
            color: #fff;
            box-shadow: none;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5) !important;
            opacity: 1;
        }
        
        .form-control:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-control::-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .address-box {
            background-color: #212121;
            border: 1px dashed var(--primary-green);
            border-radius: 15px;
            padding: 15px;
            text-align: center;
        }

        .qr-placeholder {
            width: 140px;
            height: 140px;
            background-color: #fff;
            margin: 10px auto;
            border-radius: 10px;
            padding: 8px;
        }

        .upload-area {
            border: 2px dashed #444;
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            cursor: pointer;
            color: #ccc;
            transition: 0.3s;
        }
        .upload-area:hover {
            border-color: var(--primary-green);
            background-color: #222;
        }

        .alert-success {
            --bs-alert-color: var(--primary-green);
            --bs-alert-bg: #31364d;
            --bs-alert-border-color:  #31364d;
            --bs-alert-link-color: var(--primary-green);
        }

        .alert-danger {
            --bs-alert-color: #db0017;
            --bs-alert-bg: #3a1b24;
            --bs-alert-border-color: #c5003e;
            --bs-alert-link-color: #db0017;
        }

        .form-select:focus {
            border-color: var(--primary-green);
            outline: 0;
            box-shadow: 0 0 0 0;
        }

        .table th{
            color: var(--text-secondary); !important;
        }
        .table td {
            color: var(--text-muted); !important;
        }

        #tradingview_chart {
            width: 100%;
            height: 500px;
        }

        @media (max-width: 768px) {
            #tradingview_chart {
                height: 300px;
            }
        }

        .ref-box input {
            background: #0b0b14;
            border: 1px dashed var(--primary-green);;
            color: var(--text-secondary);;
        }

        .step-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--primary-green);;
        }

        .step-no {
            display: inline-block;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary-green);;
            color: #000;
            font-weight: bold;
            margin-bottom: 8px;
        }


