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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 20px;
}

/* --- Main Container --- */
main {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 600px; /* Limits width on desktop for a clean look */
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Typography --- */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.desc {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.desc a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.desc a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* --- Buttons Container --- */
.explore {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
