* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: #f5f7fb;
    color: #172033;
    overflow-x:hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

.page {
    min-height: 100vh;
    padding: 20px 20px;
}

.header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header h1 {
    margin: 16px 0 10px;
    font-size: 42px;
    line-height: 1.15;
}

.newcardforsearch{
        background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
    
}

.newcardforsearch .card-title{
    display:none;
}
.newcardforsearch input[type="url"]{
    padding:22px;
    border-radius: 51px;
}
.header p {
    margin: 0;
    color: #667085;
    font-size: 17px;
}

.container {
    width: min(900px, 100%);
    margin: auto;
}

.card,
.action-card {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 18px;
    box-shadow:
        0 2px 10px rgba(16, 24, 40, 0.03);
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.card-title h2 {
    margin: 0;
    font-size: 20px;
}

.card-title span {
    color: #98a2b3;
    font-size: 13px;
    font-weight: 700;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 650;
}

input[type="url"],
input[type="number"],
select,
textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 9px;
    padding: 12px 13px;
    background: #fff;
    color: #172033;
    outline: none;
}

input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #6366f1;
    box-shadow:
        0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea {
    resize: vertical;
 
}

.help {
    margin-top: 7px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.radio-card,
.check-card {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    cursor: pointer;
}

.radio-card:hover,
.check-card:hover {
    background: #fafafa;
}

.radio-card input,
.check-card input {
    margin-top: 3px;
}

.radio-card strong,
.check-card strong {
    display: block;
    margin-bottom: 4px;
}

.radio-card small,
.check-card small {
    display: block;
    color: #667085;
    line-height: 1.5;
}

.options {
    margin-top: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.action-card {
    text-align: center;
}

.primary-button {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 15px 20px;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.primary-button:hover {
    background: #4338ca;
}

.primary-button:disabled {
    opacity: 0.6;
    cursor: wait;
}

.hidden {
    display: none !important;
}

.error {
    margin-top: 15px;
    padding: 13px;
    border-radius: 9px;
    background: #fef3f2;
    border: 1px solid #fecdca;
    color: #b42318;
    text-align: left;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.progress-header h2 {
    margin: 0 0 6px;
}

.progress-header p {
    margin: 0;
    color: #667085;
    word-break: break-all;
    font-size: 13px;
}

#progressPercent {
    font-size: 20px;
}

.progress-bar {
    height: 10px;
    background: #eaecf0;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
}

#progressFill {
    height: 100%;
    background: #4f46e5;
    transition: width 0.3s;
}

.stats,
.result-stats {
    display: grid;
    grid-template-columns:
        repeat(6, 1fr);

    gap: 10px;
}

.stat,
.result-stats > div {
    padding: 15px 10px;
    background: #f8f9fc;
    border-radius: 10px;
    text-align: center;
}

.stat strong,
.result-stats strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.stat span,
.result-stats span {
    display: block;
    color: #667085;
    font-size: 12px;
}

.live-log {
    margin-top: 20px;
    padding: 15px;
    background: #111827;
    color: #d1d5db;
    border-radius: 10px;
}

.log-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

#log {
    max-height: 100px;
    overflow: auto;
   
    font-size: 12px;
    word-break: break-all;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.success-header h2 {
    margin: 0 0 5px;
}

.success-header p {
    margin: 0;
    color: #667085;
}

.success-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dcfae6;
    color: #067647;
    font-size: 24px;
    font-weight: 700;
}

.result-stats {
    grid-template-columns:
        repeat(4, 1fr);

    margin-bottom: 25px;
}

.file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    margin-top: 10px;
}

.file-info strong {
    display: block;
}

.file-info span {
    color: #667085;
    font-size: 13px;
}

.file-actions {
    display: flex;
    gap: 8px;
}

.file-actions a,
.file-actions button {
    display: inline-block;
    border: 0;
    border-radius: 7px;
    padding: 9px 13px;
    background: #eef2ff;
    color: #4338ca;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
}

.details {
    margin-top: 20px;
    color: #667085;
    font-size: 13px;
}

/* =========================================================
   CRAWL SCREEN
========================================================= */

.crawl-screen {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8f9ff
        );

    border: 1px solid #e4e7ec;

    border-radius: 22px;

    padding: 35px;

    margin-bottom: 20px;

    box-shadow:
        0 15px 45px
        rgba(16, 24, 40, 0.08);

    animation:
        crawlAppear 0.4s ease;
}


