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

body {
    background: #0d0d0f;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    padding: 2rem;
}

.purple-c {
    color: #a855f7;
}

.hero {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.tagline {
    font-size: 1rem;
    margin-top: 0.3rem;
    opacity: 0.7;
}

.results-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 14px;
    transition: 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-card:hover {
    background: rgba(168, 85, 247, 0.08);
    border-color: #a855f7;
    transform: translateY(-4px);
}

.result-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #a855f7;
}

.result-card p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer {
    text-align: center;
    margin-top: 5rem;
    opacity: 0.5;
    font-size: 0.9rem;
}
