:root {
    --gold-primary: #d4af37;
    --gold-light: #f9e596;
    --gold-dark: #997a00;
    --gold-neon: #ffcf40;
    --bg-dark: #050608;
    --bg-surface: rgba(12, 15, 20, 0.75);
    --text-main: #f0f2f5;
    --text-muted: #8b95a8;
    --glow-spread: rgba(212, 175, 55, 0.2);
    --term-bg: rgba(6, 8, 12, 0.95);
    --term-text: #00ff41;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Background Animations */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: float 12s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(153, 122, 0, 0.25) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -150px;
    animation-delay: -4s;
    animation-direction: alternate-reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 207, 64, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.15); }
}

.background-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 5px var(--gold-light);
    animation: particle-rise linear infinite;
}

@keyframes particle-rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.9; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* Main Container */
.glass-container {
    position: relative;
    z-index: 10;
    background: var(--bg-surface);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-top: 1px solid rgba(255, 207, 64, 0.4);
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(212, 175, 55, 0.05);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(30px);
    opacity: 0;
}

.glass-container.expand {
    max-width: 1050px;
}

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

/* Header & Identity */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--gold-primary);
    padding: 4px;
    box-shadow: 0 0 20px var(--glow-spread), inset 0 0 10px rgba(212, 175, 55, 0.2);
    animation: pulseGlow 3.5s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px var(--glow-spread); border-color: var(--gold-primary); }
    100% { box-shadow: 0 0 35px rgba(255, 207, 64, 0.5); border-color: var(--gold-light); transform: scale(1.02); }
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.version-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--bg-dark);
    background: var(--gold-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: middle;
}

