:root {
    --brand: orange;
    --bg: #f8f5f0;
    --text: #333333;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg);
    color: var(--text);
}

.container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--brand);
    margin-bottom: 20px;
    flex-shrink: 0;
}

h1 {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 800;
    color: #d35400;
}

.welcome-msg {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
    color: #555555;
}

.menu-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.menu-btn i {
    margin-right: 12px;
}

.menu-btn:active {
    transform: scale(0.98);
}

.list-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.list-item {
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.grid-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.grid-item {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 24px;
    transition: 0.2s;
}

.grid-item:active {
    transform: scale(0.9);
}

.footer {
    margin-top: auto;
    padding: 25px 0;
    width: 100%;
    font-size: 10px;
    opacity: 0.4;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.menu-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.menu-btn:active {
    transform: scale(0.96);
}

.list-item {
    transition: all 0.2s ease;
}

.list-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    filter: brightness(0.95);
}

.grid-item {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.grid-item:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.grid-item:active {
    transform: scale(0.9);
}

.footer a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}