/* ============================================
   Модальные окна авторизации - StormHosting UA
   ============================================ */

/* Основные модальные стили */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.auth-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-modal.show .auth-modal-content {
    transform: scale(1) translateY(0);
}

/* Кнопка закрытия */
.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #495057;
    transform: rotate(90deg);
}

/* Заголовок модального окна */
.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 40px;
}

.auth-modal-header h2 {
    color: #2d3748;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-modal-header p {
    color: #718096;
    font-size: 16px;
    margin: 0;
}

/* Форма */
.auth-form {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label i {
    color: #667eea;
    width: 16px;
}

/* Input Groups */
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
    text-align: center;
    white-space: nowrap;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 12px 0 0 12px;
    border-right: none;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-left: none;
    border-radius: 0;
}

/* Password toggle button */
.input-group .btn-outline-secondary {
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-color: #d1d5db;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.input-group .btn-outline-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
}

.input-group .btn-outline-secondary:focus,
.input-group .btn-outline-secondary:active {
    box-shadow: none !important;
    outline: none !important;
    background: #e5e7eb;
    border-color: #6b7280;
}

/* Form Controls */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #374151;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #374151;
    background-color: #ffffff;
    border-color: #667eea;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Validation States */
.form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #ef4444;
}

.invalid-feedback.show,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Checkbox */
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    margin-left: -1.5rem;
    vertical-align: top;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.15s ease-in-out;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-check-label {
    color: #374151;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-check-label a {
    color: #667eea;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Auth Button */
.btn-auth {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-auth:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-auth:active {
    transform: translateY(0);
}

.btn-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.auth-switch p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.auth-switch a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Forgot Password */
.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    position: relative;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.alert-success {
    color: #065f46;
    background-color: #d1fae5;
    border-color: #a7f3d0;
}

.alert-danger {
    color: #991b1b;
    background-color: #fee2e2;
    border-color: #fecaca;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .auth-modal-header {
        padding-right: 30px;
    }
    
    .auth-modal-header h2 {
        font-size: 1.75rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .btn-auth {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .auth-modal-content {
        padding: 25px 15px;
        margin: 15px;
        max-width: calc(100% - 30px);
    }
    
    .input-group-text,
    .form-control,
    .btn-outline-secondary {
        padding: 0.625rem 0.75rem;
        font-size: 0.95rem;
    }
}

/* Улучшения для accessibility */
.form-control:focus,
.btn-auth:focus,
.form-check-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Анимации появления */
.auth-modal {
    animation: fadeInBackdrop 0.3s ease;
}

.auth-modal.show .auth-modal-content {
    animation: slideInUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInBackdrop {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Дополнительные улучшения для лучшего UX */
.form-control:disabled,
.form-control[readonly] {
    background-color: #f9fafb;
    opacity: 1;
}

.input-group .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Стили для корректного отображения иконок */
.bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentcolor;
}

/* Убираем outline по умолчанию */
button:focus {
    outline: none;
}

/* Исправления для кнопки показа пароля */
.input-group .btn-outline-secondary {
    position: relative;
    z-index: 2;
    min-width: 48px;
}

.input-group .btn-outline-secondary i {
    font-size: 1rem;
    line-height: 1;
}

/* Убираем стандартные стили кнопки в Firefox */
.input-group .btn-outline-secondary::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Обеспечиваем корректное выравнивание */
.input-group > .form-control,
.input-group > .input-group-text,
.input-group > .btn {
    display: flex;
    align-items: center;
}

/* Исправляем z-index для корректного отображения границ */
.input-group > .form-control:focus {
    z-index: 3;
}

.input-group > .form-control:not(:first-child) {
    margin-left: -1px;
}

.input-group > .btn:not(:first-child) {
    margin-left: -1px;
}/**
 * Premium Design Enhancements for StormHosting UA
 * Modern, prestigious styling improvements
 */

/* ========================================
   Enhanced Color Scheme
   ======================================== */
:root {
    /* Premium Color Palette */
    --premium-primary: #667eea;
    --premium-secondary: #764ba2;
    --premium-accent: #00d4ff;
    --premium-gold: #FFD700;
    --premium-dark: #1a1a2e;
    --premium-light: #f8f9ff;

    /* Gradients */
    --premium-gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --premium-gradient-accent: linear-gradient(135deg, #00d4ff 0%, #667eea 100%);
    --premium-gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    /* Shadows */
    --premium-shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.15);
    --premium-shadow-md: 0 4px 16px rgba(102, 126, 234, 0.2);
    --premium-shadow-lg: 0 8px 32px rgba(102, 126, 234, 0.25);
    --premium-shadow-xl: 0 16px 48px rgba(102, 126, 234, 0.3);
}

/* ========================================
   Trust Badges Styling
   ======================================== */
.trust-badges {
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.05));
    border-radius: 12px;
    padding: 20px;
}

.trust-badges .badge-item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.trust-badges .badge-item:hover {
    transform: translateY(-5px);
}

.trust-badges .badge-item i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ========================================
   Enhanced Buttons
   ======================================== */
.btn-premium {
    background: var(--premium-gradient-main);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--premium-shadow-md);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-shadow-lg);
    color: white;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--premium-primary);
    color: var(--premium-primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: var(--premium-gradient-main);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   Enhanced Cards
   ======================================== */
.premium-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--premium-shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.premium-card:hover {
    box-shadow: var(--premium-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--premium-primary);
}

.premium-card-header {
    background: var(--premium-gradient-main);
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    margin: -30px -30px 20px -30px;
}

/* ========================================
   Premium Header Enhancements
   ======================================== */
.main-header {
    backdrop-filter: blur(10px);
    box-shadow: var(--premium-shadow-md);
}

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* ========================================
   Premium Footer Enhancements
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--premium-gradient-accent);
}

