/* Shape Display Area */
.shape-display {
    text-align: center;
    margin-bottom: 2.5rem;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-display img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Name Options Grid - using the same class as MC Text */
.name-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}

/* Option Text */
.option-text {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shape-display {
        margin-bottom: 2rem;
        height: 180px;
    }
    
    .shape-display img {
        max-width: 160px;
        max-height: 160px;
    }
    
    .name-options {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .shape-display {
        height: 160px;
    }
    
    .shape-display img {
        max-width: 140px;
        max-height: 140px;
    }
    
    .name-options {
        gap: 0.75rem;
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}