/* Mobile layout for Aya Playground section */
@media (max-width: 768px) {
    .playground-features {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 5px 25px 5px;
    }
    
    .playground-feature {
        width: 32%;
        padding: 10px 5px;
        background: #282c4d;
        border-radius: 12px;
        text-align: center;
        box-sizing: border-box;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .playground-feature .feature-icon {
        margin: 0 auto 8px;
        width: 36px !important;
        height: 36px !important;
    }
    
    .playground-feature .feature-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .playground-feature h4 {
        font-size: 13px;
        margin: 0 0 8px;
        color: white;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .playground-feature p {
        font-size: 10px;
        line-height: 1.3;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        display: none; /* Hide description on mobile to save space */
    }
    
    /* Show descriptions on click/tap */
    .playground-feature.expanded p {
        display: block;
        margin-top: 8px;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}
