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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fafafa;
    min-height: 100vh;
    padding: 0;
}

.navbar {
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

#typingText {
    color: #667eea;
}

.cursor {
    color: #667eea;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.navbar-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.navbar-button:hover {
    background: #5568d3;
    transform: translateY(-1px);
}

.back-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.7;
}

footer {
    backdrop-filter: blur(10px);
    padding: 40px 20px 20px;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: #f9f9f9;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.footer-state-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px 20px;
    margin-bottom: 20px;
}

.footer-state-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-state-links a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.footer-other-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-other-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.footer-other-links a:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 600px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-button {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    .footer-state-links {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px 15px;
    }
    .footer-state-links a {
        font-size: 0.85rem;
    }
}
