﻿
.play-button {
    width: 100px;
    height: 100px;
    background-color: #00CC99;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border: none;
    position: relative;
    overflow: hidden; /* Dalga efektini sınırlamak için */
}

.play-button span {
    font-size: 2em;
    color: white;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    animation: ripple 2s linear infinite; /* Dalga animasyonu */
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.play-button .play-icon {
    font-size: 36px; /* İkonun boyutu */
    color: #fff; /* İkon rengi */
}


.right-panel .sub-categories {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-container:hover .sub-categories {
    opacity: 1;
}

/* Ana sosyal medya konteyneri */
.social-media {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Her sosyal medya ikonu için temel yapı */
.social-media__icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* İkonların hover durumunda değişen efektleri */
.social-media__icon:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

/* Facebook özel stili */
.social-media__icon--facebook {
    background-color: transparent;
}

/* Instagram özel stili */
.social-media__icon--instagram {
    background-color: transparent;
}

/* WhatsApp özel stili */
.social-media__icon--whatsapp {
    background-color: transparent;
}

/* İkonların içindeki resimler için yapı */
.social-media__icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    background-color: transparent; /* Arka fon tamamen şeffaf */
}
