/* Early Access / Erken Erişim Styles */

.early-access-container {
    position: relative;
    margin: 16px 0;
    border-radius: 8px;
    overflow: visible;
    background: #ffffff;
}

/* Üstte içerik görünür - blur'lu */
.early-access-preview {
    padding: 16px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    filter: blur(3px);
    user-select: none;
    min-height: 80px;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

/* Overlay - İçeriğin altına konumlanır */
.early-access-overlay {
    background: #ffffff;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* İkon */
.early-access-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #feca2a 0%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(254, 202, 42, 0.3);
}

.early-access-icon i {
    font-size: 22px;
    color: #1e293b;
}

/* Badge */
.early-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.early-access-badge i {
    font-size: 14px;
}

/* Subtitle */
.early-access-subtitle {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Info Timeline */
.early-access-info {
    width: 100%;
    max-width: 300px;
    margin-bottom: 18px;
}

.early-access-timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
    border: 1px solid transparent;
}

.timeline-item:hover {
    background: #f8f9fa;
}

.timeline-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

/* VIP - Altın */
.timeline-item.vip {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}

.timeline-item.vip i {
    background: #feca2a;
    color: #78350f;
}

/* Member - Mor */
.timeline-item.member {
    background: #f5f3ff;
    color: #5b21b6;
    border-color: #ddd6fe;
}

.timeline-item.member i {
    background: #8b5cf6;
    color: #fff;
}

/* Guest - Yeşil */
.timeline-item.guest {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.timeline-item.guest i {
    background: #10b981;
    color: #fff;
}

/* CTA Buttons */
.early-access-cta {
    width: 100%;
    max-width: 400px;
    margin-top: 50px;
}

.btn-early-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-early-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-early-access:hover::before {
    left: 100%;
}

.btn-early-access.upgrade {
    background: linear-gradient(135deg, #3d618d 0%, #2d4a6d 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(61, 97, 141, 0.25);
}

.btn-early-access.upgrade:hover {
    box-shadow: 0 6px 20px rgba(61, 97, 141, 0.35);
    text-decoration: none;
    color: #fff;
}

.btn-early-access.login {
    background: linear-gradient(135deg, #7EE7D2 0%, #5bc4b0 100%);
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(126, 231, 210, 0.25);
}

.btn-early-access.login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 231, 210, 0.4);
    text-decoration: none;
    color: #1e293b;
}

.btn-early-access i {
    font-size: 15px;
}

/* Responsive */
@media (max-width: 576px) {
    .early-access-overlay {
        padding: 20px 16px;
    }

    .early-access-icon {
        width: 48px;
        height: 48px;
    }

    .early-access-icon i {
        font-size: 18px;
    }

    .early-access-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .early-access-info {
        max-width: 100%;
    }

    .timeline-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .timeline-item i {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .btn-early-access {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 10px;
    }
}
