<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff9f;
    --secondary: #00aaff;
    --accent: #ff7b42;
    --dark: #0d1117;
    --darker: #010409;
    --light: #e6edf3;
    --font-mono: 'SF Mono', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    min-height: 100vh;
    width: 100%;
    display: block;
    position: relative;
    background-color: var(--dark);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 0 2rem;
}

header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.logo-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.4);
    opacity: 0.8;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.4);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.4);
}

.tagline {
    font-size: 12px;
    color: #999;
    margin: 0;
    padding-left: 40px;
    font-weight: 400;
    opacity: 0.8;
}

nav {
    justify-self: center;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--primary);
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

nav a:hover::after {
    width: 60%;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
}

.user-greeting i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Main Content Styles */
main {
    width: 100%;
    position: relative;
}

section {
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    text-align: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 255, 159, 0.4), 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1.5px;
}

.subheadline {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Crypto Animation */
.crypto-animation-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: -1rem auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.crypto-animation-container i {
    font-size: 180px;
    color: var(--primary);
    text-shadow: 
        0 0 15px rgba(0, 255, 159, 0.8),
        0 0 35px rgba(0, 255, 159, 0.5);
    animation: rotate-bitcoin 20s linear infinite;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(15deg);
}

@keyframes rotate-bitcoin {
    from {
        transform: rotateY(0deg) rotateX(15deg);
    }
    to {
        transform: rotateY(360deg) rotateX(15deg);
    }
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.hero-feature-card {
    background: 
        linear-gradient(rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.95)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300ff9f' fill-opacity='0.03'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3Cpath d='M6 5V0h1v5h94v1H6v94H5V6H0V5h5V0h1v5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    z-index: 1;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(0, 255, 159, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(0, 255, 159, 0.6);
    box-shadow: 0 15px 35px rgba(0, 255, 159, 0.2), 0 0 40px rgba(13, 17, 23, 0.8) inset;
}

.hero-feature-card:hover::before {
    opacity: 1;
}

.hero-feature-card &gt; * {
    position: relative;
    z-index: 2;
}

.hero-feature-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 255, 159, 0.1), rgba(0, 255, 159, 0) 70%);
    border: 1px solid rgba(0, 255, 159, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hero-feature-card .card-icon i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}

.hero-feature-card:hover .card-icon {
    background: radial-gradient(circle, rgba(0, 255, 159, 0.2), rgba(0, 255, 159, 0.05) 70%);
    border-color: rgba(0, 255, 159, 0.3);
    transform: translateY(-5px);
}

.hero-feature-card:hover .card-icon i {
    transform: scale(1.1);
}

.hero-feature-card h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--light);
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.hero-feature-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #a0aec0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

#particle-canvas {
    display: none;
}

