/* Reset / base */
* { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
    background-color: #e4d6ff;
}

.container {
    text-align: center;
    padding: 28px;
    width: 92%;
    max-width: 760px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(12, 20, 30, 0.06);
}

.title-category{
    font-size: 2.6rem;
    font-weight: 700;
    margin: 6px 0 6px;
    color: #222;
}

.subcategory h4 {
    font-size: 1.2rem;
    color: #555;
}

.options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
}

/* Pink (Niña) */
.pink {
    background: linear-gradient(180deg,#ff79b8,#ff4d8f);
}
.pink:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(255,77,143,0.18); }

/* Blue (Niño) */
.blue {
    background: linear-gradient(180deg,#63a8ff,#2b7bff);
}
.blue:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(43,123,255,0.18); }

/* White */
.white {
    background: #ffffff;
    color: #333;
    border: 2px solid #e6e6e6;
}
.white:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

/* Blue (Niño) */
.green {
    background: linear-gradient(180deg,#8fff63,#2bff4e);
}
.green:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(43,123,255,0.18); }


/* Responsiveness */
@media (max-width:480px) {
    h1 { font-size: 1.6rem; }
    .btn { padding: 10px 14px; min-width: 90px; font-size: .95rem; }
    .container { padding: 18px; border-radius: 10px; }
}
