.galeri {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.galeri-item {
    width: calc(33.33% - 20px);
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.galeri-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.galeri-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .3s ease, filter .3s ease;
    border-radius: 12px;
}

.galeri-item:hover img {
    transform: scale(1.05);
    filter: brightness(80%);
}

.galeri-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .galeri-item {
        width: calc(50% - 20px);
    }

    .galeri-item img {
        height: auto;
    }
}

@media (max-width: 480px) {
    .galeri-item {
        width: 100%;
    }

    .galeri-item img {
        height: auto;
    }
}

.sekme {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.sekme-butonu {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.komut.acik {
    border-color: #5776d6;
    transform: translateY(-2px);
}

.sekme-butonu.aktif {
    background: #5776d6;
    color: #fff;
    border-color: #5776d6;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.2);
}

.sekme-butonu:hover {
    background: #5776d6;
    color: #fff;
}

.sekme-icerik {
    display: none;
    animation: fadeIn 0.5s ease;
}

.sekme-icerik.aktif {
    display: block;
}

.komutlar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.komut {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.komut:hover {
    background: #f9f9f9;
    border-color: #5776d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.komut-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium:hover {
    background: #fffbea;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.premium {
  background-color: #fffbea;
  border-color: #ffd700;
}

.premium .komut-baslik {
  color: #d4af37;
  font-weight: bold;
  position: relative;
}

.ok-simge {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
}

.komut-detay {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eaeaea;
}

.komut.acik .ok-simge {
    transform: rotate(90deg);
    color: #5776d6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .sekme-butonu {
        font-size: 14px;
        padding: 10px;
    }

    #arama-girdisi {
        max-width: 100%;
    }

    .komut {
        padding: 15px;
    }

    .komut-detay {
        font-size: 14px;
    }
}
