/* Global Styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 400px;
    background-color: var(--content-bg-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

h1 {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-item {
    display: block;
    background-color: var(--link-bg-color);
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.link-item:hover {
    background-color: var(--accent-color);
    color: var(--content-bg-color);
    transform: translateY(-3px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .link-item {
        font-size: 1.1rem;
    }
}