.live-counter {
    margin-top: 48px;
    font-size: 16px;
    color: #888;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.live-counter i {
    color: var(--primary);
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px var(--primary); }
    50% { opacity: 0.7; text-shadow: 0 0 15px var(--primary); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.btn.primary:hover {
    background: #00cc33;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn.secondary:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

/* AI Terminal Section */
#demo {
    background-color: var(--darker);
    padding: 100px 0;
}

.terminal-container {
    background: 
        linear-gradient(rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.95)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300ff9f' fill-opacity='0.03'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9H0v-1h4v-9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3Cpath d='M6 5V0h1v5h94v1H6v94H5V6H0V5h5V0h1v5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 0 40px rgba(0, 255, 159, 0.15), 
        0 0 80px rgba(0, 255, 159, 0.1),
        inset 0 0 15px rgba(0, 255, 159, 0.1);
    font-family: var(--font-mono);
    margin: 2rem auto;
    max-width: 900px;
    overflow: hidden;
    animation: border-glow 6s linear infinite alternate;
}

@keyframes border-glow {
    from {
        border-color: rgba(0, 255, 159, 0.2);
        box-shadow: 
            0 0 40px rgba(0, 255, 159, 0.15), 
            0 0 80px rgba(0, 255, 159, 0.1),
            inset 0 0 15px rgba(0, 255, 159, 0.1);
    }
    to {
        border-color: rgba(0, 255, 159, 0.4);
        box-shadow: 
            0 0 50px rgba(0, 255, 159, 0.3), 
            0 0 90px rgba(0, 255, 159, 0.15),
            inset 0 0 20px rgba(0, 255, 159, 0.2);
    }
}

.terminal-header {
    background: linear-gradient(145deg, #1f242c, #11161d);
    border-bottom: 1px solid rgba(0, 255, 159, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    text-shadow: 0 0 8px rgba(0, 255, 159, 0.5);
    position: relative;
}

.header-buttons {
    display: flex;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.header-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #333;
}
.header-dot.red { background-color: #ff5f56; }
.header-dot.yellow { background-color: #ffbd2e; }
.header-dot.green { background-color: #27c93f; }

.terminal-title {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 auto;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
}

.status-dot {
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    width: 8px;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 2s infinite;
}

.terminal-body {
    padding: 1.5rem;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.fast-commands {
    margin-bottom: 1.5rem;
}

.fast-commands-label {
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 5px rgba(0, 255, 159, 0.5);
}

.command-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cmd-btn {
    background: linear-gradient(145deg, rgba(31, 36, 44, 0.8), rgba(17, 22, 29, 0.8));
    border: 1px solid rgba(0, 255, 159, 0.2);
    color: var(--light);
    cursor: pointer;
    font-family: var(--font-mono);
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease-in-out;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}

.cmd-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, rgba(31, 36, 44, 1), rgba(17, 22, 29, 1));
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.2);
}

.cmd-btn i {
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}

.cmd-btn:hover i {
    opacity: 1;
}

.cmd-btn.active {
    transform: translateY(0);
    background: rgba(0, 255, 159, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.5);
    transition: transform 0.1s ease;
}

#terminal-output {
    background: rgba(1, 4, 9, 0.5);
    border: 1px solid rgba(0, 255, 159, 0.1);
    border-radius: 6px;
    color: var(--light);
    flex-grow: 1;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
    overflow-y: scroll;
    padding: 1.5rem;
    position: relative;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0, 255, 159, 0.05);
    transform: translateZ(0);
}

#terminal-output::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 159, 0.02) 50%,
        transparent 100%
    );
    animation: scanline 12s linear infinite;
    pointer-events: none;
    opacity: 0.5;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 159, 0.3) transparent;
    flex-shrink: 0;
    transform: translateZ(0);
}

@keyframes scanline {
    0% { transform: translateY(-20%); }
    100% { transform: translateY(20%); }
}

.progress-bar-container {
    margin-bottom: 1.5rem;
}

.progress-bar-label {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 159, 0.5);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(0, 255, 159, 0.1);
    border: none;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
    transition: width 0.25s ease-in-out;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.terminal-line {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.6;
    margin: 4px 0;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.terminal-line.system {
    color: #00ff9f;
}

.terminal-line.error {
    color: #ff4757;
}

.terminal-line .timestamp {
    color: #666;
    margin-right: 10px;
}

.terminal-line .message-text {
    color: inherit;
}

.terminal-line.user-command {
    color: #00aaff;
}

.terminal-line.ai-response {
    color: #e6edf3;
    white-space: pre-wrap;
}

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

.ai-response &gt; span:first-of-type {
    display: block;
    vertical-align: middle;
    animation: blink-cursor 1s step-end infinite;
}

.typing-cursor {
    display: inline-block;
    width: 9px;
    height: 1.1rem;
    background-color: var(--primary);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink-cursor 1s step-end infinite;
}

.recommendation-block {
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 1.5rem 0.5rem;
    animation: fadeIn 0.5s ease forwards;
}

.recommendation-block.strong-buy {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(0, 255, 159, 0.05));
    border: 1px solid var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.1);
}

.recommendation-block i {
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--primary);
}

