@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
    --hive-black: #212529;
    --hive-light-gray: #e7e7f1;
    --hive-red: #e31337;
    --hive-red-hover: #c10c2c;
    --text-primary: #212529;
    --text-secondary: #495057;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--hive-red);
    margin-bottom: 20px;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: var(--hive-light-gray);
    margin: 8px 0;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

li:hover {
    background: var(--hive-red);
    color: var(--bg-white);
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}
