@font-face {
    font-family: 'Mona Sans';
    src: url('/assets/fonts/MonaSansVF.ttf') format('truetype');
    font-weight: 200 900;
    font-style: normal italic;
    font-display: swap;
}

@font-face {
    font-family: 'Geist Mono';
    src: url('/assets/fonts/GeistMono-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-fg: #1f2328;
    --color-fg-muted: #656d76;
    --color-fg-subtle: #6e7781;
    --color-bg: #ffffff;
    --color-bg-subtle: #f6f8fa;
    --color-bg-inset: #eff2f5;
    --color-border: #d1d9e0;
    --color-border-muted: #d8dee4;
    --color-accent: #1a7f37;
    --color-accent-hover: #1a6f2f;
    --color-success: #1a7f37;
    --color-success-subtle: #dafbe1;
    --color-attention: #9a6700;
    --color-attention-subtle: #fff8c5;
    --color-danger: #d1242f;
    --color-danger-subtle: #ffebe9;
    --color-done: #8250df;
    --color-done-subtle: #fbefff;
    --color-header-bg: #0d1117;
    --color-header-fg: #ffffff;
    --color-yeet: #8b5cf6;
    --color-yeet-subtle: #f3f0ff;
    --sans: 'Mona Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --mono: 'Geist Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

body {
    font-family: var(--sans);
}

.max-w-7xl {
    max-width: 1280px !important;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.bg-accent-50 { background-color: #f0fdf4 !important; }
.bg-accent-100 { background-color: #dcfce7 !important; }
.bg-accent-600 { background-color: #1a7f37 !important; }
.hover\:bg-accent-50:hover { background-color: #f0fdf4 !important; }
.hover\:bg-accent-100:hover { background-color: #dcfce7 !important; }
.hover\:bg-accent-700:hover { background-color: #1a6f2f !important; }
.text-accent-400 { color: #4ade80 !important; }
.text-accent-500 { color: #1a7f37 !important; }
.text-accent-600 { color: #1a7f37 !important; }
.text-accent-700 { color: #1a6f2f !important; }
.text-accent-800 { color: #155227 !important; }
.text-accent-900 { color: #14532d !important; }
.hover\:text-accent-800:hover { color: #155227 !important; }
.hover\:text-accent-900:hover { color: #14532d !important; }
.border-accent-100 { border-color: #dcfce7 !important; }
.border-accent-200 { border-color: #bbf7d0 !important; }
.border-accent-300 { border-color: #86efac !important; }
.hover\:border-accent-300:hover { border-color: #86efac !important; }
.focus\:border-accent-500:focus { border-color: #1a7f37 !important; }
.focus\:ring-accent-500:focus { box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.35) !important; }
.file\:bg-accent-50::file-selector-button { background-color: #f0fdf4; }
.file\:text-accent-700::file-selector-button { color: #1a6f2f; }
.hover\:file\:bg-accent-100:hover::file-selector-button { background-color: #dcfce7; }

.site-header {
    background: var(--color-header-bg);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header .logo {
    font-family: 'Geist Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-header-fg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header .logo:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.site-header .logo .logo-yeet {
    color: var(--color-header-fg);
}

.site-header .logo .logo-prompt {
    color: #1a7f37;
    animation: blink 1s step-end infinite;
}

.site-header .header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header .header-nav .header-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    /* font-weight: 500; */
}

.site-header .header-nav .header-link:hover {
    color: #fff;
    text-decoration: none;
}

.site-header .header-nav .header-link-active {
    color: #fff;
}

.domain-check-search-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.domain-check-input-wrap {
    position: relative;
    flex: 1 1 auto;
}

.domain-check-search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 28px;
    height: 28px;
    color: #6b7280;
    transform: translateY(-50%);
    pointer-events: none;
}

.domain-check-input {
    width: 100%;
    /* min-height: 84px; */
    padding: 15px 28px 15px 40px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    background: #fff;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.domain-check-input::placeholder {
    color: #6b7280;
    opacity: 1;
}

.domain-check-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.14);
}

.domain-check-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    
    padding: 15px 28px;
    border: 0;
    border-radius: 6px;
    background: var(--color-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.domain-check-submit:hover {
    background: var(--color-accent-hover);
}

.domain-check-submit:active {
    transform: translateY(1px);
}

@media (min-width: 640px) {
    .domain-check-search-form {
        flex-direction: row;
        align-items: stretch;
    }
}

@media (max-width: 639px) {
    .domain-check-input {
        min-height: 72px;
        padding-left: 64px;
        font-size: 22px;
    }

    .domain-check-search-icon {
        left: 5px;
        width: 24px;
        height: 24px;
    }

    .domain-check-submit {
        width: 100%;
        min-height: 64px;
        font-size: 24px;
    }
}

.rounded-lg,
.rounded-xl,
.rounded-2xl,
.rounded-3xl,
.rounded-full,
.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control,
.ts-dropdown {
    border-radius: 6px !important;
}

.rounded-s-lg,
.rounded-s-xl,
.rounded-s-2xl,
.rounded-s-3xl,
.rounded-s-full {
    border-start-start-radius: 6px !important;
    border-end-start-radius: 6px !important;
}

.rounded-e-lg,
.rounded-e-xl,
.rounded-e-2xl,
.rounded-e-3xl,
.rounded-e-full {
    border-start-end-radius: 6px !important;
    border-end-end-radius: 6px !important;
}

.rounded-t-lg,
.rounded-t-xl,
.rounded-t-2xl,
.rounded-t-3xl,
.rounded-t-full {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}

.rounded-r-lg,
.rounded-r-xl,
.rounded-r-2xl,
.rounded-r-3xl,
.rounded-r-full {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.rounded-b-lg,
.rounded-b-xl,
.rounded-b-2xl,
.rounded-b-3xl,
.rounded-b-full {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.rounded-l-lg,
.rounded-l-xl,
.rounded-l-2xl,
.rounded-l-3xl,
.rounded-l-full {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.rounded-ss-lg,
.rounded-ss-xl,
.rounded-ss-2xl,
.rounded-ss-3xl,
.rounded-ss-full,
.rounded-tl-lg,
.rounded-tl-xl,
.rounded-tl-2xl,
.rounded-tl-3xl,
.rounded-tl-full {
    border-top-left-radius: 6px !important;
}

.rounded-se-lg,
.rounded-se-xl,
.rounded-se-2xl,
.rounded-se-3xl,
.rounded-se-full,
.rounded-tr-lg,
.rounded-tr-xl,
.rounded-tr-2xl,
.rounded-tr-3xl,
.rounded-tr-full {
    border-top-right-radius: 6px !important;
}

.rounded-ee-lg,
.rounded-ee-xl,
.rounded-ee-2xl,
.rounded-ee-3xl,
.rounded-ee-full,
.rounded-br-lg,
.rounded-br-xl,
.rounded-br-2xl,
.rounded-br-3xl,
.rounded-br-full {
    border-bottom-right-radius: 6px !important;
}

.rounded-es-lg,
.rounded-es-xl,
.rounded-es-2xl,
.rounded-es-3xl,
.rounded-es-full,
.rounded-bl-lg,
.rounded-bl-xl,
.rounded-bl-2xl,
.rounded-bl-3xl,
.rounded-bl-full {
    border-bottom-left-radius: 6px !important;
}

.ts-wrapper {
    font-size: 0.875rem;
    line-height: 1.25rem;
    border: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
    border-color: rgb(209 213 219);
    min-height: calc(1.25rem + 1rem + 2px);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    box-shadow: none;
    background-color: rgb(255 255 255);
}

.ts-wrapper.focus .ts-control {
    border-color: rgb(26 127 55);
    box-shadow: 0 0 0 2px rgba(26, 127, 55, 0.2);
}

.ts-wrapper.single .ts-control input,
.ts-wrapper.multi .ts-control input,
.ts-wrapper .item,
.ts-dropdown .option {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.ts-wrapper.single .ts-control::after {
    border-color: rgb(107 114 128) transparent transparent transparent;
    right: 0.75rem;
}

.ts-wrapper.dropdown-active.single .ts-control::after {
    border-color: transparent transparent rgb(107 114 128) transparent;
}

.ts-wrapper.plugin-remove_button .item,
.ts-wrapper.multi .item {
    background-color: rgb(220 252 231);
    color: rgb(26 127 55);
}

.ts-dropdown {
    border-color: rgb(229 231 235);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