@keyframes crawlAppear {

    from {
        opacity: 0;
        transform:
            translateY(15px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}


.crawl-top {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    text-align: left;
}


.crawl-icon {
    width: 62px;

    height: 62px;

    border-radius: 18px;

    display: grid;

    place-items: center;

    background:
        #eef2ff;

    flex-shrink: 0;
}


.crawl-spinner {
    width: 30px;

    height: 30px;

    border: 3px solid
        #c7d2fe;

    border-top-color:
        #4f46e5;

    border-radius: 50%;

    animation:
        crawlSpin 0.8s linear infinite;
}


@keyframes crawlSpin {

    to {
        transform:
            rotate(360deg);
    }
}


.crawl-label {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #4f46e5;

    margin-bottom: 5px;
}


.crawl-top h2 {
    margin: 0 0 5px;

    font-size: 25px;
}


.crawl-top p {
    margin: 0;

    color: #667085;

    font-size: 13px;

    max-width: 600px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   CIRCLE
========================================================= */

.progress-circle {
    width: 190px;

    height: 190px;

    border-radius: 50%;

    margin: 35px auto 25px;

    display: grid;

    place-items: center;

    background:
        conic-gradient(
            #4f46e5 0deg,
            #c7d2fe 0deg
        );

    position: relative;

    transition:
        background 0.4s ease;
}


.progress-circle::before {
    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    background: #fff;
}


.progress-circle-inner {
    position: relative;

    z-index: 1;

    text-align: center;
}


.progress-circle-inner strong {
    display: block;

    font-size: 38px;

    line-height: 1;

    color: #172033;
}


.progress-circle-inner span {
    display: block;

    margin-top: 8px;

    color: #667085;

    font-size: 12px;
}


/* =========================================================
   BAR
========================================================= */

.progress-track {
    height: 10px;

    background: #eaecf0;

    border-radius: 20px;

    overflow: hidden;
}


#progressFill {
    height: 100%;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #6366f1,
            #4f46e5
        );

    transition:
        width 0.5s ease;

    position: relative;
}


#progressFill::after {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    animation:
        progressShine 1.5s infinite;
}


@keyframes progressShine {

    from {
        transform:
            translateX(-100%);
    }

    to {
        transform:
            translateX(100%);
    }
}


/* =========================================================
   STATUS
========================================================= */

.crawl-status {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin: 15px 0 25px;

    color: #667085;

    font-size: 13px;
}


.pulse-dot {
    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #12b76a;

    box-shadow:
        0 0 0 0
        rgba(18,183,106,.5);

    animation:
        pulse 1.5s infinite;
}


@keyframes pulse {

    70% {
        box-shadow:
            0 0 0 8px
            rgba(18,183,106,0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(18,183,106,0);
    }
}


/* =========================================================
   STATS
========================================================= */

.crawl-screen .stats {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 10px;
}


.crawl-screen .stat {
    background: #fff;

    border: 1px solid #eaecf0;

    border-radius: 12px;

    padding: 16px 8px;

    text-align: center;

    transition:
        transform 0.2s ease;
}


.crawl-screen .stat strong {
    display: block;

    font-size: 23px;

    font-variant-numeric:
        tabular-nums;
}


.crawl-screen .stat span {
    display: block;

    margin-top: 4px;

    color: #667085;

    font-size: 11px;
}


/* =========================================================
   FOOTER STATS
========================================================= */

.crawl-footer {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 15px;
}


.crawl-footer > div {
    background: #f8f9fc;

    border-radius: 10px;

    padding: 13px;

    text-align: center;
}


.crawl-footer span {
    display: block;

    color: #667085;

    font-size: 11px;

    margin-bottom: 5px;
}


.crawl-footer strong {
    font-size: 14px;

    font-variant-numeric:
        tabular-nums;
}


/* =========================================================
   LIVE LOG
========================================================= */

.crawl-screen .live-log {
    margin-top: 18px;

    background: #101828;

    border-radius: 12px;

    padding: 15px;
}


.log-header {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 10px;
}


.live-dot {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #12b76a;

    animation:
        pulse 1.5s infinite;
}


#log {
    color: #98a2b3;



    font-size: 11px;

    min-height: 18px;

    max-height: 42px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.crawl-header-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.close-progress {
    width: 36px;
    height: 36px;

    border: 1px solid #e4e7ec;
    background: #fff;

    border-radius: 10px;

    font-size: 24px;
    line-height: 1;

    color: #667085;

    cursor: pointer;

    transition: .2s ease;
}

.close-progress:hover {
    background: #f2f4f7;
    color: #101828;
}


.completed-badge {
    display: inline-flex;

    align-items: center;

    margin-top: 18px;

    padding: 7px 12px;

    border-radius: 999px;

    background: #ecfdf3;

    color: #027a48;

    font-size: 12px;

    font-weight: 700;
}


.crawl-result {
    margin-top: 25px;
}

.result-divider {
    height: 1px;

    background: #eaecf0;

    margin-bottom: 25px;
}

.crawl-result h3 {
    margin: 0 0 5px;

    font-size: 18px;
}

.crawl-result p {
    margin: 0 0 18px;

    color: #667085;

    font-size: 13px;
}


.secondary-button {
    margin-top: 20px;

    padding: 12px 20px;

    border: 1px solid #d0d5dd;

    background: #fff;

    border-radius: 10px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

.secondary-button:hover {
    background: #f9fafb;
}


.crawl-screen.completed .crawl-spinner {
    animation: none;

    border: 0;

    width: 30px;
    height: 30px;

    position: relative;
}

.crawl-screen.completed .crawl-spinner::after {
    content: "✓";

    display: grid;

    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #12b76a;

    color: #fff;

    font-size: 17px;

    font-weight: 800;
}


.crawl-screen.completed .pulse-dot {
    background: #12b76a;

    animation: none;

    box-shadow: none;
}


.crawl-screen.completed #progressFill {
    background: #12b76a;
}


.crawl-screen.completed .progress-circle {
    background:
        conic-gradient(
            #12b76a 360deg,
            #d1fadf 360deg
        );
}


.active-users {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 14px;

    padding: 7px 12px;

    border-radius: 999px;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    color: #166534;

    font-size: 12px;

    box-shadow:
        0 3px 10px
        rgba(22, 101, 52, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
        display:none;
}

.active-users:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 5px 14px
        rgba(22, 101, 52, 0.10);
}


.active-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #16a34a;

    box-shadow:
        0 0 0 4px
        rgba(22, 163, 74, 0.10);

    animation:
        activePulse 1.8s ease-in-out infinite;
}