.recommendation-block span {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.command-input-container {
    background: rgba(1, 4, 9, 0.5);
    border: 1px solid rgba(0, 255, 159, 0.1);
    border-radius: 6px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.command-input-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.command-history {
    display: flex;
    flex-direction: column;
    margin-right: 0.5rem;
}

.history-up, .history-down {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.history-up:hover, .history-down:hover {
    opacity: 1;
}

.history-up {
    border-bottom: 8px solid var(--primary);
    margin-bottom: 4px;
}

.history-down {
    border-top: 8px solid var(--primary);
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-grow: 1;
    padding: 0;
}

.prompt {
    color: var(--primary);
    animation: blink-cursor 1s step-end infinite;
    font-weight: bold;
    font-size: 1.1em;
}

@keyframes blink-cursor {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

#command-input {
    background: transparent;
    border: none;
    color: var(--light);
    flex-grow: 1;
    font-family: var(--font-mono);
    font-size: 1rem;
    outline: none;
    padding: 0.25rem;
    transition: all 0.2s ease;
}

#command-input:focus {
    box-shadow: none;
}

#command-input::placeholder {
    color: #444;
    font-style: italic;
}

#send-command {
    background: transparent;
    border: none;
    color: rgba(0, 255, 159, 0.6);
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    transition: all 0.2s ease;
    font-size: 1.2rem;
    line-height: 1;
}

#send-command:hover {
    color: var(--primary);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--primary);
}

/* Features Section */
#features {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 159, 0.1), transparent 50%),
        var(--dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#features .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 255, 159, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 159, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 159, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 159, 0.5);
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    text-shadow: 0 0 25px rgba(0, 255, 159, 0.8);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    font-weight: 600;
}

.feature-card p {
    color: #aab3b3;
    line-height: 1.7;
    font-size: 1rem;
}

/* Social Proof Section */
#social-proof {
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(0, 170, 255, 0.15), transparent 70%),
        var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#social-proof::before {
    display: none; /* remove old glow */
}

#social-proof .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(0, 255, 159, 0.2);
}

.proof-ticker {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.03), transparent);
    margin-bottom: 4rem;
    border-top: 1px solid rgba(0, 170, 255, 0.1);
    border-bottom: 1px solid rgba(0, 170, 255, 0.1);
    display: flex;
}

.ticker-wrap {
    display: flex;
    animation: ticker-animation 120s linear infinite;
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--light);
    padding: 0 2.5rem;
    flex-shrink: 0;
    opacity: 0.8;
    white-space: nowrap;
}

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

@keyframes ticker-animation {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 170, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
    border-color: rgba(0, 170, 255, 0.5);
}

.stat i {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    transition: all 0.3s ease;
}

.stat:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
}

.stat span {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.8;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Access Form Section */
#access {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#access::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 255, 159, 0.1) 0%, rgba(0, 255, 159, 0) 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

#access .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

#access h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 0 0 20px rgba(0, 255, 159, 0.3);
}

#access .section-description {
    max-width: 600px;
    margin: 0 auto 0;
    color: #a0aec0;
    font-size: 1.1rem;
}

#access-form-main {
    max-width: 550px;
    margin: 2.5rem auto 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 159, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(0, 255, 159, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#access .form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

#access .form-icon,
#access .form-icon-globe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#access .form-group:has(input:focus) .form-icon,
#access .phone-input:has(select:focus) .form-icon-globe {
    opacity: 1;
}

#access input[type="text"],
#access input[type="email"],
#access input[type="tel"],
#access select {
    width: 100%;
    padding: 16px 16px 16px 55px;
    background-color: rgba(1, 4, 9, 0.7);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

#access input:focus,
#access select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(1, 4, 9, 0.9);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.2);
}

#access .phone-group .phone-input {
    display: flex;
    gap: 10px;
}

#access .phone-group select {
    width: 35%;
    padding: 16px 16px 16px 55px;
}

#access .phone-group input[type="tel"] {
    width: 65%;
    padding: 16px 20px;
}
#access .form-icon-globe {
    left: 20px;
}

#access .cta-button {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--darker);
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 255, 159, 0.2);
}

#access .cta-button:hover {
    background: #00ff9f;
    color: #010409;
    box-shadow: 0 8px 30px rgba(0, 255, 159, 0.4);
    transform: translateY(-3px);
}

#access .form-footer-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #a0aec0;
}

#access .form-footer-note .fa-lock {
    margin-right: 8px;
    color: #4a5568;
}

.form-extra-content {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 159, 0.2);
}

.urgency-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: #ffc700;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.urgency-warning i {
    font-size: 1.25rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--light);
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    min-width: 50px;
    text-shadow: 0 0 10px rgba(255, 99, 71, 0.5);
}

