/* Theme Variables */
:root {
    /* Typography */
    --chat-font-family: "Gantari", "JetBrains Mono", "Fira Code", "SF Mono", Menlo, Consolas, Monaco, monospace;
    
    /* Colors */
    --color-background: #000000;
    --color-text: #ffffff;
    --color-shadow: #303030;
}

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

/* Base styles */
body {
    line-height: 1.6;
    color: var(--color-text);
    min-height: 100vh;
    position: relative;
    background: var(--color-background);
    overflow-x: hidden;
}

/* Variable font declarations */
@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari/Gantari-VariableFont_wght.ttf') format('truetype-variations'),
         url('../fonts/Gantari/static/Gantari-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    font-optical-sizing: auto;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari/Gantari-Italic-VariableFont_wght.ttf') format('truetype-variations'),
         url('../fonts/Gantari/static/Gantari-Italic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
    font-optical-sizing: auto;
}

/* Global styles */
* {
    font-family: 'Gantari', sans-serif;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.links a:hover {
    opacity: 1;
}

.separator {
    color: white;
    opacity: 0.5;
}

.coming-soon {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    color: red;
    font-size: 0.8rem;
    font-style: italic;
    pointer-events: none;
    z-index: 9999;
    text-shadow: none;
    background: rgba(0,0,0,0.5);
    padding: 10px;
} 