@keyframes activePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(.8);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .crawl-screen {
        padding: 22px 16px;
    }


    .crawl-top {
        align-items: flex-start;
    }


    .crawl-icon {
        width: 48px;

        height: 48px;
    }


    .crawl-top h2 {
        font-size: 20px;
    }


    .progress-circle {
        width: 155px;

        height: 155px;
    }


    .progress-circle-inner strong {
        font-size: 32px;
    }


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


    .crawl-footer {
        grid-template-columns:
            1fr;
    }
}

@media (max-width: 700px) {

    .page {
        padding: 25px 12px;
    }

    .header h1 {
        font-size: 30px;
    }

    .grid-2,
    .stats,
    .result-stats {
        grid-template-columns: 1fr 1fr;
    }

    .file {
        flex-direction: column;
        align-items: flex-start;
    }

    .file-actions {
        width: 100%;
    }

    .file-actions a,
    .file-actions button {
        flex: 1;
        text-align: center;
    }
}

/* =========================================================
   DOMMYTOOLS SITEMAP GENERATOR
   PREMIUM UI ENHANCEMENTS
   ========================================================= */

/* ---------------------------------------------------------
   PAGE BACKGROUND
--------------------------------------------------------- */

body {
       background: radial-gradient(circle at 10% 0%, rgb(241 99 99 / 8%), transparent 30%), radial-gradient(circle at 90% 10%, rgb(229 70 70 / 6%), transparent 28%), #fbf6f6;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.header {
    animation: headerEnter 0.7s ease both;
}

