/* ===================================
   Video Showcase Dekoratif Elementler
   =================================== */

.video-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.video-story-container {
    position: relative;
    max-width: 100%;
    padding: 40px 30px;
}

/* Dekoratif Elementler Container */
.video-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Sol ve Sağ Taraflar için Ekstra Alan */
.video-showcase-section .container-v1 {
    position: relative;
}

.video-showcase-section .container-v1::before,
.video-showcase-section .container-v1::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(182, 85, 79, 0.2);
    animation: rotate 30s linear infinite;
}

.video-showcase-section .container-v1::before {
    left: -100px;
}

.video-showcase-section .container-v1::after {
    right: -100px;
    animation-direction: reverse;
}

/* Yuvarlak Desenler */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(182, 85, 79, 0.1), rgba(255, 129, 16, 0.1));
    animation: float 6s ease-in-out infinite;
}

.deco-circle-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -80px;
    border: 4px solid rgba(182, 85, 79, 0.25);
    animation-delay: 0s;
}

.deco-circle-2 {
    width: 100px;
    height: 100px;
    top: 35%;
    right: -60px;
    border: 3px solid rgba(255, 129, 16, 0.3);
    animation-delay: 1s;
}

.deco-circle-3 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -70px;
    border: 5px solid rgba(182, 85, 79, 0.2);
    animation-delay: 2s;
}

.deco-circle-4 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: -40px;
    background: radial-gradient(circle, rgba(255, 129, 16, 0.25), transparent);
    animation-delay: 1.5s;
}

.deco-circle-5 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: -50px;
    border: 3px solid rgba(255, 129, 16, 0.2);
    animation-delay: 0.5s;
}

.deco-circle-6 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: -45px;
    border: 2px solid rgba(182, 85, 79, 0.3);
    animation-delay: 2.5s;
}

/* Pattern Desenler */
.deco-pattern {
    position: absolute;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

.deco-pattern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(45%) saturate(1000%) hue-rotate(330deg);
}

.deco-pattern-1 {
    width: 140px;
    height: 140px;
    top: 5%;
    left: -60px;
}

.deco-pattern-2 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    right: -70px;
    animation-direction: reverse;
}

/* Nokta Desenler */
.deco-dots {
    position: absolute;
    width: 100px;
    height: 100px;
}

.deco-dots::before,
.deco-dots::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--bs-secondary);
    border-radius: 50%;
    opacity: 0.4;
}

.deco-dots-1 {
    top: 15%;
    left: -40px;
}

.deco-dots-1::before {
    top: 0;
    left: 0;
    animation: pulse 2s ease-in-out infinite;
}

.deco-dots-1::after {
    top: 25px;
    left: 25px;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.deco-dots-2 {
    bottom: 20%;
    right: -35px;
}

.deco-dots-2::before {
    bottom: 0;
    right: 0;
    animation: pulse 2s ease-in-out infinite 1s;
}

.deco-dots-2::after {
    bottom: 20px;
    right: 30px;
    animation: pulse 2s ease-in-out infinite 1.5s;
}

.deco-dots-3 {
    top: 50%;
    left: -30px;
}

.deco-dots-3::before {
    top: 0;
    left: 0;
    background: var(--bs-primary);
    animation: pulse 2.5s ease-in-out infinite;
}

.deco-dots-3::after {
    top: 15px;
    left: 20px;
    background: var(--bs-primary);
    animation: pulse 2.5s ease-in-out infinite 0.7s;
}

.deco-dots-4 {
    top: 40%;
    right: -25px;
}

.deco-dots-4::before {
    top: 0;
    right: 0;
    background: var(--bs-primary);
    animation: pulse 2.5s ease-in-out infinite 0.3s;
}

.deco-dots-4::after {
    top: 18px;
    right: 22px;
    background: var(--bs-primary);
    animation: pulse 2.5s ease-in-out infinite 1s;
}

/* Çizgi Desenler */
.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
    opacity: 0.25;
    animation: slide 4s ease-in-out infinite;
}

