:root {
    --bg: #000000;
    --text: #ffffff;
    --accent: #ff0066;
}

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

body {
    font-family: 'Mono', monospace;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 2rem;
}

nav {
    margin-bottom: 4rem;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--accent);
    margin-bottom: 2rem;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--text);
    border: 1px solid var(--text);
    text-decoration: none;
    margin-right: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.button:hover {
    opacity: 1;
    text-decoration: none;
    transform: scale(0.98);
    filter: grayscale(50%);
}

section {
    margin: 6rem 0;
    max-width: 800px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    border: 1px solid var(--text);
    padding: 1.5rem;
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

p {
    margin-bottom: 1.5rem;
    max-width: 600px;
}

section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

h1, h2, h3, p, a {
    text-transform: lowercase;
}

.sunset-notice {
    color: #ff0000;
    font-size: 0.9em;
    font-style: italic;
    margin-top: -10px;
    opacity: 0.8;
}

.corporate-banner {
    background: linear-gradient(45deg, #ffe6f3, #e6f0ff);
    border: 2px solid #ffb7e1;
    border-radius: 12px;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 183, 225, 0.2);
}

.corporate-text {
    color: #ff66b3;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.dismiss-button {
    background: none;
    border: none;
    color: #ff99cc;
    cursor: pointer;
    padding: 0 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dismiss-button:hover {
    color: #ff3399;
    transform: scale(1.1);
} 