@keyframes headerEnter {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.badge {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #eef2ff,
            #e0e7ff
        );

    border: 1px solid #dbe4ff;

    box-shadow:
        0 4px 14px
        rgba(79, 70, 229, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.badge:hover {
    transform: translateY(-2px);

    box-shadow:
        0 7px 20px
        rgba(79, 70, 229, 0.14);
}


.header h1 {
    letter-spacing: -1.5px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #4f46e5
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.header p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   CARDS
--------------------------------------------------------- */

.card,
.action-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(
            228,
            231,
            236,
            0.9
        );

    box-shadow:
        0 2px 5px
        rgba(16, 24, 40, 0.02),
        0 12px 30px
        rgba(16, 24, 40, 0.035);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.card::before,
.action-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background:#e33131;

    transition:
        height 0.3s ease;
}

.card:hover::before {
    height: 100%;
}

.card:hover,
.action-card:hover {
    transform: translateY(-2px);

    border-color: #dfe3ff;

    box-shadow:
        0 5px 10px
        rgba(16, 24, 40, 0.03),
        0 18px 40px
        rgba(79, 70, 229, 0.07);
}


/* ---------------------------------------------------------
   CARD TITLE
--------------------------------------------------------- */

.card-title {
    position: relative;
}

.card-title h2 {
    letter-spacing: -0.3px;
}

.card-title span {
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #df2b2b;
    color: white;
    border: 1px solid #e7e5ff;
    font-size: 11px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.card:hover .card-title span {
    transform: rotate(5deg) scale(1.05);

    background: #eef2ff;
}


/* ---------------------------------------------------------
   INPUTS
--------------------------------------------------------- */

input[type="url"],
input[type="number"],
select,
textarea {
    border:
        1px solid #d8dce5;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fcfcfd
        );

    box-shadow:
        inset 0 1px 2px
        rgba(16, 24, 40, 0.025);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

input[type="url"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
    border-color: #b8bef0;
}

input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #6366f1;

    box-shadow:
        0 0 0 4px
        rgba(99, 102, 241, 0.10),
        0 4px 12px
        rgba(79, 70, 229, 0.06);

    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   RADIO / CHECKBOX CARDS
--------------------------------------------------------- */

.radio-card,
.check-card {
    position: relative;

    overflow: hidden;

    background: #fff;

    border:
        1px solid #e7e9ef;

    box-shadow:
        0 1px 2px
        rgba(16, 24, 40, 0.02);

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.radio-card::after,
.check-card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #e23030;

    transform:
        scaleY(0);

    transform-origin:
        center;

    transition:
        transform 0.2s ease;
}

.radio-card:hover,
.check-card:hover {
    background: #fafaff;

    border-color: #cfd3ff;

    transform:
        translateX(2px);

    box-shadow:
        0 5px 14px
        rgba(79, 70, 229, 0.06);
}

.radio-card:has(input:checked),
.check-card:has(input:checked) {
      background: linear-gradient(90deg, #e5353524, #fff);
    border-color: #f8aeae;

    box-shadow:
        0 4px 14px
        rgba(79, 70, 229, 0.08);
}

.radio-card:has(input:checked)::after,
.check-card:has(input:checked)::after {
    transform:
        scaleY(1);
}


/* ---------------------------------------------------------
   CUSTOM CHECKBOX / RADIO
--------------------------------------------------------- */

.radio-card input,
.check-card input {
    appearance: none;

    width: 18px;
    height: 18px;

    margin: 2px 0 0;

    flex-shrink: 0;

    border:
        2px solid #c8ccd6;

    background: #fff;

    transition:
        all 0.2s ease;
}

.radio-card input {
    border-radius: 50%;
}

.check-card input {
    border-radius: 5px;
}

.radio-card input:checked {
    border-color: #e33131;
    box-shadow: inset 0 0 0 4px #fff;
    background: #e22f2f;
}

.check-card input:checked {
    border-color: red;

    background: red;

    position: relative;
}

.check-card input:checked::after {
    content: "";

    position: absolute;

    left: 4px;
    top: 1px;

    width: 5px;
    height: 9px;

    border:
        solid #fff;

    border-width:
        0 2px 2px 0;

    transform:
        rotate(45deg);
}


/* ---------------------------------------------------------
   PRIMARY BUTTON
--------------------------------------------------------- */

.primary-button {
    position: relative;

    overflow: hidden;

    min-height: 54px;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #4f46e5
        );

    box-shadow:
        0 8px 20px
        rgba(79, 70, 229, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.primary-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.25),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.55s ease;
}

.primary-button:hover::before {
    left: 140%;
}

.primary-button:hover {
    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #4338ca
        );

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 26px
        rgba(79, 70, 229, 0.28);
}

.primary-button:active {
    transform:
        translateY(0)
        scale(0.99);

    box-shadow:
        0 5px 12px
        rgba(79, 70, 229, 0.18);
}

.primary-button:disabled {
    background:
        linear-gradient(
            135deg,
            #818cf8,
            #6366f1
        );

    box-shadow: none;
}


/* ---------------------------------------------------------
   ACTION CARD
--------------------------------------------------------- */

.action-card {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8f8ff
        );
}


/* ---------------------------------------------------------
   CRAWL SCREEN
--------------------------------------------------------- */

.crawl-screen {
    position: relative;

    border:
        1px solid #dfe3ff;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(99, 102, 241, 0.10),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f8f9ff
        );

    box-shadow:
        0 20px 60px
        rgba(79, 70, 229, 0.09);
}


/* subtle animated background */

.crawl-screen::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -180px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(99, 102, 241, 0.07);

    filter: blur(3px);

    pointer-events: none;

    animation:
        floatingGlow 5s ease-in-out infinite;
}

@keyframes floatingGlow {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(20px)
            scale(1.08);
    }
}


/* ---------------------------------------------------------
   CRAWL ICON
--------------------------------------------------------- */

.crawl-icon {
    background:
        linear-gradient(
            135deg,
            #eef2ff,
            #e0e7ff
        );

    border:
        1px solid #dce3ff;

    box-shadow:
        0 8px 20px
        rgba(79, 70, 229, 0.10);

    animation:
        iconFloat 2.5s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* ---------------------------------------------------------
   PROGRESS CIRCLE
--------------------------------------------------------- */

.progress-circle {
    box-shadow:
        0 10px 35px
        rgba(79, 70, 229, 0.10);

    transition:
        background 0.5s ease,
        transform 0.25s ease;
}

.progress-circle:hover {
    transform:
        scale(1.025);
}


/* ---------------------------------------------------------
   PROGRESS BAR
--------------------------------------------------------- */

.progress-track {
    height: 12px;

    background:
        #e8eaf1;

    box-shadow:
        inset 0 1px 3px
        rgba(16, 24, 40, 0.08);
}

#progressFill {
    background:
        linear-gradient(
            90deg,
            #6366f1,
            #8b5cf6,
            #4f46e5
        );

    box-shadow:
        0 0 12px
        rgba(99, 102, 241, 0.28);
}


/* ---------------------------------------------------------
   STATS
--------------------------------------------------------- */

.crawl-screen .stat {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafaff
        );

    border:
        1px solid #e5e7ef;

    box-shadow:
        0 2px 5px
        rgba(16, 24, 40, 0.025);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.crawl-screen .stat::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #6366f1,
            #8b5cf6
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform 0.3s ease;
}

.crawl-screen .stat:hover {
    transform:
        translateY(-3px);

    border-color:
        #cfd3ff;

    box-shadow:
        0 8px 20px
        rgba(79, 70, 229, 0.08);
}

