/* ==========================================
   GLOBAL STYLES & VARIABLES
   ========================================== */
:root {
    --bg-dark: #0b0f19;
    --panel-dark: #141b2d;
    --primary-blue: #0052cc;
    --accent-glow: #00b4d8;
    --crypto-orange: #f7931a;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   ULTRA-STYLISH GLOWING NAVIGATION HEADER (1 LINE FIXED)
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.85); /* Modern Glassmorphism Blur */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Flexbox utility for alignment */
.header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
}

/* Base header compatibility */
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-glow);
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.8);
}

/* Navbar Menu Items (STRICTLY FORCED 1 LINE ON DESKTOP & TABLETS) */
.navbar {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important; /* Text ko line change nahi karne dega */
    white-space: nowrap !important; /* Pure content ko 1 line me rakhega */
}

/* High-End Cyber Styling for Navbar Anchors */
.navbar a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
}

/* Premium Dynamic Hover Effects */
.navbar a:hover {
    color: #ffffff;
    background: rgba(0, 180, 216, 0.06);
    border-color: rgba(0, 180, 216, 0.2);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.1);
}

/* Elegant Active Indicator with Glow */
.navbar a.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.5), 0 0 10px rgba(0, 180, 216, 0.3);
}

/* ==========================================
   SPLIT SCREEN (LEFT / RIGHT) LAYOUT
   ========================================== */
.split-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.right-column {
    flex: 2.2;
}

/* Left Typography */
.intro-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

.security-note {
    background: rgba(0, 82, 204, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    font-size: 14px;
    color: #cbd5e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   PRICING TABLE CARDS GRID (HORIZONTAL LINE)
   ========================================== */
.sequential-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

.pricing-card {
    background: var(--panel-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    flex: 1;
    min-width: 140px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Highlight Featured Card */
.pricing-card.popular {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.2);
}

.pricing-card.popular .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00b4d8, var(--primary-blue));
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
}

/* Card Content Details */
.pricing-card h3 {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 4px;
}

/* ==========================================
   ACTION STEP DIRECT BUTTONS
   ========================================== */
.card-action-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inner-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 5px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.inner-pay-btn:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-color {
    background: linear-gradient(135deg, var(--primary-blue), #0044aa);
    color: var(--text-white) !important;
}

.crypto-color {
    background: linear-gradient(135deg, var(--crypto-orange), #d97706);
    color: var(--text-white) !important;
}

/* ==========================================
   FOOTER STRUCTURE & POLICIES ALIGNMENT
   ========================================== */
.main-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    color: #64748b;
    font-size: 14px;
}

.footer-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.footer-policy-links a {
    color: #64748b;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: #00b4d8;
}

.policy-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

.copyright-txt {
    font-size: 13px;
    color: #475569;
}

/* ==========================================
   RESPONSIVE DESIGN SYSTEM (RESPONSIVE DROPDOWNS)
   ========================================== */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        gap: 30px;
    }
    .sequential-row {
        flex-wrap: wrap;
    }
    .horizontal-fit {
        min-width: 47%;
    }
    .navbar a {
        font-size: 13px;
        padding: 8px 12px; /* Auto downsize on tablets to preserve 1 line */
    }


@media (max-width: 768px) {
    .header-flex {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
    }
    .navbar {
        flex-wrap: wrap !important; /* Allows layout breakdown ONLY on smartphones */
        justify-content: center;
        gap: 6px !important;
    }
    .navbar a {
        font-size: 12px;
        padding: 6px 12px;
    }
    .footer-policy-links {
        gap: 15px;
    }



     .panel-form-box {
            background: #141b2d;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 30px;
        }
        .meta-list {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        .meta-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            font-size: 14px;
            color: #94a3b8;
        }
        .console-output-terminal {
            background: #070a13;
            border: 1px solid #1e293b;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            text-align: left;
        }
        .terminal-row {
            font-family: 'Courier New', Courier, monospace;
            color: #38bdf8;
            font-size: 14px;
            margin-bottom: 5px;
            word-break: break-all;
        }
        .copy-input-element {
            width: 100%;
            background: #0f172a;
            border: 1px solid #334155;
            color: #e2e8f0;
            padding: 12px;
            font-family: monospace;
            border-radius: 6px;
            margin: 15px 0;
            text-align: center;
            font-size: 14px;
        }
        .alert-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #ef4444;
            color: #fca5a5;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            font-size: 14px;
            text-align: center;
        }


/* Search Box Design */
        .search-filter-box {
            width: 100%;
            padding: 12px;
            background: #0b0f19;
            border: 1px solid #333;
            border-radius: 6px;
            color: #fff;
            margin-bottom: 20px;
            font-size: 14px;
        }
        .search-filter-box:focus {
            border-color: #00b4d8;
            outline: none;
        }

        /* Matrix Table Styling */
        .matrix-table-wrapper {
            max-height: 550px;
            overflow-y: auto;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: #141b2d;
        }
        .matrix-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 14px;
        }
        .matrix-table th, .matrix-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .matrix-table th {
            background-color: rgba(0, 82, 204, 0.2);
            color: #ffffff;
            font-weight: 700;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        .matrix-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.01);
        }
        .tag-caid {
            background: rgba(0, 180, 216, 0.15);
            color: #00b4d8;
            padding: 2px 8px;
            border-radius: 4px;
            font-family: monospace;
            font-weight: 600;
            font-size: 13px;
        }
        .tag-pos {
            color: #f7931a;
            font-weight: bold;
        }


        /* Modern Container Blocks for Right Side Channels */
        .support-channel-card {
            background: #141b2d;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            text-align: center;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
        
        .support-channel-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .channel-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .channel-desc {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Direct Action Contact Buttons */
        .direct-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: filter 0.2s ease, box-shadow 0.2s ease;
        }

        .direct-action-btn:hover {
            filter: brightness(1.15);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .btn-wa {
            background: #25d366;
            color: #ffffff !important;
        }

        .btn-mail {
            background: #ea4335;
            color: #ffffff !important;
        }

        .icon-span {
            font-size: 18px;
        }
  

        /* Form Overlap Emergency Override Fix */
        .interactive-form-box {
            position: relative !important;
            z-index: 9999 !important;
            pointer-events: auto !important;
        }
        .clickable-input {
            width: 100% !important;
            padding: 12px !important;
            background: #0b0f19 !important;
            border: 1px solid #333 !important;
            border-radius: 6px !important;
            color: #fff !important;
            display: block !important;
            position: relative !important;
            z-index: 10000 !important;
            pointer-events: auto !important;
            cursor: text !important;
        }
        .clickable-input:focus {
            border-color: #00b4d8 !important;
            outline: none !important;
        }
  

        .config-box-wrapper {
            margin-bottom: 25px;
            background: #0b0f19;
            border-radius: 8px;
            border: 1px solid #2d3748;
            padding: 15px;
        }
        .config-title {
            font-size: 16px;
            color: #00b4d8;
            margin-bottom: 10px;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .config-codearea {
            width: 100%;
            height: 180px;
            background: #070a13;
            color: #a7f3d0;
            font-family: 'Courier New', Courier, monospace;
            font-size: 13px;
            padding: 12px;
            border: 1px solid #1a202c;
            border-radius: 6px;
            resize: vertical;
            white-space: pre;
            overflow-x: auto;
        }
    


