/* Domain araç sayfaları — Transfer & Whois */
.dt-page { padding-bottom: 4rem; }

.dt-nav {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    padding: 1rem 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0;
}
.dt-nav a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.65rem 1rem; border-radius: 0.75rem 0.75rem 0 0;
    font-size: 12px; font-weight: 700; color: rgba(148, 163, 184, 0.85);
    text-decoration: none; border: 1px solid transparent;
    border-bottom: none; transition: color 0.2s, background 0.2s;
}
.dt-nav a .icon { width: 1rem; height: 1rem; opacity: 0.7; }
.dt-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.04); }
.dt-nav a.is-active {
    color: #ff8c00; background: rgba(28, 34, 48, 0.95);
    border-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(28, 34, 48, 0.95);
    margin-bottom: -1px; position: relative; z-index: 2;
}

.dt-hero {
    position: relative; overflow: hidden;
    padding: 2.5rem 0 3.5rem;
    background: linear-gradient(160deg, #0f1219 0%, #131722 45%, #1a1520 100%);
}
.dt-hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(255, 140, 0, 0.14), transparent),
        radial-gradient(ellipse 50% 40% at 5% 80%, rgba(255, 140, 0, 0.06), transparent);
    pointer-events: none;
}
.dt-hero__grid {
    display: grid; gap: 2rem; align-items: start;
    position: relative; z-index: 1;
}
@media (min-width: 992px) {
    .dt-hero__grid { grid-template-columns: 1fr 1.15fr; gap: 2.5rem; }
}

.dt-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.85rem; margin-bottom: 1rem;
    font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
    color: #ff8c00; background: rgba(255, 140, 0, 0.1); border-radius: 999px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}
.dt-hero__title {
    margin: 0 0 0.75rem; font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1.1;
}
.dt-hero__sub {
    margin: 0 0 1.5rem; font-size: 1rem; line-height: 1.65;
    color: rgba(148, 163, 184, 0.92); max-width: 28rem;
}
.dt-hero__points {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 0.65rem;
}
.dt-hero__points li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 13px; font-weight: 600; color: rgba(226, 232, 240, 0.88);
}
.dt-hero__points .icon-wrap {
    flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 6px;
    display: grid; place-items: center; background: rgba(74, 222, 128, 0.12); color: #4ade80;
}
.dt-hero__points .icon { width: 0.85rem; height: 0.85rem; }

.dt-panel {
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(28, 34, 48, 0.98), rgba(19, 23, 34, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 140, 0, 0.08) inset;
    overflow: hidden;
}
.dt-panel__head {
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}
.dt-panel__head strong {
    display: block; font-size: 14px; font-weight: 800; color: #fff;
}
.dt-panel__head span {
    font-size: 12px; color: rgba(148, 163, 184, 0.8);
}
.dt-panel__body { padding: 1.35rem; }

.dt-form { display: flex; flex-direction: column; gap: 0.85rem; }
.dt-field label {
    display: block; margin-bottom: 0.35rem;
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.12em; color: rgba(255, 140, 0, 0.85);
}
.dt-field input {
    width: 100%; padding: 0.95rem 1.1rem; border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.85rem; background: rgba(0, 0, 0, 0.35);
    color: #fff; font-size: 1rem; font-weight: 600; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.dt-field input:focus {
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
}
.dt-field input::placeholder { color: rgba(255, 255, 255, 0.28); font-weight: 500; }

.dt-form__row {
    display: grid; gap: 0.85rem;
}
@media (min-width: 520px) {
    .dt-form__row--2 { grid-template-columns: 1fr 1fr; }
}

.dt-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 1.5rem; border: none; border-radius: 0.85rem;
    background: linear-gradient(135deg, #ffb347, #ff8c00);
    color: #131722; font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dt-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35); }
.dt-btn .icon { width: 1.1rem; height: 1.1rem; }
.dt-btn--ghost {
    background: transparent; color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.35);
}
.dt-btn--ghost:hover { background: rgba(255, 140, 0, 0.08); box-shadow: none; transform: none; }

.dt-form__hint {
    margin: 0; font-size: 11px; line-height: 1.5;
    color: rgba(148, 163, 184, 0.75);
}
.dt-form__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }

/* Whois sonuç */
.dt-result {
    display: none; margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dt-result.is-visible { display: block; }
.dt-result__status {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.35rem 0.75rem; margin-bottom: 1rem; border-radius: 999px;
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
}
.dt-result__status--ok {
    background: rgba(74, 222, 128, 0.12); color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}
.dt-result__status--busy {
    background: rgba(255, 140, 0, 0.12); color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.25);
}
.dt-result__domain {
    margin: 0 0 1rem; font-size: 1.35rem; font-weight: 900; color: #fff;
    letter-spacing: -0.03em;
}
.dt-result__grid {
    display: grid; gap: 0.65rem;
}
@media (min-width: 480px) {
    .dt-result__grid { grid-template-columns: repeat(2, 1fr); }
}
.dt-result__item {
    padding: 0.75rem 0.9rem; border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.05);
}
.dt-result__item small {
    display: block; font-size: 9px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(148, 163, 184, 0.7); margin-bottom: 0.2rem;
}
.dt-result__item b {
    display: block; font-size: 12px; font-weight: 700; color: #e2e8f0;
    word-break: break-word;
}
.dt-result__ns {
    margin-top: 0.75rem; padding: 0.85rem; border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.2); font-size: 12px; font-weight: 600;
    color: rgba(203, 213, 225, 0.9); line-height: 1.6;
}
.dt-result__ns code { color: #ff8c00; font-weight: 700; }

/* Transfer fiyat şeridi */
.dt-tld-strip {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
    padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dt-tld-chip {
    flex: 1; min-width: 100px; padding: 0.65rem 0.75rem; border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.dt-tld-chip b { display: block; font-size: 13px; font-weight: 800; color: #fff; }
.dt-tld-chip span { font-size: 11px; font-weight: 700; color: #ff8c00; }
.dt-tld-chip small { display: block; font-size: 9px; color: rgba(148, 163, 184, 0.6); margin-top: 2px; }

/* Timeline */
.dt-timeline {
    display: grid; gap: 1rem; counter-reset: tl;
}
@media (min-width: 768px) {
    .dt-timeline { grid-template-columns: repeat(4, 1fr); }
}
.dt-timeline__item {
    position: relative; padding: 1.15rem 1rem 1rem;
    border-radius: 1rem; background: rgba(28, 34, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
    .dt-timeline__item:not(:last-child)::after {
        content: ""; position: absolute; top: 1.65rem; right: -0.55rem;
        width: 1rem; height: 2px; background: rgba(255, 140, 0, 0.35);
    }
}
.dt-timeline__num {
    display: inline-flex; width: 1.75rem; height: 1.75rem; margin-bottom: 0.65rem;
    align-items: center; justify-content: center; border-radius: 8px;
    background: #ff8c00; color: #131722; font-size: 11px; font-weight: 900;
}
.dt-timeline__item h3 { margin: 0 0 0.3rem; font-size: 13px; font-weight: 800; color: #fff; }
.dt-timeline__item p { margin: 0; font-size: 11px; color: rgba(148, 163, 184, 0.85); line-height: 1.45; }

/* Checklist grid */
.dt-check-grid {
    display: grid; gap: 0.75rem;
}
@media (min-width: 640px) {
    .dt-check-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .dt-check-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.dt-check {
    display: flex; gap: 0.75rem; padding: 1rem;
    border-radius: 1rem; background: rgba(28, 34, 48, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.dt-check__icon {
    flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 8px;
    display: grid; place-items: center; background: rgba(255, 140, 0, 0.12); color: #ff8c00;
}
.dt-check strong { display: block; font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
.dt-check p { margin: 0; font-size: 12px; color: rgba(148, 163, 184, 0.85); line-height: 1.45; }

.dt-section { padding: 3rem 0; }
.dt-section--alt { background: rgba(0, 0, 0, 0.22); }
.dt-section__head { margin-bottom: 1.75rem; }
.dt-section__head h2 {
    margin: 0 0 0.4rem; font-size: 1.35rem; font-weight: 900; color: #fff;
    letter-spacing: -0.03em;
}
.dt-section__head p {
    margin: 0; font-size: 14px; color: rgba(148, 163, 184, 0.85); max-width: 36rem;
}

.dt-notice {
    display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
    gap: 1rem; padding: 1.25rem 1.5rem; border-radius: 1rem;
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), rgba(28, 34, 48, 0.9));
    border: 1px solid rgba(255, 140, 0, 0.22);
}
.dt-notice__text strong { display: block; color: #ff8c00; font-size: 14px; margin-bottom: 0.35rem; }
.dt-notice__text p { margin: 0; font-size: 13px; color: rgba(203, 213, 225, 0.9); line-height: 1.55; max-width: 40rem; }
.dt-notice a {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 12px; font-weight: 700; color: #ff8c00; text-decoration: none; white-space: nowrap;
}
.dt-notice a:hover { text-decoration: underline; }
.dt-notice__links {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem;
}
.dt-notice__links a {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 12px; font-weight: 700; color: #ff8c00; text-decoration: none; white-space: nowrap;
}
.dt-notice__links a:hover { text-decoration: underline; }

.dt-trabis-whois {
    display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
    gap: 0.85rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(74, 222, 128, 0.28);
    background: rgba(74, 222, 128, 0.08);
}
.dt-trabis-whois__text strong {
    display: block; color: #86efac; font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem;
}
.dt-trabis-whois__text p {
    margin: 0; font-size: 12px; line-height: 1.55; color: rgba(203, 213, 225, 0.92); max-width: 36rem;
}
.dt-trabis-whois__btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.55rem 0.9rem; border-radius: 0.55rem;
    font-size: 11px; font-weight: 800; color: #131722; text-decoration: none;
    background: #4ade80; white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.dt-trabis-whois__btn:hover { background: #86efac; transform: translateY(-1px); }
.dt-trabis-whois--banner {
    padding: 1.15rem 1.25rem;
}
.dt-trabis-whois--compact {
    margin-top: 0.85rem; padding: 0.85rem 1rem;
}
.dt-trabis-whois--inline {
    display: block; margin: 0.65rem 0 0; padding: 0;
    border: none; background: transparent;
    font-size: 12px; line-height: 1.55; color: rgba(187, 247, 208, 0.95);
}
.dt-trabis-whois--inline .icon { color: #4ade80; vertical-align: -2px; margin-right: 0.25rem; }
.dt-trabis-whois--inline a {
    color: #86efac; font-weight: 800; text-decoration: underline; text-underline-offset: 2px;
}
.dt-trabis-whois--inline a:hover { color: #bbf7d0; }

.dt-faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    width: 100%;
}
@media (min-width: 900px) {
    .dt-faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dt-faq__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.dt-faq__item {
    border-radius: 1rem; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(28, 34, 48, 0.7);
}
.dt-faq__item summary {
    padding: 1rem 1.15rem; cursor: pointer; list-style: none;
    font-size: 14px; font-weight: 800; color: #fff;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.dt-faq__item summary::-webkit-details-marker { display: none; }
.dt-faq__item summary::after {
    content: "+"; font-size: 1.1rem; font-weight: 400; color: #ff8c00;
}
.dt-faq__item[open] summary::after { content: "−"; }
.dt-faq__item p {
    margin: 0; padding: 0 1.15rem 1rem;
    font-size: 13px; color: rgba(148, 163, 184, 0.9); line-height: 1.6;
}

.dt-compare {
    display: grid; gap: 1rem;
}
@media (min-width: 768px) {
    .dt-compare { grid-template-columns: repeat(3, 1fr); }
}
.dt-compare__card {
    padding: 1.25rem; border-radius: 1rem;
    background: rgba(28, 34, 48, 0.8); border: 1px solid rgba(255, 255, 255, 0.07);
}
.dt-compare__card h3 {
    margin: 0 0 0.5rem; font-size: 14px; font-weight: 800; color: #fff;
}
.dt-compare__card p {
    margin: 0; font-size: 12px; color: rgba(148, 163, 184, 0.85); line-height: 1.5;
}
.dt-compare__tag {
    display: inline-block; margin-bottom: 0.65rem; padding: 0.2rem 0.5rem;
    font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
    border-radius: 4px;
}
.dt-compare__tag--green { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.dt-compare__tag--orange { background: rgba(255, 140, 0, 0.15); color: #ff8c00; }
.dt-compare__tag--gray { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }

.dt-cta {
    margin-top: 2rem; padding: 1.75rem 2rem; border-radius: 1.25rem;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(28, 34, 48, 0.95));
    border: 1px solid rgba(255, 140, 0, 0.25);
}
.dt-cta strong { display: block; font-size: 1.15rem; font-weight: 900; color: #fff; }
.dt-cta span { font-size: 13px; color: rgba(148, 163, 184, 0.85); }

.dt-loading {
    display: none; align-items: center; gap: 0.5rem;
    font-size: 12px; font-weight: 600; color: #ff8c00;
}
.dt-loading.is-visible { display: inline-flex; }
.dt-loading__dot {
    width: 6px; height: 6px; border-radius: 50%; background: #ff8c00;
    animation: dt-pulse 1s ease infinite;
}
.dt-loading__dot:nth-child(2) { animation-delay: 0.15s; }
.dt-loading__dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes dt-pulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1); }
}

.dt-tld-strip--wide .dt-tld-chip { min-width: 120px; }

.dt-search-results {
    display: none; flex-direction: column; gap: 0.5rem;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dt-search-results.is-visible { display: flex; }
.dt-search-row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 0.75rem; padding: 0.85rem 1rem; border-radius: 0.85rem;
    background: rgba(0, 0, 0, 0.28); border: 1px solid rgba(255, 255, 255, 0.06);
}
.dt-search-row__ext { font-size: 14px; font-weight: 800; color: #fff; }
.dt-search-row__ext small { display: block; font-size: 11px; font-weight: 600; color: rgba(148, 163, 184, 0.75); }
.dt-search-row__price { font-size: 13px; font-weight: 800; color: #ff8c00; }
.dt-search-row__badge {
    padding: 0.3rem 0.65rem; border-radius: 999px; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.dt-search-row__badge--ok {
    background: rgba(74, 222, 128, 0.12); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.25);
}
.dt-search-row__badge--no {
    background: rgba(248, 113, 113, 0.12); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.25);
}
.dt-search-row__btn {
    padding: 0.5rem 1rem; border-radius: 8px; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none;
    background: #ff8c00; color: #131722;
}
.dt-search-row__btn--ghost {
    background: transparent; color: rgba(148, 163, 184, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dt-table-panel {
    overflow-x: auto; border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(28, 34, 48, 0.85);
}
.dt-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dt-table th {
    padding: 14px 16px; text-align: left;
    background: rgba(255, 140, 0, 0.1); color: #ff8c00;
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
}
.dt-table td {
    padding: 12px 16px; border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(226, 232, 240, 0.9); font-weight: 600;
}
.dt-table tr.is-hidden { display: none; }
.dt-table__ext { color: #fff; font-size: 14px; }
.dt-table__price { color: #fff; font-weight: 800; }
.dt-table__link {
    font-size: 11px; font-weight: 800; color: #ff8c00; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.dt-table__link:hover { text-decoration: underline; }

.dt-toc { display: flex; flex-direction: column; gap: 0.5rem; }
.dt-toc__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1rem; border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px; font-weight: 700; color: #e2e8f0; text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.dt-toc__link:hover {
    border-color: rgba(255, 140, 0, 0.35); background: rgba(255, 140, 0, 0.06); color: #ff8c00;
}

.dt-docs-grid {
    display: grid; gap: 1.25rem;
}
@media (min-width: 768px) {
    .dt-docs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .dt-docs-grid { grid-template-columns: repeat(3, 1fr); }
}
.dt-doc-card {
    padding: 1.35rem; border-radius: 1.15rem;
    background: rgba(28, 34, 48, 0.85); border: 1px solid rgba(255, 255, 255, 0.08);
    scroll-margin-top: 6rem;
}
.dt-doc-card__title {
    margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 900; color: #ff8c00;
}
.dt-doc-card__lead {
    margin: 0 0 1rem; font-size: 13px; color: rgba(148, 163, 184, 0.9); line-height: 1.55;
}
.dt-doc-card__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.dt-doc-card__list li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 12px; font-weight: 600; color: rgba(226, 232, 240, 0.88);
}
.dt-doc-card__list .icon { flex-shrink: 0; color: #ff8c00; margin-top: 2px; }
.dt-doc-card__note {
    margin: 1rem 0 0; padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px; color: rgba(148, 163, 184, 0.8); line-height: 1.5;
}

.dt-icann-intro {
    max-width: 56rem; padding: 1.35rem 1.5rem; border-radius: 1.15rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(28, 34, 48, 0.9));
    border: 1px solid rgba(255, 140, 0, 0.2);
}
.dt-icann-intro p {
    margin: 0 0 0.85rem; font-size: 14px; line-height: 1.7;
    color: rgba(203, 213, 225, 0.92);
}
.dt-icann-intro p:last-child { margin-bottom: 0; }

.dt-policy-list { display: flex; flex-direction: column; gap: 1rem; max-width: 56rem; }
.dt-policy {
    display: flex; gap: 1.25rem; padding: 1.35rem 1.5rem;
    border-radius: 1.15rem; background: rgba(28, 34, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.07);
    scroll-margin-top: 6rem;
}
.dt-policy__icon {
    flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255, 140, 0, 0.12); color: #ff8c00;
}
.dt-policy__icon .icon { width: 1.35rem; height: 1.35rem; }
.dt-policy__body { flex: 1; min-width: 0; }
.dt-policy h2 {
    margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 900; color: #fff;
}
.dt-policy p {
    margin: 0 0 0.65rem; font-size: 13px; color: rgba(203, 213, 225, 0.9); line-height: 1.65;
}
.dt-policy__list,
.dt-policy ul {
    margin: 0; padding-left: 1.15rem;
    font-size: 12px; color: rgba(148, 163, 184, 0.9); line-height: 1.6;
}
.dt-policy__list li + li,
.dt-policy ul li + li { margin-top: 0.35rem; }
.dt-policy__link {
    display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem;
    font-size: 12px; font-weight: 800; color: #ff8c00; text-decoration: none;
}
.dt-policy__link:hover { text-decoration: underline; }

.dt-timeline--policy {
    margin-top: 1.25rem;
}
.dt-toc-divider {
    margin: 0.85rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dt-toc--anchors .dt-toc__link span {
    font-size: 12px;
}
.dt-status-list {
    margin: 0.5rem 0 0; display: flex; flex-direction: column; gap: 0.65rem;
}
.dt-status-list__row {
    padding: 0.65rem 0.85rem; border-radius: 0.65rem;
    background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.06);
}
.dt-status-list__row dt {
    margin: 0 0 0.25rem; font-size: 12px; font-weight: 800; color: #ffb347;
}
.dt-status-list__row dd {
    margin: 0; font-size: 12px; line-height: 1.55; color: rgba(203, 213, 225, 0.88);
}

/* —— Alan adı tahsis formu (.tr belgeler) —— */
.dt-alloc {
    padding: 1.75rem 1.75rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, rgba(28, 34, 48, 0.98), rgba(22, 26, 36, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
    .dt-alloc { padding: 2rem 2.25rem 2.5rem; }
}
.dt-alloc__header { margin-bottom: 1rem; }
.dt-alloc__title {
    margin: 0; padding-left: 1rem;
    border-left: 4px solid #ff8c00;
    font-size: 1.35rem; font-weight: 900; color: #fff;
    letter-spacing: -0.03em; line-height: 1.25;
}
.dt-alloc__intro {
    margin: 0 0 1.25rem; font-size: 14px; line-height: 1.7;
    color: rgba(203, 213, 225, 0.92); max-width: 52rem;
}
.dt-alloc__rules {
    list-style: none; margin: 0 0 1.5rem; padding: 0;
    display: flex; flex-direction: column; gap: 0.65rem;
}
.dt-alloc__rules li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 13px; font-weight: 600; color: rgba(226, 232, 240, 0.9); line-height: 1.5;
}
.dt-alloc__check {
    flex-shrink: 0; display: grid; place-items: center;
    width: 1.35rem; height: 1.35rem; margin-top: 1px;
    color: #4ade80;
}
.dt-alloc__downloads {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.dt-alloc__dl-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem; border-radius: 999px;
    background: rgba(255, 140, 0, 0.14); border: 1px solid rgba(255, 140, 0, 0.28);
    color: #ffb347; font-size: 12px; font-weight: 800;
    text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dt-alloc__dl-btn:hover {
    background: rgba(255, 140, 0, 0.22); color: #fff; border-color: rgba(255, 140, 0, 0.45);
}
.dt-alloc__dl-btn .icon { opacity: 0.9; }

.dt-ext-tabs-wrap {
    margin-bottom: 0; overflow: hidden;
    border-radius: 0.85rem 0.85rem 0 0;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
}
.dt-ext-tabs {
    display: flex; flex-wrap: nowrap; gap: 0.35rem;
    padding: 0.5rem; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.4) transparent;
}
.dt-ext-tabs::-webkit-scrollbar { height: 6px; }
.dt-ext-tabs::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.35); border-radius: 999px;
}
.dt-ext-tab {
    flex-shrink: 0; padding: 0.55rem 0.9rem;
    border: none; border-radius: 0.65rem;
    background: transparent; color: rgba(148, 163, 184, 0.9);
    font-size: 12px; font-weight: 700; cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.dt-ext-tab:hover { color: #e2e8f0; background: rgba(255, 255, 255, 0.05); }
.dt-ext-tab.is-active {
    background: rgba(28, 34, 48, 0.98);
    color: #ff8c00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.dt-ext-panels {
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: 0 0 0.85rem 0.85rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    min-height: 12rem;
}
@media (min-width: 768px) {
    .dt-ext-panels { padding: 1.75rem 1.5rem 2rem; }
}
.dt-ext-panel { display: none; }
.dt-ext-panel.is-active { display: block; animation: dt-fade-in 0.25s ease; }
@keyframes dt-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.dt-ext-panel__title {
    margin: 0 0 0.75rem; font-size: 1rem; font-weight: 800; color: #fff;
}
.dt-ext-panel__ext { color: #ff8c00; }
.dt-ext-panel__desc {
    margin: 0 0 1rem; font-size: 14px; line-height: 1.65;
    color: rgba(203, 213, 225, 0.9);
}
.dt-ext-panel__list {
    margin: 0 0 1rem; padding-left: 1.2rem;
    font-size: 13px; font-weight: 600; color: rgba(226, 232, 240, 0.88);
    line-height: 1.65;
}
.dt-ext-panel__list li { margin-bottom: 0.35rem; }
.dt-ext-panel__list li::marker { color: #ff8c00; }
.dt-ext-panel__note {
    margin: 0; padding: 0.85rem 1rem; border-radius: 0.75rem;
    font-size: 12px; line-height: 1.55;
    background: rgba(255, 140, 0, 0.08); border: 1px solid rgba(255, 140, 0, 0.2);
    color: rgba(255, 200, 140, 0.95);
}
.dt-ext-panel__trabis {
    margin: 0; padding: 1rem 1.15rem; border-radius: 0.75rem;
    font-size: 14px; font-weight: 600; line-height: 1.65;
    background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.28);
    color: #86efac;
}
.dt-ext-panel__link-wrap { margin: 0.75rem 0 0; }
.dt-ext-panel__link {
    font-size: 13px; font-weight: 700; color: #ff8c00; text-decoration: none;
}
.dt-ext-panel__link:hover { text-decoration: underline; }

/* —— ICANN prosedürleri (özel düzen) —— */
.icann-page .dt-hero { display: none; }

.icann-banner {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.95) 0%, rgba(19, 23, 34, 1) 55%, rgba(30, 41, 59, 0.4) 100%);
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}
.icann-banner__inner {
    display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 900px) {
    .icann-banner__inner {
        flex-direction: row; align-items: flex-end; justify-content: space-between;
    }
}
.icann-banner__brand { display: flex; gap: 1.15rem; align-items: flex-start; max-width: 36rem; }
.icann-banner__globe {
    flex-shrink: 0; width: 3.25rem; height: 3.25rem; border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(255, 140, 0, 0.2));
    border: 1px solid rgba(96, 165, 250, 0.35); color: #93c5fd;
}
.icann-banner__globe .icon { width: 1.5rem; height: 1.5rem; }
.icann-banner__eyebrow {
    display: block; margin-bottom: 0.35rem; font-size: 10px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase; color: #60a5fa;
}
.icann-banner__title {
    margin: 0 0 0.4rem; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff;
}
.icann-banner__sub {
    margin: 0; font-size: 14px; line-height: 1.6; color: rgba(203, 213, 225, 0.88);
}
.icann-banner__stats {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem;
    width: 100%; max-width: 22rem;
}
@media (min-width: 900px) { .icann-banner__stats { width: auto; } }
.icann-stat {
    padding: 0.85rem 0.75rem; border-radius: 12px; text-align: center;
    background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.08);
}
.icann-stat b {
    display: block; font-size: 15px; font-weight: 900; color: #fff; line-height: 1.2;
}
.icann-stat em {
    display: block; font-size: 10px; font-style: normal; font-weight: 700;
    color: rgba(148, 163, 184, 0.85); margin-top: 1px;
}
.icann-stat small {
    display: block; margin-top: 0.35rem; font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: rgba(148, 163, 184, 0.75);
}

.icann-intro { padding: 1.25rem 0 0.5rem; }
.icann-intro__quote {
    margin: 0; padding: 1.25rem 1.5rem; border-radius: 1rem; border: none;
    border-left: 4px solid #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}
.icann-intro__quote p {
    margin: 0 0 0.65rem; font-size: 13px; line-height: 1.7;
    color: rgba(203, 213, 225, 0.9);
}
.icann-intro__lead { font-size: 14px !important; color: #e2e8f0 !important; }
.icann-intro__quote p:last-child { margin-bottom: 0; }

.icann-flow { padding: 1.75rem 0 0.5rem; }
.icann-section-title {
    margin: 0 0 0.35rem; font-size: 1.1rem; font-weight: 900; color: #fff;
}
.icann-section-desc {
    margin: 0 0 1.25rem; font-size: 12px; color: rgba(148, 163, 184, 0.85);
}
.icann-flow__track {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 0.65rem;
}
@media (min-width: 768px) {
    .icann-flow__track {
        grid-template-columns: repeat(5, 1fr); gap: 0.5rem;
    }
}
.icann-flow__step {
    position: relative; padding: 1rem 0.85rem; border-radius: 12px;
    background: rgba(28, 34, 48, 0.85); border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex; flex-direction: column; gap: 0.25rem;
}
.icann-flow__step strong {
    font-size: 12px; font-weight: 800; color: #fff;
}
.icann-flow__step > span:last-child {
    font-size: 10px; line-height: 1.45; color: rgba(148, 163, 184, 0.85);
}
.icann-flow__day {
    font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase;
}
.icann-flow__step--active .icann-flow__day { color: #4ade80; }
.icann-flow__step--grace .icann-flow__day { color: #fbbf24; }
.icann-flow__step--redemption .icann-flow__day { color: #fb923c; }
.icann-flow__step--delete .icann-flow__day { color: #f87171; }
.icann-flow__step--drop .icann-flow__day { color: #93c5fd; }
@media (min-width: 768px) {
    .icann-flow__step:not(:last-child)::after {
        content: ""; position: absolute; top: 50%; right: -0.35rem;
        width: 0.5rem; height: 2px; background: rgba(96, 165, 250, 0.4);
        transform: translateY(-50%);
    }
}

.icann-body { padding-top: 1.5rem; }
.icann-layout {
    display: grid; gap: 1.5rem;
}
@media (min-width: 960px) {
    .icann-layout { grid-template-columns: 220px 1fr; align-items: start; }
}
.icann-sidebar {
    position: sticky; top: 5.5rem;
    padding: 1rem; border-radius: 1rem;
    background: rgba(28, 34, 48, 0.9); border: 1px solid rgba(255, 255, 255, 0.07);
}
.icann-sidebar__label {
    margin: 0 0 0.5rem; font-size: 9px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
}
.icann-tabs { display: flex; flex-direction: column; gap: 0.35rem; }
.icann-tabs__btn {
    display: flex; align-items: center; gap: 0.5rem; width: 100%;
    padding: 0.65rem 0.75rem; border: 1px solid transparent; border-radius: 10px;
    background: transparent; color: rgba(203, 213, 225, 0.85);
    font-size: 12px; font-weight: 700; text-align: left; cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.icann-tabs__btn .icon { color: rgba(148, 163, 184, 0.6); }
.icann-tabs__btn:hover,
.icann-tabs__btn.is-active {
    background: rgba(59, 130, 246, 0.12); border-color: rgba(96, 165, 250, 0.35);
    color: #fff;
}
.icann-tabs__btn.is-active .icon { color: #60a5fa; }
.icann-sidebar__links { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.icann-sidebar__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.45rem 0; font-size: 11px; font-weight: 700; color: #ff8c00;
    text-decoration: none;
}
.icann-sidebar__link:hover { text-decoration: underline; }

.icann-panel { display: none; }
.icann-panel.is-active { display: block; }
.icann-panel__head { margin-bottom: 1.25rem; }
.icann-panel__head h2 {
    margin: 0 0 0.35rem; font-size: 1.25rem; font-weight: 900; color: #fff;
}
.icann-panel__head p {
    margin: 0; font-size: 13px; color: rgba(148, 163, 184, 0.9);
}

.icann-card {
    padding: 1.25rem 1.35rem; margin-bottom: 1rem; border-radius: 1rem;
    background: rgba(19, 23, 34, 0.95); border: 1px solid rgba(255, 255, 255, 0.06);
    scroll-margin-top: 6rem;
}
.icann-card__top {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.icann-card__icon {
    width: 2.5rem; height: 2.5rem; border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(59, 130, 246, 0.15); color: #60a5fa;
}
.icann-card__icon .icon { width: 1.15rem; height: 1.15rem; }
.icann-card h3 { margin: 0; font-size: 1rem; font-weight: 900; color: #fff; }
.icann-card__lead {
    margin: 0 0 0.85rem; font-size: 13px; line-height: 1.65;
    color: rgba(203, 213, 225, 0.9);
}
.icann-card__bullets {
    margin: 0; padding: 0; list-style: none;
    display: grid; gap: 0.5rem;
}
@media (min-width: 640px) {
    .icann-card__bullets { grid-template-columns: repeat(2, 1fr); }
}
.icann-card__bullets li {
    padding: 0.55rem 0.7rem; border-radius: 8px; font-size: 11px; line-height: 1.5;
    background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(203, 213, 225, 0.88);
}
.icann-card__bullets li::before {
    content: "›"; margin-right: 0.35rem; color: #60a5fa; font-weight: 900;
}

.icann-steps {
    list-style: none; margin: 1rem 0 0; padding: 0;
    display: flex; flex-direction: column; gap: 0.65rem;
}
.icann-steps li {
    display: flex; gap: 0.85rem; padding: 0.85rem 1rem; border-radius: 10px;
    background: rgba(0, 0, 0, 0.28); border: 1px solid rgba(255, 255, 255, 0.06);
}
.icann-steps__n {
    flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 8px;
    display: grid; place-items: center; font-size: 11px; font-weight: 900;
    background: #3b82f6; color: #0f172a;
}
.icann-steps li strong {
    display: block; font-size: 12px; color: #fff; margin-bottom: 0.2rem;
}
.icann-steps li p {
    margin: 0; font-size: 11px; line-height: 1.5; color: rgba(148, 163, 184, 0.9);
}

.icann-status-grid {
    display: grid; gap: 0.6rem; margin-top: 0.5rem;
}
@media (min-width: 520px) {
    .icann-status-grid { grid-template-columns: repeat(2, 1fr); }
}
.icann-status {
    display: flex; gap: 0.65rem; padding: 0.75rem 0.85rem; border-radius: 10px;
    background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.06);
}
.icann-status__dot {
    flex-shrink: 0; width: 8px; height: 8px; margin-top: 0.35rem; border-radius: 50%;
}
.icann-status--ok .icann-status__dot { background: #4ade80; box-shadow: 0 0 8px rgba(74, 222, 128, 0.5); }
.icann-status--hold .icann-status__dot { background: #fbbf24; }
.icann-status--warn .icann-status__dot { background: #fb923c; }
.icann-status--danger .icann-status__dot { background: #f87171; box-shadow: 0 0 8px rgba(248, 113, 113, 0.4); }
.icann-status strong {
    display: block; font-size: 11px; font-weight: 800; color: #e2e8f0; margin-bottom: 0.15rem;
}
.icann-status p {
    margin: 0; font-size: 10px; line-height: 1.45; color: rgba(148, 163, 184, 0.9);
}

.icann-card__ext {
    display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.85rem;
    font-size: 12px; font-weight: 800; color: #60a5fa; text-decoration: none;
}
.icann-card__ext:hover { text-decoration: underline; }

.icann-cta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.35rem 1.5rem; border-radius: 1.15rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(255, 140, 0, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.25);
}
.icann-cta strong { display: block; font-size: 14px; color: #fff; }
.icann-cta span { font-size: 12px; color: rgba(148, 163, 184, 0.9); }