.crawl-screen .stat:hover::before {
    transform:
        scaleX(1);
}

.crawl-screen .stat strong {
    color: #172033;
}


/* ---------------------------------------------------------
   FOOTER STATS
--------------------------------------------------------- */

.crawl-footer > div {
    border:
        1px solid #e7e9f0;

    background:
        linear-gradient(
            180deg,
            #fafaff,
            #f5f6fa
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.crawl-footer > div:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 6px 15px
        rgba(16, 24, 40, 0.05);
}


/* ---------------------------------------------------------
   LIVE LOG
--------------------------------------------------------- */

.crawl-screen .live-log {
    border:
        1px solid #27334d;

    background:
        linear-gradient(
            145deg,
            #101828,
            #111c31
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,0.03),
        0 8px 20px
        rgba(16,24,40,0.12);
}

.log-header {
    color: #f8fafc;
}

.live-dot {
    box-shadow:
        0 0 10px
        rgba(18,183,106,0.65);
}


/* ---------------------------------------------------------
   RESULT FILES
--------------------------------------------------------- */

.file {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fafaff
        );

    border:
        1px solid #e5e7ef;

    box-shadow:
        0 2px 6px
        rgba(16,24,40,0.025);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.file:hover {
    transform:
        translateY(-2px);

    border-color:
        #cfd3ff;

    box-shadow:
        0 8px 22px
        rgba(79,70,229,0.07);
}


.file-actions a,
.file-actions button {
    border:
        1px solid #e0e4ff;

    background:
        #f4f5ff;

    transition:
        all 0.2s ease;
}

.file-actions a:hover,
.file-actions button:hover {
    background:
        #4f46e5;

    border-color:
        #4f46e5;

    color:
        #fff;

    transform:
        translateY(-1px);

    box-shadow:
        0 5px 12px
        rgba(79,70,229,0.18);
}


/* ---------------------------------------------------------
   COMPLETED STATE
--------------------------------------------------------- */

.crawl-screen.completed {
    border-color:
        #b7ebcc;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(18,183,106,0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f8fffb
        );

    box-shadow:
        0 20px 55px
        rgba(18,183,106,0.08);
}


.crawl-screen.completed .crawl-label {
    color:
        #039855;
}


/* ---------------------------------------------------------
   CLOSE BUTTON
--------------------------------------------------------- */

.close-progress {
    background:
        rgba(255,255,255,0.85);

    backdrop-filter:
        blur(8px);

    border:
        1px solid #e1e4eb;

    box-shadow:
        0 3px 8px
        rgba(16,24,40,0.04);

    transition:
        all 0.2s ease;
}

.close-progress:hover {
    background:
        #fff;

    border-color:
        #cfd3dd;

    transform:
        rotate(90deg);

    box-shadow:
        0 5px 12px
        rgba(16,24,40,0.08);
}


/* ---------------------------------------------------------
   COMPLETED BADGE
--------------------------------------------------------- */

.completed-badge {
    border:
        1px solid #abefc6;

    box-shadow:
        0 4px 12px
        rgba(18,183,106,0.08);

    animation:
        successPop 0.4s ease both;
}

@keyframes successPop {

    from {
        opacity: 0;
        transform:
            scale(0.85);
    }

    to {
        opacity: 1;
        transform:
            scale(1);
    }
}


/* ---------------------------------------------------------
   GENERATE ANOTHER BUTTON
--------------------------------------------------------- */

.secondary-button {
    border:
        1px solid #d8dcff;

    background:
        linear-gradient(
            180deg,
            #fff,
            #f7f7ff
        );

    color:
        #4338ca;

    box-shadow:
        0 3px 8px
        rgba(79,70,229,0.05);

    transition:
        all 0.2s ease;
}

.secondary-button:hover {
    border-color:
        #aeb4f8;

    background:
        #eef2ff;

    color:
        #3730a3;

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 16px
        rgba(79,70,229,0.10);
}

.secondary-button:active {
    transform:
        translateY(0);
}


/* ---------------------------------------------------------
   ERROR
--------------------------------------------------------- */

.error {
    animation:
        errorShake 0.35s ease;
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}


/* ---------------------------------------------------------
   RESULT SECTION
--------------------------------------------------------- */

.result-stats > div {
    border:
        1px solid #e7e9f0;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafaff
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.result-stats > div:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 8px 20px
        rgba(79,70,229,0.07);
}


/* ---------------------------------------------------------
   SUCCESS ICON
--------------------------------------------------------- */

.success-icon {
    box-shadow:
        0 7px 18px
        rgba(18,183,106,0.15);

    animation:
        successPop 0.45s ease both;
}


/* ---------------------------------------------------------
   SCROLLBAR
--------------------------------------------------------- */

#log::-webkit-scrollbar {
    width: 6px;
}

#log::-webkit-scrollbar-track {
    background: transparent;
}

#log::-webkit-scrollbar-thumb {
    background: #344054;

    border-radius: 10px;
}

#log::-webkit-scrollbar-thumb:hover {
    background: #475467;
}


