 :root {
            --bg-dark: #000000;
            --bg-card: #050505;
            --primary-gold: #f3ba2f;
            --text-muted: #a0a0a0;
            --border-gold: rgba(243, 186, 47, 0.2);
            --border-glow: rgba(243, 186, 47, 0.4);
        }

        body {
            background: var(--bg-dark) !important;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* Utility Styles */
        .text-gold { color: var(--primary-gold); }
        .bg-gold { background-color: var(--primary-gold); }
        
        .btn-gold {
            background: linear-gradient(135deg, #f3ba2f 0%, #d49a17 100%);
            color: #000000;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background: linear-gradient(135deg, #d49a17 0%, #f3ba2f 100%);
            color: #000000;
            box-shadow: 0 0 15px rgba(243, 186, 47, 0.4);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
            border-radius: 6px;
            padding: 10px 24px !important;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-outline-gold:hover {
            background: rgba(243, 186, 47, 0.1);
            color: var(--primary-gold);
        }

        /* Navbar Customization */
        .navbar-dark .navbar-nav .nav-link {
            color: #ffffff;
            font-size: 0.9rem;
            margin-weight: 500;
            padding: 0.5rem 1rem;
        }
        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link.active {
            color: var(--primary-gold);
        }
        .brand img {
            max-width: 140px;
        }
        .navbar {
            border-bottom: 1px #383838 solid !important;
        }
        .navbar-dark .navbar-nav .nav-link {
            font-size: 16px;
        }
        .nav-link.active{
            color: var(--primary-gold) !important;
            border-bottom: 1px var(--primary-gold) solid;
        }
        /* Hero Section World Graphic Overlay */
        .hero-section {
            position: relative;
            padding: 80px 0 60px 0;
            background: radial-gradient(circle at 80% 50%, rgba(243, 186, 47, 0.08) 0%, transparent 50%);
        }
        .hero-graphic {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-sub-heading{
            color: var(--primary-gold) !important;
            border:1px solid var(--primary-gold) !important;
        }
        /* Fallback Placeholder Graphic for World/Parachute Globe Structure */
        .main-feature {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 15px;
            border: 1px solid var(--border-gold);
            border-radius: 10px;
        }
        .world-placeholder {
            width: 100%;
            max-width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 1px dashed var(--border-glow);
            box-shadow: 0 0 40px rgba(243, 186, 47, 0.1);
            position: relative;
            background: radial-gradient(circle, rgba(5,5,5,0.8) 0%, rgba(0,0,0,1) 100%);
        }
        .crypto-badge {
            position: absolute;
            width: 50px;
            height: 50px;
            background: #111;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 1.5rem;
            box-shadow: 0 0 15px var(--border-glow);
        }

        /* Features Section Grid Cards */
        .feature-card {
            padding: 30px 20px;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(243, 186, 47, 0.1);
            border-color: rgba(243, 186, 47, 0.4);
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 15px;
        }

        @media screen and (max-width:480px){
            .main-feature {
                grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
               
            }
        }
        @media screen and (max-width:767px){
            .main-feature {
                grid-template-columns: repeat(2, minmax(0, 1fr)) ;
               
            }
        }
        @media screen and (max-width:991px){
            .main-feature {
                grid-template-columns: repeat(3, minmax(0, 1fr));
               
            }
        }

        /* Global Grid Layout */
        .flag-card {
            background: #080808;
            border: 1px solid #151515;
            border-radius: 8px;
            padding: 15px 10px;
            text-align: center;
            font-size: 0.85rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 90px;
        }
        .flag-icon-mock {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            margin-bottom: 8px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 0 5px rgba(255,255,255,0.2);
        }
.flag-card span {
    color: #fff;
}
        /* Stats Row Banner */
        .stats-banner {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 25px;
        }
        .stat-item {
            text-align: center;
        }

        /* Step Card Elements */
        .step-card {
            position: relative;
            background: transparent;
            padding: 20px;
            border: 1px solid var(--primary-gold);
            border-radius: 10px;
        }
        .step-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary-gold);
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Footer Link Blocks */
        footer {
            border-top: 1px solid #151515;
            font-size: 0.85rem;
        }
        .footer-heading {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .footer-links list-unstyled li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            line-height: 32px;
            font-size: 16px;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        .social-btn {
            width: 36px;
            height: 36px;
            background-color: #111;
            border: 1px solid #222;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 8px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .social-btn:hover {
            background-color: var(--primary-gold);
            color: #000;
        }
        .footer-widget img {
    max-width: 160px;
}