.subtitle-tech {
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

/* Typography */
.huge-text {
    font-size: 3.5rem !important;
    letter-spacing: 1px;
}

h1.glimmer-text {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    background: linear-gradient(to bottom right, #ffffff 0%, var(--gold-light) 40%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.hype {
    color: #e0e5f0;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

/* Status Badge */
.live-status {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(15, 20, 25, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gold-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-neon);
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hype-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.hype-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Proof Section */
.proof-section {
    margin: 1rem auto 3rem;
    max-width: 800px;
    animation: fadeIn 1s ease forwards;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.proof-card {
    background: rgba(12, 17, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.telegram-mock .tg-header {
    background: #17212b;
    padding: 10px 15px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #111;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.telegram-mock .tg-body {
    background: #0e1621;
    padding: 15px;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.01) 0, transparent 100%);
}

.tg-msg {
    background: #182533;
    padding: 14px 18px;
    border-radius: 12px 12px 12px 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #e4ecf2;
    line-height: 1.7;
    text-align: left;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.2px;
}

.tg-msg strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.green-glow {
    color: #00ff41;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
    display: block;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

/* TradingView aesthetic chart */
.visual-mock {
    background: #131722; /* Authentic TradingView dark theme */
    padding: 0; /* Remove padding to let axes sit on edges */
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    min-height: 350px;
}

.chart-header {
    padding: 10px 15px;
    border-bottom: 1px solid #2a2e39;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #d1d4dc;
    display: flex;
    gap: 15px;
    background: #1e222d;
    font-weight: 600;
}
.chart-header span { color: #8a8d9a; font-weight: normal; margin-left: 5px; }

.chart-window {
    flex: 1;
    position: relative;
    display: flex;
    overflow: hidden;
    background-image: 
        linear-gradient(#2a2e39 1px, transparent 1px),
        linear-gradient(90deg, #2a2e39 1px, transparent 1px);
    background-size: 50px 50px; /* Grid lines */
}

/* Watermark */
.chart-watermark {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    text-align: center;
    line-height: 1;
}

.buy-chart {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.price-axis {
    width: 60px;
    border-left: 1px solid #2a2e39;
    background: #1e222d;
    position: relative;
    z-index: 20;
}

.price-label {
    position: absolute;
    right: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #d1d4dc;
    transform: translateY(-50%);
}

.candles-container {
    display: flex;
    gap: 4px;
    margin-left: 15%;
    position: absolute;
    bottom: 0;
    height: 100%;
    align-items: flex-end;
    z-index: 10;
}

/* Sequence of pushing UP */
/* All animations are synced on a 10s timeline. */
.candle {
    position: relative;
    width: 14px;
    display: flex;
    justify-content: center;
    opacity: 0;
}

.candle .wick { position: absolute; width: 2px; bottom: 0; z-index: 1; }
.candle .body { position: absolute; width: 100%; border-radius: 1px; z-index: 2; }

.green-candle .wick { background: #089981; }
.green-candle .body { background: #089981; border: 1px solid #089981; }

.red-candle .wick { background: #f23645; }
.red-candle .body { background: #f23645; border: 1px solid #f23645; }

/* The layout is strictly bottom-up based on fixed pixel maps */
.c1 { height: 100px; bottom: 50px; animation: walkC1 8s infinite; }
.c1 .wick { height: 60px; bottom: 0; }
.c1 .body { height: 40px; bottom: 10px; }

.c2 { height: 100px; bottom: 40px; animation: walkC2 8s infinite; }
.c2 .wick { height: 50px; bottom: 0; }
.c2 .body { height: 15px; bottom: 30px; }

.c3 { height: 150px; bottom: 85px; animation: walkC3 8s infinite; }
.c3 .wick { height: 90px; bottom: 0; }
.c3 .body { height: 70px; bottom: 10px; }

.c4 { height: 200px; bottom: 165px; animation: walkC4 8s infinite; }
.c4 .wick { height: 80px; bottom: 0; }
.c4 .body { height: 60px; bottom: 5px; }

.c5 { height: 280px; bottom: 230px; animation: walkC5 8s infinite; }
.c5 .wick { height: 100px; bottom: 0; }
.c5 .body { height: 70px; bottom: 15px; }

/* 8-second global loop */
@keyframes walkC1 {
    0%, 2% { opacity: 0; transform: translateY(10px); }
    3%, 60% { opacity: 1; transform: translateY(0); }
    61%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes walkC2 {
    0%, 9% { opacity: 0; transform: translateY(10px); }
    10%, 65% { opacity: 1; transform: translateY(0); }
    66%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes walkC3 {
    0%, 19% { opacity: 0; transform: translateY(10px); }
    20%, 70% { opacity: 1; transform: translateY(0); }
    71%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes walkC4 {
    0%, 29% { opacity: 0; transform: translateY(10px); }
    30%, 75% { opacity: 1; transform: translateY(0); }
    76%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes walkC5 {
    0%, 39% { opacity: 0; transform: translateY(10px); }
    40%, 80% { opacity: 1; transform: translateY(0); }
    81%, 100% { opacity: 0; transform: translateY(0); }
}

.tp-line {
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(0, 255, 65, 0.5);
    left: 0;
    display: flex;
    align-items: center;
    z-index: 5;
}

.entry-line {
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.entry-line span, .tp-line span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    position: absolute;
    right: 5px;
    transform: translateY(-50%);
}

.entry-line span { background: #333; color: #fff; }
.tp-line span { background: rgba(0, 255, 65, 0.15); color: #089981; border: 1px solid rgba(8, 153, 129, 0.5); }
.green-glow { color: #089981; text-shadow: 0 0 8px rgba(8, 153, 129, 0.3); }

.tp1 { bottom: 120px; }
.tp2 { bottom: 190px; }
.tp3 { bottom: 260px; }

/* Action Area */
.action-area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.uppercase-glow {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

.gold-btn {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #fff;
    border: 1px solid var(--gold-light);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    cursor: not-allowed; /* Change when ready */
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.gold-btn span {
    position: relative;
    z-index: 2;
}

.gold-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.hype-btn:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6), inset 0 2px 2px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    opacity: 1;
}

.hype-btn:hover::after {
    left: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .capabilities-grid, .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .huge-text {
        font-size: 2.2rem !important;
    }
    
    .glass-container {
        padding: 2.5rem 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .terminal-container {
        display: none; /* Hide on very small screens to save space */
    }
}

@media (max-width: 600px) {
    body {
        padding: 1rem 0;
    }

    .glass-container {
        width: 95%;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .logo {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
    }

    .brand-text {
        font-size: 1.6rem;
        flex-wrap: wrap;
    }

    .version-tag {
        font-size: 0.8rem;
    }

    .subtitle-tech {
        font-size: 0.75rem;
        text-align: center;
        letter-spacing: 1px;
    }

    .huge-text {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .subtitle.hype {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .status-badge {
        padding: 0.5rem 1rem;
    }

    .status-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .uppercase-glow {
        font-size: 0.8rem;
    }

    .gold-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