/* ---------------------------------------------------------
   MOBILE IMPROVEMENTS
--------------------------------------------------------- */

@media (max-width: 700px) {

    .page {
        padding:
            25px 12px 40px;
    }

    .header h1 {
        letter-spacing: -0.8px;
    }

    .card,
    .action-card {
        padding: 20px 17px;
        border-radius: 14px;
    }

    .crawl-screen {
        border-radius: 17px;
        padding: 20px 15px;
    }

    .crawl-header-actions {
        gap: 10px;
    }

    .close-progress {
        width: 34px;
        height: 34px;
    }

    .progress-circle {
        margin-top: 25px;
        margin-bottom: 22px;
    }

    .file-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .file-actions a,
    .file-actions button {
        width: 100%;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}



.dt-banner{
  position:relative;
  overflow:hidden;
  padding:10px 20px;
 padding-top:10px;
  color:black;
  text-align:center;
  border-radius:24px;
  margin:10px;
  isolation:isolate;
}

/* Animated Background */
.dt-banner__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:radial-gradient(1200px 600px at 50% -10%, #7c3aed55, transparent 60%),
             radial-gradient(800px 400px at 80% 120%, #06b6d455, transparent 60%);
  animation:dt-bgShift 12s ease-in-out infinite alternate;
}
@keyframes dt-bgShift{0%{transform:scale(1) rotate(0deg)}100%{transform:scale(1.1) rotate(3deg)}}
.dt-grid{
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(124,58,237,.15) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(124,58,237,.15) 1px, transparent 1px);
  background-size:40px 40px;
  opacity:.4;
  animation:dt-gridMove 20s linear infinite;
}
@keyframes dt-gridMove{0%{transform:translate(0,0)}100%{transform:translate(40px,40px)}}

/* Glow Dots */
.dt-glow{position:absolute;border-radius:50%;filter:blur(60px);opacity:.6;animation:dt-float 8s ease-in-out infinite;}
.dt-glow-1{width:300px;height:300px;background:#7c3aed;top:-100px;left:-100px;animation-delay:0s}
.dt-glow-2{width:250px;height:250px;background:#06b6d4;bottom:-80px;right:-80px;animation-delay:2s}
.dt-glow-3{width:200px;height:200px;background:#ec4899;top:40%;left:60%;animation-delay:4s}
@keyframes dt-float{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-30px) scale(1.1)}}

/* Content */
.dt-banner__content{position:relative;z-index:2;max-width:900px;margin:0 auto;}

/* Badge */
.dt-badge{
  display:inline-flex;align-items:center;gap:8px;padding:8px 16px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(12px);border-radius:50px;font-size:12px;font-weight:600;
  letter-spacing:1.5px;margin-bottom:24px;animation:dt-fadeInDown .8s ease;
}
.dt-badge__dot{width:8px;height:8px;background:#22c55e;border-radius:50%;box-shadow:0 0 10px #22c55e;animation:dt-pulse 2s infinite;}
@keyframes dt-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.3)}}

/* Title */
.dt-title{font-size:clamp(36px, 6vw, 64px);font-weight:800;line-height:1.1;margin:0 0 20px;animation:dt-fadeInUp .8s ease .2s both;}
.dt-title__line{display:block}
.dt-gradient-text{
  background:linear-gradient(90deg, #e73737, #ff5b5b);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:dt-shine 4s linear infinite;
}
@keyframes dt-shine{to{background-position:200% center}}

/* Subtitle */
.dt-subtitle{font-size:clamp(16px, 2.5vw, 20px);color:black;line-height:1.6;margin-bottom:28px;animation:dt-fadeInUp .8s ease .4s both;}

/* NEW: Features */
.dt-features{
  display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-bottom:32px;
  animation:dt-fadeInUp .8s ease .5s both;
}
.dt-feature{
  display:flex;align-items:center;gap:8px;padding:10px 16px;
  background: linear-gradient(90deg, #e73737, #ff5b5b);
    color: #fff;border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);border-radius:12px;font-size:14px;font-weight:500;
  transition:.3s;
}
.dt-feature:hover{transform:translateY(-3px);background:rgba(124,58,237,.2);border-color:#7c3aed}
.dt-feature svg{color:#fff;flex-shrink:0}

/* Button */
.dt-btn{
  display:inline-flex;align-items:center;gap:10px;padding:14px 28px;border:none;
  border-radius:14px;font-size:16px;font-weight:600;cursor:pointer;transition:.3s;
  animation:dt-fadeInUp .8s ease .6s both;
}
.dt-btn-primary{
  background:linear-gradient(90deg, #e73737, #ff5b5b);;color:#fff;
 
}
.dt-btn-primary:hover{transform:translateY(-3px);}

@keyframes dt-fadeInDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}
@keyframes dt-fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* Mobile */
@media(max-width:768px){
  .dt-banner{padding:70px 20px;border-radius:18px;margin:12px}
  .dt-features{gap:8px}
  .dt-feature{font-size:13px;padding:8px 12px}
}

/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

.crawl-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.cancel-crawl-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 38px;

    padding: 0 14px;

    border: 1px solid #fecdca;

    border-radius: 9px;

    background: #fff;

    color: #b42318;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all .2s ease;
}


.cancel-crawl-button:hover {
    background: #fef3f2;

    border-color: #fda29b;

    transform:
        translateY(-1px);

    box-shadow:
        0 5px 12px
        rgba(180, 35, 24, .10);
}


.cancel-crawl-button:active {
    transform:
        translateY(0);
}


.cancel-crawl-button:disabled {
    opacity: .65;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


/*
|--------------------------------------------------------------------------
| Cancelled state
|--------------------------------------------------------------------------
*/

.crawl-screen.cancelled {
    border-color: #fecdca;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(240, 68, 56, .06),
            transparent 35%
        ),
        #fff;
}


.crawl-screen.cancelled
#progressFill {
    background:
        #f04438;
}


.crawl-screen.cancelled
.crawl-status {
    color: #b42318;
}


.crawl-screen.cancelled
.pulse-dot {
    background: #f04438;

    animation: none;

    box-shadow: none;
}


.crawl-screen.cancelled
.cancel-crawl-button {
    background: #fef3f2;

    border-color: #fecdca;

    color: #b42318;
}

/* =========================================================
   LIVE ACTIVE SITEMAP GENERATIONS
   ========================================================= */

.active-users-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 16px;

    padding: 8px 13px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.85);

    border:
        1px solid #e4e7ec;

    color: #475467;

    font-size: 12px;

    font-weight: 500;

    box-shadow:
        0 4px 14px
        rgba(16, 24, 40, 0.05);

    backdrop-filter:
        blur(8px);

    transition:
        all .25s ease;
}


