/* WHOIS Modal */
.whois-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(2px);
    }
}

.whois-modal-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.2s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whois-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whois-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whois-header i {
    font-size: 14px;
    opacity: 0.9;
}

.whois-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.whois-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whois-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.5;
}

.whois-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.whois-line:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.whois-line i {
    width: 16px;
    text-align: center;
    color: #6c757d;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.whois-line strong {
    color: #212529;
    font-weight: 600;
}

/* Özel icon renkleri */
.whois-line i.fa-user { color: #28a745; }
.whois-line i.fa-id-card { color: #17a2b8; }
.whois-line i.fa-server { color: #6f42c1; }
.whois-line i.fa-crown { color: #ffc107; }
.whois-line i.fa-clock { color: #fd7e14; }
.whois-line i.fa-sign-in-alt { color: #20c997; }
.whois-line i.fa-hashtag { color: #e83e8c; }
.whois-line i.fa-shield-alt { color: #dc3545; }

/* Responsive */
@media (max-width: 768px) {
    .whois-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .whois-header {
        padding: 12px 16px;
    }
    
    .whois-header h3 {
        font-size: 14px;
    }
    
    .whois-body {
        padding: 16px;
        font-size: 12px;
    }
    
    .whois-line {
        gap: 8px;
        margin-bottom: 8px;
        padding: 6px 0;
    }
}

/* Scrollbar styling */
.whois-body::-webkit-scrollbar {
    width: 6px;
}

.whois-body::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 3px;
}

.whois-body::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

.whois-body::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}
