body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6fb;
}

/* WRAPPER */
.home-wrapper {
    text-align: center;
    padding: 80px 20px;
}

/* LOGO */
.logo-container img {
    width: 340px;
    margin-bottom: 30px;
}

/* TITLE */
h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* SEARCH */
.search-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.search-bar input {
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    min-width: 200px;
    font-size: 14px;
}

/* BUTTON */
.search-bar button {
    padding: 14px 24px;
    border-radius: 30px;
    border: none;

    background: linear-gradient(135deg, #2f80ed, #7b2cbf);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* CATEGORY */
.category-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

/* BUTTONS */
.category-row a {
    text-decoration: none;
    padding: 16px 22px;

    background: white;
    border-radius: 30px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    color: #333;

    font-weight: 500;
    transition: 0.3s;
}

.category-row a:hover {
    background: linear-gradient(135deg, #2f80ed, #7b2cbf);
    color: white;
    transform: translateY(-4px);
}