/*
Theme Name: Domain Check Pro
Theme URI: https://www.domaincheckpro.com/
Author: Domain Check Pro
Description: Advanced batch domain, HTTPS, DNS, redirect, mobile first visit, Googlebot, blacklist and SEO checker WordPress theme.
Version: 2.0.0
Text Domain: domaincheckpro
*/

:root {
    --dcp-primary: #2563eb;
    --dcp-primary-dark: #1d4ed8;
    --dcp-cyan: #06b6d4;
    --dcp-dark: #0f172a;
    --dcp-text: #334155;
    --dcp-muted: #64748b;
    --dcp-soft: #f8fafc;
    --dcp-line: #e2e8f0;
    --dcp-card: #ffffff;
    --dcp-green: #16a34a;
    --dcp-yellow: #f59e0b;
    --dcp-red: #dc2626;
    --dcp-radius: 14px;
    --dcp-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #f8fafc;
    color: var(--dcp-text);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

.dcp-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.dcp-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--dcp-line);
}

.dcp-header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.dcp-logo {
    display: inline-flex;
    align-items: center;
    min-width: 210px;
}

.dcp-logo img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 230px;
    object-fit: contain;
}

.dcp-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dcp-dark);
    font-size: 22px;
    font-weight: 900;
}

.dcp-logo-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--dcp-primary), var(--dcp-cyan));
}

.dcp-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #475569;
    font-size: 14px;
    font-weight: 750;
}

.dcp-nav a:hover {
    color: var(--dcp-primary);
}

.dcp-nav .dcp-nav-cta {
    color: #fff;
    background: var(--dcp-primary);
    border-radius: 999px;
    padding: 10px 16px;
}

.dcp-nav .dcp-nav-cta:hover {
    color: #fff;
    background: var(--dcp-primary-dark);
}

.dcp-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--dcp-primary);
    font-size: 22px;
    cursor: pointer;
}

.dcp-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 52px;
    background:
        radial-gradient(circle at 12% 10%, rgba(37, 99, 235, .18), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(6, 182, 212, .16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.dcp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    gap: 34px;
    align-items: center;
}

.dcp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 850;
}

h1 {
    margin: 18px 0 16px;
    color: var(--dcp-dark);
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.06;
    letter-spacing: -.02em;
}

.dcp-lead {
    max-width: 780px;
    margin: 0;
    color: #475569;
    font-size: 18px;
}

.dcp-check-panel {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--dcp-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--dcp-shadow);
}

.dcp-check-tabs {
    display: inline-flex;
    padding: 4px;
    border: 1px solid var(--dcp-line);
    border-radius: 999px;
    background: #f8fafc;
    margin-bottom: 14px;
}

.dcp-tab {
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 9px 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.dcp-tab.is-active {
    background: var(--dcp-primary);
    color: #fff;
}

.dcp-check-form {
    display: grid;
    gap: 12px;
}

.dcp-single-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.dcp-input,
.dcp-textarea {
    width: 100%;
    border: 1px solid var(--dcp-line);
    border-radius: 14px;
    background: #fff;
    color: var(--dcp-dark);
    outline: none;
}

.dcp-input {
    height: 54px;
    padding: 0 16px;
    font-size: 16px;
}

.dcp-textarea {
    min-height: 148px;
    resize: vertical;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.55;
}

.dcp-input:focus,
.dcp-textarea:focus {
    border-color: var(--dcp-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.dcp-btn {
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: var(--dcp-primary);
    color: #fff;
    padding: 0 22px;
    font-weight: 900;
    cursor: pointer;
}

.dcp-btn:hover {
    background: var(--dcp-primary-dark);
}

.dcp-help {
    margin: 4px 0 0;
    color: var(--dcp-muted);
    font-size: 13px;
}

.dcp-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.dcp-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid var(--dcp-line);
    border-radius: 12px;
    background: #f8fafc;
    padding: 9px 11px;
    color: #475569;
    font-size: 13px;
    font-weight: 750;
}

.dcp-report {
    border-radius: 24px;
    background: #0f172a;
    color: #dbeafe;
    padding: 24px;
    box-shadow: var(--dcp-shadow);
}

.dcp-score {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    color: #fff;
    margin-bottom: 18px;
}

.dcp-score strong {
    font-size: 54px;
    line-height: 1;
}

.dcp-score span {
    color: #cbd5e1;
    font-weight: 750;
}

.dcp-report-list {
    display: grid;
    gap: 10px;
}

.dcp-report-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
    font-size: 13px;
}

.dcp-report-row span {
    color: #cbd5e1;
}

.dcp-report-row strong {
    text-align: right;
    color: #fff;
    word-break: break-word;
}

.dcp-ok {
    color: #86efac !important;
}

.dcp-warn {
    color: #fcd34d !important;
}

.dcp-risk {
    color: #fca5a5 !important;
}

.dcp-section {
    padding: 58px 0;
}

.dcp-section-title {
    max-width: 820px;
    margin-bottom: 28px;
}

.dcp-section-title h2 {
    margin: 0 0 10px;
    color: var(--dcp-dark);
    font-size: 34px;
    line-height: 1.16;
}

.dcp-section-title p {
    margin: 0;
    color: var(--dcp-muted);
}

.dcp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dcp-card {
    border: 1px solid var(--dcp-line);
    border-radius: var(--dcp-radius);
    background: #fff;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.dcp-card h3 {
    margin: 12px 0 8px;
    color: var(--dcp-dark);
    font-size: 19px;
    line-height: 1.25;
}

.dcp-card p {
    margin: 0;
    color: var(--dcp-muted);
    font-size: 15px;
}

.dcp-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--dcp-primary);
    font-weight: 950;
}