.countdown-item div {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    align-self: center;
    padding-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 123, 66, 0.5);
}

/* FAQ Section */
#faq {
    padding: 100px 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

#faq .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e2e8f0;
    margin: 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.faq-icon i {
    font-size: 1rem;
    color: #94a3b8;
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.5s ease;
    padding: 0 25px;
}

.faq-answer p {
    font-size: 1rem;
    color: #a0aec0;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    background-color: rgba(59, 130, 246, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: #3b82f6;
}

.faq-item.active .faq-icon i {
    transform: rotate(-180deg);
    color: #fff;
}

/* Footer */
footer {
    background: var(--darker);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    max-width: 600px;
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    body { font-size: 14px; }
    
    header {
        position: absolute;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .tagline {
        display: none;
    }

    nav {
        top: 60px;
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 0;
    }

    .menu-toggle {
        display: block;
        color: var(--primary);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .trust-badges {
        display: none;
    }
    
    .hero {
        padding-top: 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .hero-visual-hub {
        transform: scale(0.7);
        margin-top: 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 16px;
    }

    .proof-stats, .features-grid {
        grid-template-columns: 1fr;
    }

    .terminal-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .command-buttons, .cta-buttons {
        flex-direction: column;
    }

    .terminal-demo { 
        padding: 10px; 
    }

    #terminal-output {
        font-size: 12px;
    }

    .terminal-container {
        flex-direction: column;
    }

    .stat span {
        font-size: 2rem;
    }

    #access, #faq, .urgency, .social-proof {
        padding: 40px 15px;
    }

    .urgency h2 {
        font-size: 1.5rem;
    }

    .countdown-timer {
        display: flex;
        justify-content: space-around;
        gap: 10px;
        transform: none;
        width: 100%;
    }

    .countdown-item {
        text-align: center;
        flex-grow: 1;
    }

    .countdown-item span {
        font-size: 1.8rem;
        padding: 8px 4px;
        min-width: 0;
    }

    .countdown-item div {
        font-size: 0.6rem;
    }

    button, .btn { 
        width: 100%; 
    }

    main {
        padding-top: 60px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Trading Page Styles */
.trading-page main {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
    background: var(--darker);
}

.trading-terminal {
    padding: 2rem;
    height: calc(100vh - 80px);
}

.trading-terminal .container {
    max-width: 100%;
    height: 100%;
    padding: 0;
}

.terminal-container.fullscreen {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.95), rgba(1, 4, 9, 0.98));
    border: 1px solid rgba(0, 255, 159, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fullscreen .terminal-body {
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

.fullscreen .terminal-output {
    flex-grow: 1;
    min-height: 0;
    height: auto;
    max-height: none;
}

.fullscreen .command-buttons {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 159, 0.3) transparent;
    flex-shrink: 0;
    transform: translateZ(0);
}

.fullscreen .command-buttons::-webkit-scrollbar {
    height: 6px;
}

.fullscreen .command-buttons::-webkit-scrollbar-track {
    background: transparent;
}

.fullscreen .command-buttons::-webkit-scrollbar-thumb {
    background-color: rgba(0, 255, 159, 0.3);
    border-radius: 3px;
}

.fullscreen .cmd-btn {
    white-space: nowrap;
}

.fullscreen .command-input-container {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Command Guide Styles */
.command-guide {
    padding: 60px 0;
    background-color: var(--darker);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.command-guide .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.command-guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 159, 0.3);
}

.command-guide-subtitle {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    text-align: left;
}

.guide-card {
    background: #0d1117;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 159, 0.15);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.guide-card-header i {
    font-size: 24px;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.guide-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.command-list {
    list-style: none;
    padding-left: 0;
    flex-grow: 1;
}

.command-list li {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.command-list li::before {
    content: 'â†’';
    margin-right: 10px;
    color: var(--primary);
}

.command-list strong {
    color: #fff;
    font-weight: 600;
}

.command-list code {
    background-color: rgba(0, 255, 159, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9em;
}

/* Theme Styles */
/* Light Theme */
body.theme-light {
    --dark: #f0f2f5;
    --darker: #ffffff;
    --light: #2c3e50;
    --primary: #007bff;
    color: #2c3e50;
}

.theme-light .terminal-container,
.theme-light .guide-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.theme-light .terminal-header {
    background: #f7f7f7;
    border-bottom-color: rgba(0,0,0,0.1);
}

.theme-light #command-input,
.theme-light .prompt,
.theme-light .message-text {
    color: #2c3e50;
}

.theme-light .command-list strong,
.theme-light .guide-card-header h3 {
     color: #000;
}

.theme-light .command-list code {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.theme-light .command-list li::before {
    color: #007bff;
}

/* Matrix Theme */
body.theme-matrix {
    --primary: #00ff41;
}

.theme-matrix .terminal-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(2px);
    border-color: rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px var(--primary);
}

.theme-matrix #terminal-output {
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 0 5px var(--primary);
}

.theme-matrix .timestamp {
    color: #00cc34;
}

.theme-matrix .terminal-line.user-command .message-text {
    color: #a2ffb9;
}

.theme-matrix .terminal-line.ai-response .message-text {
    color: #ffffff;
}

nav a.active {
    color: #ffffff;
    text-shadow: 0 0 10px var(--primary);
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 159, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 159, 0.2);
}

.user-menu i {
    font-size: 14px;
    color: var(--primary);
}

.user-menu:hover {
    background: rgba(0, 255, 159, 0.2);
    border-color: rgba(0, 255, 159, 0.3);
}

.menu-toggle {
    display: none;
}

/* Basic Responsive Additions */
* { box-sizing: border-box; }

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

.container { 
  max-width: 100%; 
  overflow-x: hidden; 
}

.btn, button {
  min-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  body { font-size: 14px; }
  
  header .container {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h2 {
    font-size: 2rem;
  }
  
  .terminal-demo { 
    padding: 10px; 
  }

  .command-buttons, .cta-buttons {
    flex-direction: column;
  }

  button, .btn { 
    width: 100%; 
    margin: 5px 0; 
  }
  
  input, #command-input { 
    width: 100%; 
  }

  .features-grid, .proof-stats, .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* News Item Styles */
.news-item {
    padding: 5px 0;
}

.news-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.news-item a:hover {
    text-decoration: underline;
}

.news-source {
    color: #8b949e;
    font-size: 0.9em;
    margin-left: 8px;
}

/* Recommendation Block Styles */
.recommendation-container {
    padding: 0.5rem 1.5rem 0.2rem;
    animation: fadeIn 0.5s ease;
}

.recommendation-block {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(0, 255, 159, 0.4);
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(0, 255, 159, 0.05));
    font-family: var(--font-mono);
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 255, 159, 0.3);
}

.recommendation-title {
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.75rem;
}

.recommendation-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* How It Works Section */
#how-it-works {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at 50% -20%, rgba(0, 255, 159, 0.1), transparent 40%),
        var(--darker);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 159, 0.1);
}

#how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

#how-it-works .section-description {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #a0aec0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.7), rgba(1, 4, 9, 0.7));
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 159, 0.5);
    box-shadow: 0 15px 45px rgba(0, 255, 159, 0.15);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(0, 255, 159, 0.3);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    line-height: 1;
}

.step-icon {
    margin-bottom: 2rem;
}

.step-icon i {
    font-size: 3.5rem;
    color: var(--primary);
    text-shadow: 0 0 25px rgba(0, 255, 159, 0.6);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon i {
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1rem;
}

.step-card p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.demo-cta {
    margin: 5rem auto 0;
    max-width: 800px;
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.7), rgba(1, 4, 9, 0.8));
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.demo-cta:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 159, 0.1);
    border-color: rgba(0, 255, 159, 0.4);
}

.demo-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
}

.demo-cta-content i {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 255, 159, 0.5);
}

.demo-cta p {
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
    margin: 0;
    text-align: left;
}

.demo-cta p strong {
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
    color: #fff;
}

.scroll-down-indicator {
    padding: 0.5rem;
    text-align: center;
}

.scroll-down-indicator i {
    font-size: 1.5rem;
    color: var(--primary);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

#particle-canvas {
    display: none;
} </pre></body></html>