/* Member Content Page Styles */

.member-content-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
    padding-top: 150px; /* Header için boşluk */
}

.member-content-section {
    padding: 3rem 0;
}

/* Content Cards */
.content-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-card__header {
    background: linear-gradient(135deg, #1651a0, #1a64c7);
    color: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card__header i {
    font-size: 1.5rem;
}

.content-card__header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.content-card__body {
    padding: 1.5rem;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Video Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.video-placeholder i {
    font-size: 5rem;
    color: #1651a0;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.video-placeholder small {
    font-size: 0.9rem;
    color: #9aa7bb;
    font-weight: 400;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Video yüklendiğinde placeholder'ı gizle */
.video-wrapper video:not([src=""]) ~ .video-placeholder {
    display: none;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1651a0;
    margin-bottom: 0.75rem;
}

.video-description {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Info Sections */
.info-section {
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #1651a0;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1651a0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section h4 i {
    font-size: 1.1rem;
}

.info-section p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Download List */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #1651a0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-item:hover {
    background: #e8f0f7;
    border-color: #1651a0;
    transform: translateX(5px);
    color: #1651a0;
}

.download-item i:first-child {
    font-size: 1.5rem;
    color: #dc3545;
}

.download-item span {
    flex: 1;
}

.download-item i:last-child {
    font-size: 1rem;
    opacity: 0.6;
}

/* Alert Boxes */
.alert-box {
    display: flex;
    gap: 15px;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-box:last-child {
    margin-bottom: 0;
}

.alert-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.alert-box p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.alert-box--info {
    background: #e7f3ff;
    border-color: #0dcaf0;
    color: #055160;
}

.alert-box--info i {
    color: #0dcaf0;
}

.alert-box--warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #664d03;
}

.alert-box--warning i {
    color: #ffc107;
}

.alert-box--success {
    background: #d1e7dd;
    border-color: #198754;
    color: #0f5132;
}

.alert-box--success i {
    color: #198754;
}

/* Responsive */
@media (max-width: 991.98px) {
    .member-content-section {
        padding: 2rem 0;
    }

    .content-card__header h2 {
        font-size: 1.1rem;
    }

    .video-info h3 {
        font-size: 1.25rem;
    }

    .info-section {
        padding: 1rem;
    }

    .video-wrapper {
        min-height: 300px;
    }

    .video-placeholder i {
        font-size: 4rem;
    }

    .video-placeholder p {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .member-content-section {
        padding: 1.5rem 0;
    }

    .content-card__body {
        padding: 1rem;
    }

    .video-wrapper {
        min-height: 250px;
    }

    .video-placeholder i {
        font-size: 3rem;
    }

    .video-placeholder p {
        font-size: 1.1rem;
    }

    .video-placeholder small {
        font-size: 0.8rem;
    }

    .alert-box {
        flex-direction: column;
        gap: 10px;
    }

    .alert-box i {
        font-size: 1.25rem;
    }
}
