/* Age Categories */
.age-categories {
    /* background: linear-gradient(135deg, #e1bee7, #ce93d8); */
    background-color: #1F2641;
    padding: 3rem 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}
.Textre{
    color: black !important;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 68, 173, 0.5);
    border-color: #8e44ad;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-title {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #4a148c;
    margin-bottom: 0.5rem;
}

.category-age {
    color: #6a1b9a;
    font-weight: 600;
}