.active-users-badge:hover {
    transform:
        translateY(-2px);

    border-color:
        #d0d5dd;

    box-shadow:
        0 7px 20px
        rgba(16, 24, 40, 0.08);
}


/* Green status dot */

.active-users-dot {
    position: relative;

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #12b76a;

    box-shadow:
        0 0 0 4px
        rgba(18, 183, 106, .10);

    animation:
        activeUsersPulse 2s ease-in-out infinite;
}


.active-users-dot::after {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    border:
        1px solid
        rgba(18, 183, 106, .25);

    animation:
        activeUsersRing 2s ease-out infinite;
}


@keyframes activeUsersPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .65;
        transform: scale(.82);
    }

}


@keyframes activeUsersRing {

    0% {
        opacity: .7;
        transform: scale(.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }

}


.active-users-count {
    color: #101828;

    font-weight: 800;

    font-variant-numeric:
        tabular-nums;
}


.active-users-text {
    color: #667085;
}


/* When server is busy */

.active-users-badge.busy {
    background:
        #fffbeb;

    border-color:
        #fedf89;
}


.active-users-badge.busy
.active-users-dot {
    background:
        #f79009;

    box-shadow:
        0 0 0 4px
        rgba(247, 144, 9, .10);
}


/* When maximum capacity is reached */

.active-users-badge.full {
    background:
        #fef3f2;

    border-color:
        #fecdca;
}


.active-users-badge.full
.active-users-dot {
    background:
        #f04438;

    box-shadow:
        0 0 0 4px
        rgba(240, 68, 56, .10);
}


/* Mobile */

@media (max-width: 600px) {

    .active-users-badge {
        margin-top: 14px;

        padding:
            7px 11px;

        font-size: 11px;
    }

}

/* =========================================================
   SERVER CAPACITY
   ========================================================= */

.server-capacity {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 14px 16px;

    margin-bottom: 14px;

    border:
        1px solid #e4e7ec;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fafbff
        );

    transition:
        all .25s ease;
}


.capacity-status {
    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;
}


.capacity-status > div {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}


.capacity-status strong {
    color: #344054;

    font-size: 13px;

    font-weight: 700;
}


.capacity-status span {
    color: #667085;

    font-size: 11px;

    line-height: 1.4;
}


.capacity-count {
    display: flex;

    align-items: baseline;

    gap: 4px;

    flex-shrink: 0;
}


.capacity-count strong {
    color: #101828;

    font-size: 17px;

    font-variant-numeric:
        tabular-nums;
}


.capacity-count span {
    color: #98a2b3;

    font-size: 10px;
}


/* Status dot */

.capacity-dot {
    position: relative;

    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #12b76a;

    box-shadow:
        0 0 0 4px
        rgba(18, 183, 106, .10);
}


.capacity-dot::after {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    border:
        1px solid
        rgba(18, 183, 106, .22);

    animation:
        capacityPulse 2s ease-out infinite;
}


@keyframes capacityPulse {

    0% {
        opacity: .8;

        transform:
            scale(.7);
    }

    100% {
        opacity: 0;

        transform:
            scale(1.7);
    }

}


/* =========================================================
   BUSY STATE
   ========================================================= */

.server-capacity.busy {
    background:
        linear-gradient(
            135deg,
            #fffdf7,
            #fffbeb
        );

    border-color:
        #fedf89;
}


