@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300&family=Playfair+Display:wght@400&display=swap');

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

body {
    background-color: #08080a;
    color: #f3f3f6;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 50%, rgba(223, 178, 63, 0.05) 0%, transparent 60%);
    gap: 3rem;
}

.container {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-image {
    max-width: 160px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #f3f3f6 30%, #dfb23f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: #9a9ab0;
    text-transform: uppercase;
    padding-left: 0.4em; /* offset for letter-spacing centring */
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    p {
        font-size: 0.95rem;
    }
    .category-list {
        flex-direction: column;
        gap: 0.8rem;
    }
}

.category-section {
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    width: 100%;
    max-width: 500px;
    padding: 0 1rem;
}

.category-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #dfb23f;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.category-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 1rem;
}

.category-list li {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #9a9ab0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.category-list li:hover {
    color: #f3f3f6;
    transform: translateY(-2px);
}
