.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 40px auto;
}

.container div {
    background-color: #FFD700;
    color: #2c2c2c;
    width: 64px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.container div:hover {
    transform: translateY(-4px);
}

.container .color {
    background-color: #8b0000;
    color: #fff;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.myText {
    width: 92%;
    margin: 50px auto;
    padding: 35px;
    background: linear-gradient(180deg, #262626, #1b1b1b);
    border-radius: 20px;
    box-shadow:
        0 15px 30px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
    display:none;
}

.more_active {
    display: block !important;
}

.hidden{
    display:none;
}
.noms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.noms figure {
    width: 200px;
    border-radius: 12px;
    text-align: center;
    margin: 0 auto;
}

.noms figure img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.noms figcaption {
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.4;
}

.noms figure:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
    .noms figure {
        width: 45%;
        margin: 5px;
    }
    
    .noms figure img {
        height: 200px;
    }
    
    .myText {
        padding: 15px;
        width: 95%;
    }
}