.server-capacity.busy
.capacity-dot {
    background:
        #f79009;

    box-shadow:
        0 0 0 4px
        rgba(247, 144, 9, .10);
}


.server-capacity.busy
.capacity-dot::after {
    border-color:
        rgba(247, 144, 9, .22);
}


.server-capacity.busy
.capacity-status strong {
    color:
        #93370d;
}


/* =========================================================
   FULL STATE
   ========================================================= */

.server-capacity.full {
    background:
        linear-gradient(
            135deg,
            #fffafa,
            #fef3f2
        );

    border-color:
        #fecdca;
}


.server-capacity.full
.capacity-dot {
    background:
        #f04438;

    box-shadow:
        0 0 0 4px
        rgba(240, 68, 56, .10);
}


.server-capacity.full
.capacity-dot::after {
    border-color:
        rgba(240, 68, 56, .20);
}


.server-capacity.full
.capacity-status strong {
    color:
        #b42318;
}


.server-capacity.full
.capacity-status span {
    color:
        #d92d20;
}


/* =========================================================
   FULL MESSAGE
   ========================================================= */

.capacity-full-message {
    margin-top: 10px;

    padding: 9px 12px;

    border-radius: 8px;

    background:
        #fef3f2;

    border:
        1px solid #fecdca;

    color:
        #b42318;

    font-size: 11px;

    line-height: 1.5;

    text-align: center;

    animation:
        capacityMessageIn .25s ease both;
}


@keyframes capacityMessageIn {

    from {
        opacity: 0;

        transform:
            translateY(-3px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   BUTTON
   ========================================================= */

.primary-button {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}


.button-icon {
    font-size: 17px;

    line-height: 1;

    transition:
        transform .2s ease;
}


.primary-button:hover
.button-icon {
    transform:
        translate(2px, -2px);
}


.primary-button:disabled {
    cursor:
        not-allowed;

    opacity:
        .55;

    transform:
        none !important;

    box-shadow:
        none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .server-capacity {
        padding: 12px;

        gap: 10px;
    }


    .capacity-status strong {
        font-size: 12px;
    }


    .capacity-status span {
        font-size: 10px;
    }


    .capacity-count strong {
        font-size: 15px;
    }

}



.dommy-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  border-bottom: none;
  backdrop-filter: blur(12px);
}

.dommy-nav-inner {
  width: min(1800px,100%);
  min-height:68px;
  margin:auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.dommy-logo {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#111827;
}

.dommy-logo-mark {
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(135deg,#ef4444,#dc2626);
  color:white;
  font-weight:900;
}

.dommy-logo-text {
  font-size:21px;
  font-weight:850;
}


.dommy-nav-links {
  display:flex;
  align-items:center;
  gap:8px;
}


.dommy-nav-link {
  padding:10px 13px;
  border-radius:10px;
  color:#64748b;
  text-decoration:none;
  font-size:14px;
  font-weight:650;
}


.dommy-nav-link:hover,
.dommy-nav-link.active {
  background:#fef2f2;
  color:#dc2626;
}


/* Dropdown */

.dommy-dropdown {
  position:;
}


.dommy-dropdown-btn {
  border:none;
  background:none;
  cursor:pointer;
  padding:10px 13px;
  border-radius:10px;
  color:#64748b;
  font-size:14px;
  font-weight:650;
}


.dommy-dropdown-btn:hover {
  background:#f8fafc;
  color:#111827;
}


.dommy-dropdown-menu {

  display:none;
  position:absolute;
  top:55px;
  left:10px;
padding-top:20px;
  min-width:230px;

  background:white;
  border:1px solid #e5e7eb;
  border-radius:12px;
    width: calc(100vw - 50px);
  
    flex-wrap: wrap;
    gap: 10px;
  padding:8px;
justify-content:center;
align-items:baseline;
padding-top:30px;
min-height:100px;
  box-shadow:0 15px 30px rgba(0,0,0,.1);
 
}


.dommy-dropdown:hover .dommy-dropdown-menu {
  display:flex;
}


.dommy-dropdown-item {

    display: flex;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    background: #fff4f4;
    font-weight: 500;
}


.dommy-dropdown-item:hover,
.dommy-dropdown-item.active {

 background:#fef2f2;
 color:#dc2626;

}


/* Mobile */

.dommy-mobile-btn {
 display:none;
 width:42px;
 height:42px;
 border:1px solid #e2e8f0;
 border-radius:10px;
 background:white;
 font-size:20px;
}


@media(max-width:900px){

.dommy-mobile-btn{
 display:grid;
 place-items:center;
}


.dommy-nav-links{

 display:none;
 position:absolute;

 top:62px;
 left:0;
 right:0;

 background:white;

 flex-direction:column;
 align-items:stretch;

 padding:15px;

}


.dommy-nav-links.open{
 display:flex;
}


.dommy-dropdown-menu{

 position:static;
 display:none;

 box-shadow:none;
 border:none;

}


.dommy-dropdown:hover .dommy-dropdown-menu{

 display:block;

}

}
