/* assets/css/landing-modal.css */

/* Modal Arka Planı (Blur Efekti) */
.modal-backdrop {
    background-color: rgba(10, 14, 22, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Landing Özel Modal İçeriği */
.landing-modal-content {
    background: rgba(21, 25, 34, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    overflow: hidden;
    position: relative;
}

/* Üst Kısım Vurgusu (Glow) */
.landing-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    opacity: 0.5;
}

.landing-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.landing-modal-close {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.landing-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.landing-modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Scrollbar Tasarımı */
.landing-modal-body::-webkit-scrollbar {
    width: 6px;
}

.landing-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.landing-modal-body::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
}

.landing-modal-body h6 {
    color: #6366f1;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.landing-modal-body p {
    margin-bottom: 15px;
}

/* Animasyon */
.modal.fade .landing-modal-content {
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .landing-modal-content {
    transform: scale(1) translateY(0);
}
