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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 80px;
}

.logo {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}

h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

main {
    max-width: 800px;
    width: 100%;
}

.products h2 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.products ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products li {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.products a {
    color: #7b2cbf;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    padding: 40px 50px;
    transition: color 0.3s ease;
}

.products a:hover {
    color: #9d4edd;
}

@media (max-width: 600px) {
    .logo {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .products h2 {
        font-size: 1rem;
    }

    .products a {
        font-size: 1.4rem;
        padding: 30px 35px;
    }
}
