:root.search-bulk-tlds {
    --primary: #0077BE;
    --primary-dark: #005a8b;
    --primary-light: #00CED1;
    --gradient-main: linear-gradient(135deg, #0077BE 0%, #00CED1 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

.search-bulk-tlds .hero-section {
    padding-bottom: 50px !important;
}

.search-bulk-tlds .nav-link[href*="bulk"] {
    background: var(--gradient-main);
    color: white;
}

.bulk-search-container {
    max-width: 700px;
}

.search-bulk-tlds .hero-title {
    font-size: 3.2rem !important;
}

.bulk-input-area {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.input-label {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--dark);
}

.keyword-counter {
    font-size: var(--font-size-sm);
    color: var(--gray);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--light-gray);
    border-radius: 20px;
}

.keyword-counter.warning {
    background: #fef3c7;
    color: var(--warning);
}

.keyword-counter.error {
    background: #fee;
    color: var(--error);
}

.bulk-textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    resize: vertical;
    min-height: 160px;
    max-height: 320px;
    transition: var(--transition-base);
    background: #f9fafb;
}

.bulk-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    justify-content: center;
}

.btn-secondary {
    padding: 8px 16px;
    background: var(--light-gray);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: #d1d5db;
}

.bulk-table-header {
    background: var(--light-gray) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    z-index: 101;
}

.bulk-table-header .dk-list-actions {
    justify-content: center !important;
}

.bulk-header-stat {
    flex: 1;
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--dark);
}

.bulk-result-row.skeleton .dk-list-content span,
.bulk-result-row.skeleton .dk-list-actions span {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    height: 16px;
    display: inline-block;
    min-width: 40px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.bulk-stat {
    flex: 1;
    text-align: center;
    font-weight: 600;
}

.stat-total {
    color: var(--dark);
}

.stat-popular {
    color: var(--success);
}

.stat-cctld {
    color: var(--primary);
}

.stat-other {
    color: var(--gray);
}

.bulk-result-row .dk-list-actions {
    justify-content: center !important;
}

.bulk-result-row .dk-list-actions form {
    width: auto;
}

.validation-error {
    margin-top: 12px;
    padding: 10px;
    background: #fee;
    color: var(--error);
    border-radius: 6px;
    font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
    .search-bulk-tlds .hero-title {
        font-size: 2rem !important;
    }
    
    .bulk-search-container {
        max-width: 100%;
    }
    
    .bulk-input-area {
        padding: 16px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn-secondary, .search-btn {
        width: 100%;
    }
    
    .dk-list-content {
        display: flex !important;
    }
    
    .dk-list-content .bulk-stat:nth-child(1),
    .dk-list-content .bulk-stat:nth-child(2),
    .bulk-table-header .bulk-header-stat:nth-child(1),
    .bulk-table-header .bulk-header-stat:nth-child(2) {
        display: block !important;
    }
    
    .dk-list-content .bulk-stat:nth-child(3),
    .dk-list-content .bulk-stat:nth-child(4),
    .bulk-table-header .bulk-header-stat:nth-child(3),
    .bulk-table-header .bulk-header-stat:nth-child(4) {
        display: none !important;
    }
    
    .filters-bar {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-group {
        display: inline-flex;
        margin-right: 10px;
    }
}

@media (max-width: 468px) {
    .search-bulk-tlds .hero-title {
        font-size: 1.5rem !important;
    }
    
    .bulk-textarea {
        min-height: 120px;
        font-size: 12px;
    }
    
    .dk-list-content .bulk-stat:nth-child(2),
    .dk-list-content .bulk-stat:nth-child(3),
    .dk-list-content .bulk-stat:nth-child(4),
    .bulk-table-header .bulk-header-stat:nth-child(2),
    .bulk-table-header .bulk-header-stat:nth-child(3),
    .bulk-table-header .bulk-header-stat:nth-child(4) {
        display: none !important;
    }
}