:root {
    --bg: #050505;
    --cyan: #00f3ff;
    --magenta: #ff00ff;
    --text: #ffffff;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: bold;
    border: 1px solid var(--cyan);
    padding: 6px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

footer {
    margin-top: auto;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    width: 100%;
    z-index: 10;
}

.business-hours {
    color: var(--cyan);
    font-weight: bold;
    margin-bottom: 5px;
}
