/* Özcan Pen - EliteVideo Player Styles */
.elite-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 0;
}

.elite-video {
    width: 100%;
    height: auto;
    display: block;
}

.elite-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}

.elite-video-wrapper:hover .elite-player-controls {
    opacity: 1;
}

.elite-control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elite-control-btn:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.elite-progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.elite-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    border-radius: 2px;
}

.elite-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: rgba(0,0,0,0.2);
    pointer-events: none;
}

.elite-play-center {
    width: 80px;
    height: 80px;
    background: rgba(229,185,95,0.9);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(229,185,95,0.4);
    pointer-events: auto;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.elite-play-center:hover {
    transform: scale(1.1);
    background: #fff;
}

.elite-unmute-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.elite-video-wrapper.is-playing .elite-play-center {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

/* YouTube Wrapper */
.elite-youtube-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}
.elite-youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 32px;
}
