/* whois-checker.css */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.tool-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
    color: white;
}

/* Benefit Cards */
.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: #f8faff;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.05);
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.benefit-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}

/* Whois Result Styling */
.whois-result-container {
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.whois-pre {
    padding: 25px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 600px;
    overflow-y: auto;
    margin-bottom: 0;
}

.whois-pre::-webkit-scrollbar {
    width: 8px;
}

.whois-pre::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.whois-pre::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.whois-pre::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Info Section */
.info-section-premium {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #667eea;
}

.info-section-premium h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.info-section-premium p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Animations */
.animated-gradient-text {
    background-image: linear-gradient(to right, #ffffff, #e3d9f1, #d0aaf3, #c4a6f5);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-animation 8s infinite alternate;
    display: inline-block;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}