/* ========================================
   Premium Animations
   ======================================== */
@keyframes premium-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.premium-float {
    animation: premium-float 3s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

.premium-glow {
    animation: premium-glow 2s ease-in-out infinite;
}

/* ========================================
   Premium Text Styles
   ======================================== */
.text-premium-gradient {
    background: var(--premium-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-premium-gold {
    background: var(--premium-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ========================================
   Premium Badges
   ======================================== */
.premium-badge {
    background: var(--premium-gradient-main);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--premium-shadow-sm);
}

.premium-badge-gold {
    background: var(--premium-gradient-gold);
    color: #1a1a2e;
}

/* ========================================
   Responsive Enhancements
   ======================================== */
@media (max-width: 768px) {
    .trust-badges {
        gap: 2rem !important;
    }

    .trust-badges .badge-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .trust-badges .badge-item {
        flex: 0 0 100%;
    }
}

/* ========================================
   Premium Features Section
   ======================================== */
.premium-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--premium-gradient-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: var(--premium-shadow-md);
    margin-bottom: 20px;
}

/* ========================================
   Premium Pricing Cards
   ======================================== */
.premium-pricing-card {
    position: relative;
    overflow: hidden;
}

.premium-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-gradient-main);
}

.premium-pricing-popular {
    border: 2px solid var(--premium-primary);
    transform: scale(1.05);
}

.premium-pricing-popular::after {
    content: 'Популярний';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--premium-gradient-gold);
    color: #1a1a2e;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
/**
 * DNS Lookup - Modern Styles (based on WHOIS)
 */

:root {
    --dns-primary: #10b981;
    --dns-secondary: #059669;
    --dns-dark: #1e293b;
    --dns-light: #f8fafc;
    --dns-border: #e2e8f0;
}

/* DNS Hero - зеленый градиент */
.dns-hero {
    background: linear-gradient(135deg, var(--dns-primary) 0%, var(--dns-secondary) 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.dns-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    to { transform: translate(60px, 60px); }
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Search Card */
.dns-search-card {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dns-search-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
}

.domain-input-group {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--dns-border);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--dns-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.search-input.is-valid {
    border-color: var(--dns-primary);
}

.search-input.is-invalid {
    border-color: #ef4444;
}

.record-select {
    padding: 16px 20px;
    border: 2px solid var(--dns-border);
    border-radius: 12px;
    font-size: 15px;
    min-width: 240px;
    cursor: pointer;
}

.record-select:focus {
    outline: none;
    border-color: var(--dns-primary);
}

.search-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.search-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Quick Types */
.quick-types {
    margin-top: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.quick-btn {
    padding: 6px 16px;
    background: white;
    border: 2px solid var(--dns-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dns-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.quick-btn:hover,
.quick-btn.active {
    border-color: var(--dns-primary);
    background: var(--dns-primary);
    color: white;
}

/* Results */
#dnsResults {
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.dns-result-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    padding: 32px;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    color: white;
    text-align: center;
}

.result-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.result-body {
    padding: 32px;
}

.dns-records-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
}

.dns-records-table th {
    background: var(--dns-light);
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: var(--dns-dark);
    border-bottom: 2px solid var(--dns-border);
}

.dns-records-table td {
    padding: 16px;
    border-bottom: 1px solid var(--dns-border);
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.dns-records-table tr:hover td {
    background: var(--dns-light);
}

.record-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--dns-primary);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

/* Sections */
.record-types-section,
.features-section,
.tools-section {
    padding: 80px 0;
}

.record-types-section {
    background: white;
}

.features-section {
    background: var(--dns-light);
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dns-dark);
    margin-bottom: 48px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.type-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 2px solid var(--dns-border);
    transition: all 0.3s;
}

.type-card:hover {
    border-color: var(--dns-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.type-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dns-primary);
    margin-bottom: 8px;
}

.type-name,
.type-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.test-btn {
    margin-top: 12px;
    padding: 8px 16px;
    background: white;
    border: 2px solid var(--dns-primary);
    color: var(--dns-primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.test-btn:hover {
    background: var(--dns-primary);
    color: white;
}

/* Features Content */
.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lead {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    color: white;
}

/* DNS Flow Diagram */
.dns-flow-diagram {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.flow-step {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: var(--dns-light);
}

.flow-step.active {
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    color: white;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dns-primary);
}

.flow-step.active .step-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.step-label {
    font-weight: 700;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 14px;
    opacity: 0.8;
}

.flow-arrow {
    text-align: center;
    font-size: 24px;
    color: var(--dns-primary);
    padding: 12px 0;
}

/* Our DNS Servers */
.our-servers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    color: white;
}

.servers-header {
    text-align: center;
    margin-bottom: 48px;
}

.servers-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.server-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.server-card .server-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.server-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.server-ip {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.server-status.online {
    background: rgba(16, 185, 129, 0.3);
}

.servers-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tool-card {
    background: white;
    border: 2px solid var(--dns-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.tool-card:hover {
    border-color: var(--dns-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.tool-card .tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--dns-primary), var(--dns-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.tool-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dns-dark);
    margin-bottom: 12px;
}

.tool-card p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 16px;
}

.tool-link {
    color: var(--dns-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .search-row {
        grid-template-columns: 1fr;
    }

    .record-select {
        min-width: 100%;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-content,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }

    .dns-search-form {
        padding: 24px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }
}