/* Seyrengiz Slider Pro Frontend CSS */

.seyr-slider-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #0f172a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.seyr-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.seyr-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
    display: flex;
    align-items: center;
}

.seyr-slide.seyr-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.seyr-slide-bg-wrap {
    position: absolute;
    inset: -20px; /* Expand bounds to clip blurred edges */
    z-index: 0;
    overflow: hidden;
}

.seyr-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; /* Increased opacity for a brighter background */
    filter: blur(8px) brightness(0.7); /* Apply soft blur and slight brightness adjustment */
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.seyr-slide.seyr-active .seyr-slide-bg.seyr-zoom {
    transform: scale(1.2);
}

.seyr-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.5) 0%,   /* Slate 900 at 50% opacity */
        rgba(15, 23, 42, 0.1) 50%,  /* Slate 900 at 10% opacity */
        rgba(15, 23, 42, 0.3) 100%  /* Slate 900 at 30% opacity */
    );
    z-index: 1;
}

.seyr-slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-sizing: border-box;
}

.seyr-slide-left {
    flex-shrink: 0;
    position: relative;
    display: none;
}

@media (min-width: 768px) {
    .seyr-slide-left {
        display: block;
    }
}

.seyr-cover-glow {
    position: absolute;
    inset: -20px;
    background: rgba(59, 130, 246, 0.25);
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.5;
}

.seyr-cover-img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.seyr-slide.seyr-active .seyr-cover-img {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.seyr-slide-details {
    flex: 1;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(30px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1s ease 0.1s;
    box-sizing: border-box;
}

.seyr-slide.seyr-active .seyr-slide-details {
    transform: translateX(0);
    opacity: 1;
}

.seyr-tag {
    display: inline-flex;
    padding: 5px 12px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 8px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.seyr-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .seyr-title {
        font-size: 32px;
    }
}

.seyr-desc {
    font-size: 14px;
    font-weight: 300;
    color: #cbd5e1;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.seyr-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.seyr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #ffffff;
    color: #090d16 !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.seyr-btn:hover {
    background: #2563eb;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.seyr-btn-youtube {
    background: #dc2626;
    color: #ffffff !important;
}

.seyr-btn-youtube:hover {
    background: #b91c1c;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.4);
}

.seyr-formats {
    display: flex;
    flex-direction: column;
}

.seyr-formats-label {
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.seyr-formats-value {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.seyr-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 30;
    pointer-events: none;
}

.seyr-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
}

.seyr-arrow:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.seyr-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 30;
}

.seyr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.seyr-dot.seyr-active {
    width: 24px;
    border-radius: 4px;
    background: #2563eb;
}

.seyr-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #2563eb;
    width: 0;
    z-index: 35;
    transition: width 0.1s linear;
}

.seyr-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.seyr-video-container video,
.seyr-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