.dcp-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--dcp-line);
    border-radius: 16px;
    background: #fff;
}

.dcp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.dcp-table th,
.dcp-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--dcp-line);
    text-align: left;
    font-size: 14px;
}

.dcp-table th {
    color: var(--dcp-dark);
    background: #f8fafc;
    font-weight: 900;
}

.dcp-table td {
    color: #475569;
}

.dcp-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 900;
}

.dcp-pill-ok {
    background: #dcfce7;
    color: #166534;
}

.dcp-pill-warn {
    background: #fef3c7;
    color: #92400e;
}

.dcp-pill-risk {
    background: #fee2e2;
    color: #991b1b;
}

.dcp-faq {
    display: grid;
    gap: 12px;
}

.dcp-faq details {
    border: 1px solid var(--dcp-line);
    border-radius: 14px;
    background: #fff;
    padding: 16px 18px;
}

.dcp-faq summary {
    cursor: pointer;
    color: var(--dcp-dark);
    font-weight: 900;
}

.dcp-faq p {
    margin: 10px 0 0;
    color: var(--dcp-muted);
}

.dcp-breadcrumb {
    margin-bottom: 16px;
    color: var(--dcp-muted);
    font-size: 14px;
}

.dcp-breadcrumb a {
    color: var(--dcp-primary);
    font-weight: 850;
}

.dcp-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 46px 0 24px;
}

.dcp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.dcp-footer-logo img {
    height: 42px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    margin-bottom: 12px;
}

.dcp-footer h3,
.dcp-footer h4 {
    margin: 0 0 12px;
    color: #fff;
}

.dcp-footer p,
.dcp-footer a {
    color: #94a3b8;
    font-size: 14px;
}

.dcp-footer-links {
    display: grid;
    gap: 8px;
}

.dcp-copy {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #94a3b8;
    font-size: 13px;
}

.dcp-article {
    max-width: 880px;
    margin: 0 auto;
}

.dcp-content {
    color: var(--dcp-text);
    font-size: 17px;
}

.dcp-content h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    color: var(--dcp-dark);
    font-size: 30px;
    line-height: 1.2;
}

.dcp-content h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--dcp-dark);
    font-size: 23px;
}

.dcp-content p {
    margin: 0 0 18px;
}

.dcp-inline-link,
.dcp-content a {
    color: var(--dcp-primary);
    font-weight: 900;
}

.dcp-featured-image {
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 16px;
}

.dcp-featured-image img,
.dcp-thumb-link img {
    display: block;
    width: 100%;
    border-radius: 14px;
}

.dcp-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--dcp-muted);
    font-size: 13px;
    font-weight: 800;
}

.dcp-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.dcp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 4px;
    padding: 0 12px;
    border: 1px solid var(--dcp-line);
    border-radius: 10px;
    background: #fff;
    color: var(--dcp-dark);
    font-weight: 900;
}

.dcp-pagination .page-numbers.current {
    border-color: var(--dcp-primary);
    background: var(--dcp-primary);
    color: #fff;
}

@media (max-width: 960px) {
    .dcp-menu-btn {
        display: block;
    }

    .dcp-nav {
        position: absolute;
        top: 80px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        border: 1px solid var(--dcp-line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--dcp-shadow);
    }

    .dcp-nav.is-open {
        display: flex;
    }

    .dcp-hero-grid,
    .dcp-grid,
    .dcp-footer-grid {
        grid-template-columns: 1fr;
    }

    .dcp-single-row {
        grid-template-columns: 1fr;
    }

    .dcp-options {
        grid-template-columns: 1fr;
    }

    .dcp-logo {
        min-width: auto;
    }

    .dcp-logo img {
        height: 38px;
        max-width: 200px;
    }

    h1 {
        font-size: 36px;
    }
}