.deco-line-1 {
    width: 120px;
    height: 3px;
    top: 25%;
    left: -80px;
}

.deco-line-2 {
    width: 100px;
    height: 3px;
    bottom: 30%;
    right: -70px;
    animation-delay: 2s;
}

.deco-line-3 {
    width: 80px;
    height: 2px;
    top: 70%;
    left: -60px;
    background: linear-gradient(90deg, transparent, var(--bs-secondary), transparent);
    animation-delay: 1s;
}

.deco-line-4 {
    width: 90px;
    height: 2px;
    top: 55%;
    right: -65px;
    background: linear-gradient(90deg, transparent, var(--bs-secondary), transparent);
    animation-delay: 3s;
}

/* Geometrik Şekiller */
.deco-shape {
    position: absolute;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.deco-shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: -70px;
    background: linear-gradient(45deg, var(--bs-primary), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0.5s;
}

.deco-shape-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: -80px;
    background: linear-gradient(135deg, var(--bs-secondary), transparent);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 1.5s;
}

/* Dalga Efektleri */
.deco-wave {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgba(182, 85, 79, 0.2);
    animation: wave 4s ease-in-out infinite;
}

.deco-wave-1 {
    top: 10%;
    left: -75px;
}

.deco-wave-2 {
    bottom: 15%;
    right: -75px;
    animation-delay: 2s;
}

/* Video Wrapper Güncellemesi */
.video-story-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 30px !important;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(182, 85, 79, 0.25), 
                0 10px 30px rgba(0, 0, 0, 0.1) !important;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.8);
}

.video-story-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
    animation: glow 3s ease-in-out infinite;
}

.video-story-wrapper:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 35px 90px rgba(182, 85, 79, 0.35), 
                0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Play Button Güncellemesi */
.play-button {
    width: 90px !important;
    height: 90px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.play-button:hover {
    transform: scale(1.15) !important;
    background: #fff !important;
    box-shadow: 0 15px 40px rgba(182, 85, 79, 0.4) !important;
}

.play-button i {
    font-size: 32px !important;
    color: var(--bs-primary) !important;
    margin-left: 5px;
}

/* Video Info Güncellemesi */
.video-info h4 {
    font-size: 24px !important;
    font-weight: 600;
    color: var(--bs-heading-color) !important;
    margin-bottom: 10px;
}

.video-info p {
    font-size: 16px !important;
    color: #666;
    margin: 0;
}

/* Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

@keyframes slide {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes wave {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .video-story-container {
        padding: 30px 15px;
    }
    
    .video-showcase-section .container-v1::before,
    .video-showcase-section .container-v1::after {
        display: none;
    }
    
    .deco-circle-1 {
        width: 70px;
        height: 70px;
        left: -35px;
    }
    
    .deco-circle-2 {
        width: 50px;
        height: 50px;
        right: -25px;
    }
    
    .deco-circle-3 {
        width: 80px;
        height: 80px;
        left: -40px;
    }
    
    .deco-circle-4 {
        width: 40px;
        height: 40px;
        right: -20px;
    }
    
    .deco-circle-5,
    .deco-circle-6 {
        display: none;
    }
    
    .deco-pattern-1,
    .deco-pattern-2 {
        width: 60px;
        height: 60px;
    }
    
    .deco-shape-1,
    .deco-shape-2,
    .deco-wave-1,
    .deco-wave-2 {
        display: none;
    }
    
    .deco-dots-3,
    .deco-dots-4 {
        display: none;
    }
    
    .deco-line-3,
    .deco-line-4 {
        display: none;
    }
    
    .play-button {
        width: 60px !important;
        height: 60px !important;
    }
    
    .play-button i {
        font-size: 20px !important;
    }
    
    .video-info h4 {
        font-size: 20px !important;
    }
    
    .video-info p {
        font-size: 14px !important;
    }
}
