:root {
    /* Corporate Color Palette */
    --primary-color: #2563eb;
    /* Royal Blue */
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --text-main: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-light: #94a3b8;
    /* Slate 400 */

    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-card: #ffffff;
    --bg-input: #ffffff;

    --border-color: #e2e8f0;
    /* Slate 200 */
    --border-focus: #3b82f6;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --font-main: 'Roboto', system-ui, -apple-system, sans-serif;

    /* Record Type Colors */
    --color-a: #3b82f6;
    --color-aaaa: #6366f1;
    --color-mx: #eab308;
    --color-ns: #ec4899;
    --color-cname: #8b5cf6;
    --color-txt: #64748b;
    --color-soa: #14b8a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Search Box */
.search-box-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 0.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.search-form {
    display: flex;
    gap: 0.75rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.domain-input {
    flex: 2;
}

.type-select {
    flex: 1;
    min-width: 200px;
    border-left: 1px solid var(--border-color);
    padding-left: 0.75rem;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    pointer-events: none;
    z-index: 1;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem 2.75rem 1rem 2.75rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background: transparent;
    transition: all 0.2s;
    appearance: none;
    cursor: pointer;
}

.input-group select {
    background-image: linear-gradient(45deg, transparent 50%, var(--text-light) 50%), linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1rem + 4px), calc(100% - 15px) calc(1rem + 4px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.input-group select:hover {
    background-color: #f8fafc;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.input-group select:focus {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
}

.arrow-icon {
    right: 1rem;
    left: auto !important;
    font-size: 0.8rem;
    pointer-events: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Quick Tags */
.quick-tags {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.quick-tags button {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.quick-tags button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Results Section */
.results-section {
    padding: 3rem 0;
}

.results-section.hidden {
    display: none;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.domain-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.domain-info h2 {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.domain-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.btn-secondary,
.btn-ghost {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background: var(--bg-body);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost:hover {
    color: #ef4444;
    background: #fef2f2;
}

/* Results Grid */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.record-group {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    /* Status Indicator Base */
    transition: transform 0.2s, box-shadow 0.2s;
}

.record-group:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.record-group.found {
    border-left-color: #22c55e;
}

.record-group.missing {
    border-left-color: #cbd5e1;
    border-color: #f1f5f9;
    opacity: 0.8;
}

.record-group.missing .record-group-header {
    background: #f8fafc;
    color: var(--text-light);
}

.record-group.missing .type-badge {
    background: var(--text-light) !important;
    opacity: 0.7;
}

.missing-state {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    background: #fff;
}

.missing-state i {
    color: #ef4444;
    font-size: 1.1rem;
}

.record-group-header {
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

.type-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.record-table {
    width: 100%;
    border-collapse: collapse;
}

.record-table th,
.record-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.record-table tr {
    transition: background-color 0.1s;
}

.record-table tr:hover {
    background-color: #f8fafc;
}

.record-table tr:last-child td {
    border-bottom: none;
}

.record-table th {
    background: #fcfcfc;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 25%;
}

.record-table td {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--text-main);
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.copy-btn:hover {
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    background: white;
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.icon-box.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.icon-box.green {
    background: #f0fdf4;
    color: #22c55e;
}

.icon-box.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.icon-box.orange {
    background: #fff7ed;
    color: #f97316;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Loader */
border-top: 1px solid var(--border-color);
}

.api-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--primary-color);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    overflow: hidden;
    position: relative;
}

.api-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.api-text {
    flex: 1;
}

.api-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.api-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.api-endpoint {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Monaco', monospace;
}

.method {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.api-note code {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.api-code {
    flex: 1;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.api-code pre {
    margin: 0;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .api-content {
        flex-direction: column;
        padding: 2rem;
    }

    .api-code {
        width: 100%;
    }
}

/* Copyable Styles */
.copyable {
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    border-bottom: 1px dashed var(--border-color);
}

.copyable:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.copyable::after {
    content: 'Kopyala';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

.copyable:hover::after {}

.icon-box.green {
    background: #f0fdf4;
    color: #22c55e;
}

.icon-box.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.icon-box.orange {
    background: #fff7ed;
    color: #f97316;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Loader */
border-top: 1px solid var(--border-color);
}

.api-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--primary-color);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    overflow: hidden;
    position: relative;
}

.api-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.api-text {
    flex: 1;
}

.api-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.api-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.api-endpoint {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Monaco', monospace;
}

.method {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.api-note code {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.api-code {
    flex: 1;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.api-code pre {
    margin: 0;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .api-content {
        flex-direction: column;
        padding: 2rem;
    }

    .api-code {
        width: 100%;
    }
}

/* Copyable Styles */
.copyable {
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    border-bottom: 1px dashed var(--border-color);
}

.copyable:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.copyable::after {
    content: 'Kopyala';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

.copyable:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 110%;
}

.copy-success::after {
    content: 'Kopyalandı!';
    background: #22c55e;
}

/* Skeleton Loader */
.skeleton-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.skeleton-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skeleton-badge {
    width: 60px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-title {
    width: 200px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-row {
    width: 100%;
    height: 48px;
    ```
    /* Loader */
    border-top: 1px solid var(--border-color);
}

.api-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--primary-color);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    overflow: hidden;
    position: relative;
}

.api-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.api-text {
    flex: 1;
}

.api-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.api-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.api-endpoint {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Monaco', monospace;
}

.method {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.api-note code {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.api-code {
    flex: 1;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.api-code pre {
    margin: 0;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .api-content {
        flex-direction: column;
        padding: 2rem;
    }

    .api-code {
        width: 100%;
    }
}

/* Copyable Styles */
.copyable {
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    border-bottom: 1px dashed var(--border-color);
}

.copyable:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.copyable::after {
    content: 'Kopyala';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

.copyable:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 110%;
}

.copy-success::after {
    content: 'Kopyalandı!';
    background: #22c55e;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.filter-bar.hidden {
    display: none;
}

.filter-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--bg-body);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filter-btn.filter-found:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.filter-btn.filter-found.active {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.filter-btn.filter-missing:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.filter-btn.filter-missing.active {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.filter-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1rem;
position: relative;
overflow: hidden;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.skeleton-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skeleton-badge {
    width: 60px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-title {
    width: 200px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-row {
    width: 100%;
    height: 48px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.skeleton-row:last-child {
    margin-bottom: 0;
}

```

/* Logo Image */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Advertising Banners */
.ad-banner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.ad-banner:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ad-left {
    left: 20px;
}

.ad-right {
    right: 20px;
}

.ad-content {
    text-align: center;
    color: white;
}

.ad-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.ad-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.ad-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ad-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.ad-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Hide ads on mobile */
@media (max-width: 1200px) {
    .ad-banner {
        display: none;
    }
}

/* Ad Specs Styling */
.ad-specs {
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.spec-item i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.spec-item span {
    font-weight: 600;
}

.ad-price {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 1rem 0 0.75rem;
    text-align: center;
    color: white;
}

.ad-price span {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Minimal Ad Specs */
.ad-specs-minimal {
    margin: 1rem 0;
}

.spec-line {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer-promo 3s infinite;
}

@keyframes shimmer-promo {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.promo-text {
    font-weight: 600;
    font-size: 0.95rem;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

.promo-btn {
    background: white;
    color: #667eea;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Responsive adjustments for promo banner */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .promo-text {
        font-size: 0.85rem;
    }

    .promo-btn {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Markahost Navbar */
.navbar-markahost {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    gap: 2rem;
}

.navbar-markahost .logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    flex: 1;
}

.main-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav .nav-item a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.main-nav .nav-item a:hover {
    color: #2563eb;
    background: #eff6ff;
}

.nav-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-cart:hover {
    color: #2563eb;
    background: #eff6ff;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-login:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Navbar */
@media (max-width: 1200px) {
    .main-nav {
        gap: 0.25rem;
    }

    .main-nav .nav-item a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .nav-wrapper {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .nav-cart span,
    .btn-login span {
        display: none;
    }

    .nav-cart,
    .btn-login {
        padding: 0.6rem;
    }
}

/* Markahost Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.badge-kampanya {
    display: inline-block;
    background: #1C7EF3;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    margin-right: 0.25rem;
    font-weight: 700;
    vertical-align: middle;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.btn-login {
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-login:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .search-box-wrapper {
        max-width: 90%;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        height: 60px;
    }

    .logo-img {
        height: 32px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    /* Search Form */
    .search-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-box-wrapper {
        padding: 0.5rem;
        max-width: 100%;
    }

    .domain-input {
        flex: 1;
    }

    .type-select {
        flex: 1;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 0.5rem;
        min-width: 100%;
    }

    .input-group input,
    .input-group select {
        padding: 0.875rem 2.5rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* Quick Tags */
    .quick-tags {
        font-size: 0.85rem;
    }

    .quick-tags button {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    /* Results */
    .results-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .domain-info {
        width: 100%;
    }

    .actions {
        width: 100%;
        justify-content: flex-start;
    }

    /* Filter Bar */
    .filter-label {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .filter-btn {
        flex: 1;
        min-width: calc(50% - 0.375rem);
        justify-content: center;
        font-size: 0.85rem;
    }

    /* Tables */
    .record-table th,
    .record-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* API */
    .api-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .api-text h3 {
        font-size: 1.5rem;
    }

    .api-code {
        width: 100%;
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .search-box-wrapper {
        border-radius: 12px;
    }

    .input-group input,
    .input-group select {
        font-size: 0.9rem;
        padding: 0.75rem 2.25rem 0.75rem 2.25rem;
    }

    .btn-primary {
        font-size: 0.95rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .record-group-header {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .type-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}