* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #fbfbf8;
    color: #111318;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    overflow: hidden;
}

#particleField {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dashboard {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 28px;
    padding: 32px;
    text-align: center;
}

.eyebrow {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 700;
    line-height: 0.95;
}

.toolMenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 14px;
    width: min(760px, 100%);
}

.toolButton {
    display: grid;
    gap: 6px;
    min-height: 92px;
    align-content: center;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    color: #111318;
    padding: 20px 24px;
    text-decoration: none;
    box-shadow: 0 22px 70px rgba(17, 19, 24, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.toolButton:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 88, 255, 0.34);
    box-shadow: 0 28px 90px rgba(36, 88, 255, 0.16);
}

.toolButton span {
    font-size: 1.08rem;
    font-weight: 800;
}

.toolButton small {
    color: #5b6472;
    font-size: 0.92rem;
}

.turfButton {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(226, 236, 255, 0.72));
}

.chatlogButton {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 229, 238, 0.72));
}

@media (max-width: 680px) {
    body {
        overflow: auto;
    }

    .dashboard {
        padding: 24px;
    }

    .toolMenu {
        grid-template-columns: 1fr;
    }

    .toolButton {
        border-radius: 18px;
    }
}
