#aflamicose-intro-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    font-family: inherit;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#aflamicose-intro-wrapper.aflamicose-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.aflamicose-intro-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.aflamicose-intro-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 700px;
    background: #141414;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    animation: aflamicoseZoomIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes aflamicoseZoomIn {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.aflamicose-logo-wrap img.aflamicose-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.aflamicose-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.aflamicose-player-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.aflamicose-player-wrap iframe,
.aflamicose-player-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.aflamicose-notice {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

#aflamicose-skip-btn {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: aflamicoseSlideUp 0.5s forwards 0.3s;
}

#aflamicose-skip-btn.aflamicose-skip-disabled {
    background: #444;
    cursor: not-allowed;
}

#aflamicose-skip-btn:not(.aflamicose-skip-disabled):hover {
    background: #f40612;
    transform: scale(1.05);
}

@keyframes aflamicoseSlideUp {
    to { transform: translateY(0); opacity: 1; }
}
