:root {
    --bg-color: #000000;
    --primary: #00ff00;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --card-bg: #0d0d0d;
    --border: #1a1a1a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.4;
    overflow-x: hidden; /* Stops horizontal screen shaking on mobile scrolls */
}

/* Full Width Ticker Shell Fix */
.ticker-wrapper {
    width: 100%;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border);
    margin: 0;
    padding: 0;
}

/* Fixed container padding constraints */
.container {
    width: 100%;
    max-width: 480px; 
    margin: 0 auto; /* Center alignment check */
    padding: 24px 15px; /* Moves content safely away from the ticker edge */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Profile Header - Clean and fully visible below ticker */
.profile {
    text-align: center;
    margin-top: 10px;
}

.avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    margin-bottom: 12px;
    object-fit: cover;
}

.profile h1 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.profile p {
    color: var(--primary);
    font-size: 0.85rem;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bio Content */
.bio {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0 10px;
}

.bio span {
    color: var(--primary);
    font-weight: bold;
}

/* Main Broker Conversion Block */
.main-cta {
    background: linear-gradient(135deg, var(--card-bg) 0%, #151515 100%);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.05);
}

.badge {
    background: rgba(0, 255, 0, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-family: monospace;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    display: inline-block;
    margin-bottom: 12px;
}

.main-cta h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.main-cta p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

/* High Conversion Buttons */
/* High Conversion Buttons - Centered and Stretched Full Width */
.btn {
    display: block;
    width: 100%; /* Forces the button to center and span flush inside its parent container */
    max-width: 100%;
    margin: 0 auto; /* Hard-centers the element layout alignment box */
    background-color: var(--primary);
    color: #000000;
    border: none; /* Strips default browser button borders */
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: 12px;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.2);
}


/* Framework Headings */
.section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: -12px;
    font-family: monospace;
    padding-left: 5px;
}

/* Step Pipeline */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-num {
    background-color: #111;
    color: var(--primary);
    border: 1px solid var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.step-text p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Tool Micro-Links Grid */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tool-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: border-color 0.2s, transform 0.1s ease;
}

.tool-card:active {
    border-color: var(--primary);
    transform: scale(0.98);
}

.tool-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.tool-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tool-card p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Footer & Compliance Details */
footer {
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    margin-top: 10px;
    padding-bottom: 20px;
}

footer p {
    margin-bottom: 4px;
}

/* Blended Ticker Shell - Pinned Top Scroll Lock (GPU Layer Injection) */
.ticker-wrapper {
    position: fixed !important; /* Forces layout tracking inside viewports */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 40px; 
    background-color: #000000;
    border-bottom: 1px solid var(--border);
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 99999 !important; /* Pushes element above all scrolling DOM blocks */
    
    /* Mobile Browser Fixed Position Glitch Overrides */
    will-change: transform;
    transform: translate3d(0, 0, 0); 
    -webkit-transform: translate3d(0, 0, 0);
}

/* Force the embedded widget to stretch edge-to-edge natively */
.ticker-wrapper tv-ticker-tape, 
.ticker-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* Adjusted container positioning to clear the locked ticker space */
.container {
    width: 100%;
    max-width: 480px; 
    margin: 40px auto 0 auto; 
    padding: 24px 15px; 
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Background Matrix Canvas Constraints */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Pushes the animation layers behind your links */
    display: block;
}

/* Glassmorphism updates to make content pop over the moving text */
.main-cta, .step-card, .tool-card {
    background: rgba(13, 13, 13, 0.85) !important; /* Slightly transparent */
    backdrop-filter: blur(8px); /* Softly blurs the background drops behind cards */
    -webkit-backdrop-filter: blur(8px);
}
/* Sleek Onboarding Header Box Design */
.onboarding-header-box {
    background: rgba(0, 255, 0, 0.03);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary); /* Neon matrix accent line */
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: -12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pulsing live dot anchor next to the title */
.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.section-title-highlight {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    font-family: monospace;
    font-weight: bold;
}

/* Subheading Typography Styling */
.onboarding-subheading {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    padding-left: 4px;
    margin-top: -4px;
    margin-bottom: -8px;
}
/* Premium Matrix Command Alert Box */
.command-box {
    background: linear-gradient(180deg, rgba(0, 255, 0, 0.02) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px dashed var(--primary); /* Dashed neon green border for urgency */
    border-radius: 12px;
    padding: 18px;
    margin: 10px 0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.command-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.terminal-indicator {
    background-color: var(--primary);
    color: #000000;
    font-weight: 900;
    font-family: monospace;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.command-header h4 {
    color: var(--primary);
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.command-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-main);
}

.command-text strong {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}
/* Trading Ecosystem App Showcase Container */
.app-showcase-card {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Premium Square Matrix App Icon Frame */
.app-icon-slot {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-logo-text {
    font-family: monospace;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: -1px;
}

.app-meta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Pulsing Launch Badge element */
.status-badge-glow {
    background: rgba(0, 255, 0, 0.08);
    color: var(--primary);
    font-size: 0.7rem;
    font-family: monospace;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    letter-spacing: 0.5px;
    display: inline-block;
}

.app-description {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Customized Download Button Variant */
.app-btn-disabled {
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.app-btn-disabled span {
    font-size: 0.9rem;
}
/* Premium Square Matrix App Icon Frame */
.app-icon-slot {
    width: 64px;
    height: 64px;
    background-color: #000000;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    border-radius: 14px;
    object-fit: cover; /* Ensures your design graphic clips cleanly to the frame edges */
    flex-shrink: 0;
}
/* Responsive App Showcase Flex Engine Grid */
.app-main-layout {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

/* Left Side Layout: Stacked Identity Details */
.app-identity-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 110px; /* Fixed anchor footprint */
    flex-shrink: 0;
    gap: 6px;
}

.app-identity-side h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Right Side Layout: Features Matrix */
.app-features-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    border-left: 1px solid var(--border);
    padding-left: 12px;
}

/* Feature Item Tags Typography */
.feature-tag {
    font-size: 0.78rem;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-tag span {
    color: var(--primary);
    font-weight: bold;
    font-family: monospace;
}

/* Cash Pooled Accent Feature Tag Variant */
.feature-tag-pool {
    font-size: 0.78rem;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 255, 0, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px dashed rgba(0, 255, 0, 0.3);
    width: max-content;
}

.feature-tag-pool span {
    color: var(--primary);
}
/* Why Join Me Wrapper Architecture */
.credentials-card {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.credentials-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-main);
    letter-spacing: -0.2px;
}

/* Horizontal Swiping Carousel Canvas Container */
.media-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto; /* Activates natural mobile touch flick gestures */
    scroll-snap-type: x mandatory; /* Snaps media perfectly to center frame boundary */
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

/* Hides scrollbars on iOS/Android elements while preserving swipe tracking */
.media-carousel::-webkit-scrollbar {
    display: none;
}

/* Unified Carousel Frame Locks */
.carousel-item {
    flex: 0 0 100%; /* Ensures only one frame takes up the block footprint width at a time */
    scroll-snap-align: start;
    width: 100%;
    aspect-ratio: 16 / 9; /* Strict dimension ratio matching standard trading captures */
    position: relative;
    background-color: #000000;
    border-radius: 10px; /* Slightly rounded edges parameter */
    border: 1px solid var(--border); /* Clean outline boundary block */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Force graphics and video players to match identical viewport boxes */
.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Clips media files without scaling distortion */
    display: block;
}

/* Subtle border indicator highlighting the active item card frame */
.carousel-item:focus-within,
.carousel-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

/* Structural Carousel Interaction Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: -4px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}
/* Minimal Social Alignment Container */
.minimal-socials-section {
    text-align: center;
    width: 100%;
    margin: 10px 0;
}

.minimal-socials-section h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    font-family: monospace;
    margin-bottom: 16px;
    padding: 0 10px;
}

/* Side-by-Side Flex Layout Row */
.socials-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px; /* Layout spacer separating your icon buttons */
}

/* High Conversion Interactive Icon Base */
.social-icon-btn {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid var(--border);
    width: 54px;
    height: 54px;
    border-radius: 50%; /* Perfect circles */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Scaling constraints for embedded vector shapes */
.social-icon-btn svg {
    width: 22px;
    height: 22px;
}

/* Mobile Touch Visual Feedback Loop */
.social-icon-btn:active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transform: scale(0.95);
}
/* WhatsApp Support Module Base */
.whatsapp-support-section {
    text-align: center;
    width: 100%;
    margin: 10px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whatsapp-support-section h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    font-family: monospace;
    padding: 0 10px;
    line-height: 1.4;
}

.whatsapp-subheading {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    padding: 0 10px;
    margin-top: -6px;
    text-align: center;
}

/* Centered Layout Row for the Icon Button */
.whatsapp-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
