:root {
    --primary-color: #00f7ff;
    --secondary-color: #b721ff;
    /* --background-color: #0a0b1e; */
    /* --card-color: rgba(16, 18, 35, 0.9); */
    --background-color: #022c43;
    --card-color: #081d28;
    --font-display: 'Orbitron', sans-serif;
    /* --font-mono: 'Share Tech Mono', monospace; */
    --font-mono: Verdana, monospace;
}

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

@font-face {
    font-family: 'Old London';
    font-style: normal;
    font-weight: 400;
    src: url(OldLondon.ttf)
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: var(--font-mono);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

.market-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.neon-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.title {
    font-family: 'Old London';
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(to top right, #b769c8, #f5f5f5);
    -webkit-background-clip: text;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
}

.message {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
    margin: 3rem 0;
}
