﻿:root {
    --background: #090b10;
    --background-soft: #0f1219;
    --panel: #141821;
    --panel-hover: #191e29;
    --text: #ffffff;
    --text-soft: #c6cad2;
    --text-muted: #9299a6;
    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.22);
    --accent: #ffffff;
    --accent-text: #090b10;
    --maximum-width: 1180px;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(255, 255, 255, 0.10),
            transparent 42%
        ),
        var(--background);
    color: var(--text);
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.6;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 10px 14px;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
}

.skip-link:focus {
    top: 20px;
}

.wrap {
    width: min(var(--maximum-width), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 11, 16, 0.88);
    backdrop-filter: blur(16px);
}

.nav-row {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

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

.site-nav a,
.nav-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.site-nav .nav-cta,
.nav-disabled {
    margin-left: 5px;
    padding-inline: 16px;
    background: var(--accent);
    color: var(--accent-text);
}

.nav-disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font-size: 1.35rem;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -380px;
    width: 760px;
    height: 760px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    filter: blur(10px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-logo {
    display: block;
    width: min(500px, 82vw);
    max-height: 320px;
    object-fit: contain;
    margin: 0 auto 30px;
    filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.30));
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.55rem, 7vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero-copy {
    max-width: 760px;
    margin: 25px auto 0;
    color: var(--text-soft);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 150ms ease,
        background 150ms ease,
        border-color 150ms ease;
}

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

.button-primary {
    background: var(--accent);
    color: var(--accent-text);
}

.button-secondary {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.button-disabled {
    background: rgba(255, 255, 255, 0.72);
    color: var(--accent-text);
    cursor: not-allowed;
}

.button-disabled:hover {
    transform: none;
}

.stats {
    position: relative;
    z-index: 3;
    padding-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat {
    min-height: 138px;
    padding: 27px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-size: 1.13rem;
}

.stat span {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.section {
    padding: 85px 0;
}

.section-soft {
    border-block: 1px solid var(--border);
    background: var(--background-soft);
}

.section-heading {
    max-width: 730px;
    margin-bottom: 36px;
}

.section-heading-centred {
    margin-inline: auto;
    text-align: center;
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--text-soft);
}

.section h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.announcement {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.025)
    );
}

.announcement-badge {
    align-self: start;
    padding: 7px 10px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement h2 {
    font-size: 1.35rem;
    letter-spacing: -0.015em;
}

.announcement p {
    margin: 7px 0 0;
    color: var(--text-soft);
}

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

.card {
    min-height: 210px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
    transition:
        transform 170ms ease,
        border-color 170ms ease,
        background 170ms ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    background: var(--panel-hover);
}

.card-number {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 900;
}

.card h3 {
    margin: 0;
    font-size: 1.28rem;
}

.card p {
    margin: 9px 0 0;
    color: var(--text-soft);
}

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

.quick-link {
    min-height: 126px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    text-decoration: none;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.quick-link:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.055);
}

.quick-link strong {
    font-size: 1.07rem;
}

.quick-link span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.support-panel {
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.support-panel p {
    max-width: 780px;
    margin: 16px auto 27px;
    color: var(--text-soft);
}

.placeholder-page {
    min-height: calc(100vh - 74px);
    padding: 110px 0;
}

.placeholder-card {
    max-width: 790px;
    padding: clamp(30px, 6vw, 60px);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.placeholder-card h1 {
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.placeholder-card p {
    margin: 20px 0 30px;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.site-footer {
    padding: 50px 0 28px;
    border-top: 1px solid var(--border);
    background: #07090d;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
}

.footer-brand {
    max-width: 430px;
}

.footer-brand strong {
    font-size: 1.18rem;
}

.footer-brand p,
.disclaimer,
.copyright {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 10px 18px;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

.disclaimer {
    margin: 36px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.86rem;
}

.copyright {
    margin: 12px 0 0;
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: 74px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #10131a;
        box-shadow: var(--shadow);
    }

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

    .site-nav a,
    .nav-disabled {
        width: 100%;
        margin-left: 0;
    }

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

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

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

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 26px, var(--maximum-width));
    }

    .hero {
        padding-top: 68px;
    }

    .actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .stats-grid,
    .card-grid,
    .quick-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .announcement {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* DOP SERVER PAGE START */

.page-hero {
    padding: 82px 0 52px;
    text-align: center;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.status-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
}

.status-summary-item {
    padding: 24px 18px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.status-summary-item:last-child {
    border-right: 0;
}

.status-summary-item strong {
    display: block;
    font-size: 1.35rem;
}

.status-summary-item span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.status-updated {
    margin: 0 0 30px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.88rem;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.server-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
}

.server-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.server-name {
    display: flex;
    align-items: center;
    gap: 11px;
}

.server-name h2 {
    margin: 0;
    font-size: 1.22rem;
    letter-spacing: -0.015em;
}

.server-status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: #49d17d;
    box-shadow: 0 0 14px rgba(73, 209, 125, 0.55);
}

.server-online-label {
    color: #78e6a0;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.server-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 21px;
}

.server-detail {
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
}

.server-detail span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.server-detail strong {
    display: block;
    margin-top: 3px;
    font-size: 1rem;
}

.information-panel {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
}

.information-panel h2 {
    font-size: 1.55rem;
}

.information-panel p {
    margin: 10px 0 0;
    color: var(--text-soft);
}

@media (max-width: 720px) {
    .status-summary,
    .server-grid {
        grid-template-columns: 1fr;
    }

    .status-summary-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .status-summary-item:last-child {
        border-bottom: 0;
    }
}

/* DOP SERVER PAGE END */

/* DOP RULES PAGE START */

.rules-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.rules-navigation {
    position: sticky;
    top: 100px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
}

.rules-navigation strong {
    display: block;
    margin-bottom: 13px;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rules-navigation a {
    display: block;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--text-soft);
    text-decoration: none;
}

.rules-navigation a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.rules-content {
    min-width: 0;
}

.rules-group {
    margin-bottom: 54px;
}

.rules-group:last-child {
    margin-bottom: 0;
}

.rules-group-header {
    margin-bottom: 23px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--border);
}

.rules-group-header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 5vw, 2.75rem);
}

.rules-group-header p {
    margin: 12px 0 0;
    color: var(--text-soft);
}

.rule-list {
    display: grid;
    gap: 15px;
}

.rule-entry {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
}

.rule-entry h3 {
    margin: 0;
    font-size: 1.2rem;
}

.rule-entry p {
    margin: 10px 0 0;
    color: var(--text-soft);
}

.rule-entry p:first-of-type {
    margin-top: 12px;
}

.rule-entry-warning {
    border-color: rgba(255, 255, 255, 0.20);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );
}

.rules-closing {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.rules-closing p {
    margin: 0;
    color: var(--text-soft);
}

.policy-panel {
    padding: clamp(25px, 5vw, 40px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
}

.policy-panel p {
    margin: 0 0 17px;
    color: var(--text-soft);
}

.policy-panel p:last-child {
    margin-bottom: 0;
}

@media (max-width: 840px) {
    .rules-layout {
        grid-template-columns: 1fr;
    }

    .rules-navigation {
        position: static;
    }
}

/* DOP RULES PAGE END */

/* DOP NEW PLAYER GUIDE START */

.guide-intro-panel {
    max-width: 900px;
    margin: 0 auto 38px;
    padding: 27px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );
}

.guide-intro-panel p {
    margin: 0;
    color: var(--text-soft);
}

.guide-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.guide-navigation {
    position: sticky;
    top: 100px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
}

.guide-navigation strong {
    display: block;
    margin-bottom: 13px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.guide-navigation a {
    display: block;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--text-soft);
    text-decoration: none;
}

.guide-navigation a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.guide-steps {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.guide-step {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--panel);
}

.guide-step-content {
    padding: 28px;
}

.guide-step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.86rem;
    font-weight: 900;
}

.guide-step h2 {
    margin: 0;
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    letter-spacing: -0.025em;
}

.guide-step p {
    margin: 12px 0 0;
    color: var(--text-soft);
}

.guide-image-link {
    display: block;
    border-top: 1px solid var(--border);
    background: #080a0e;
}

.guide-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    margin: 0 auto;
}

.guide-caption {
    margin: 0;
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.84rem;
    text-align: center;
}

.guide-warning {
    margin-top: 19px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.055);
}

.guide-warning strong {
    display: block;
    margin-bottom: 6px;
}

.guide-warning p {
    margin: 0;
}

.guide-help-panel {
    padding: clamp(28px, 5vw, 45px);
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
}

.guide-help-panel h2 {
    margin: 0;
}

.guide-help-panel p {
    max-width: 740px;
    margin: 14px auto 25px;
    color: var(--text-soft);
}

@media (max-width: 840px) {
    .guide-layout {
        grid-template-columns: 1fr;
    }

    .guide-navigation {
        position: static;
    }
}

/* DOP NEW PLAYER GUIDE END */

/* DOP SUPPORT PAGE START */

.support-introduction {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.support-introduction h2 {
    margin: 0;
}

.support-introduction p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text-soft);
}

.support-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
    margin-top: 38px;
}

.support-point {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
}

.support-point-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-strong);
    border-radius: 11px;
    font-size: 0.84rem;
    font-weight: 900;
}

.support-point h3 {
    margin: 0;
    font-size: 1.18rem;
}

.support-point p {
    margin: 10px 0 0;
    color: var(--text-soft);
}

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

.support-use-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--panel);
}

.support-use-card h3 {
    margin: 0;
    font-size: 1.23rem;
}

.support-use-card p {
    margin: 10px 0 0;
    color: var(--text-soft);
}

.support-notice {
    margin-top: 32px;
    padding: 25px;
    border: 1px solid var(--border-strong);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.04);
}

.support-notice h3 {
    margin: 0;
}

.support-notice p {
    margin: 10px 0 0;
    color: var(--text-soft);
}

.support-ticket-panel {
    padding: clamp(30px, 6vw, 55px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.support-ticket-panel p {
    max-width: 720px;
    margin: 15px auto 27px;
    color: var(--text-soft);
}

.support-small-print {
    max-width: 840px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    text-align: center;
}

@media (max-width: 800px) {
    .support-points {
        grid-template-columns: 1fr;
    }

    .support-use-grid {
        grid-template-columns: 1fr;
    }
}

/* DOP SUPPORT PAGE END */

/* DOP ABOUT PAGE START */

.about-introduction {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 56px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.about-introduction h2 {
    margin: 0;
}

.about-introduction p {
    max-width: 780px;
    margin: 17px auto 0;
    color: var(--text-soft);
    font-size: 1.06rem;
}

.about-story {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel);
}

.about-story-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-story h2 {
    margin: 0;
}

.about-story p {
    margin: 14px 0 0;
    color: var(--text-soft);
}

.about-purpose {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-purpose p {
    margin: 17px auto 0;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.about-card {
    min-height: 225px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    background: var(--panel-hover);
}

.about-card-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border: 1px solid var(--border-strong);
    border-radius: 11px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 900;
}

.about-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.about-card p {
    margin: 10px 0 0;
    color: var(--text-soft);
}

.about-community-panel {
    padding: clamp(30px, 6vw, 55px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.about-community-panel p {
    max-width: 760px;
    margin: 16px auto 28px;
    color: var(--text-soft);
}

@media (max-width: 760px) {
    .about-story,
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* DOP ABOUT PAGE END */

/* DOPBOT PAGE START */

.dopbot-introduction {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 54px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.dopbot-introduction p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.dopbot-panel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 34px;
    align-items: center;
}

.dopbot-copy h2,
.dopbot-copy h3 {
    margin-top: 0;
}

.dopbot-copy p {
    color: var(--text-soft);
}

.dopbot-screenshot-link {
    display: block;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: var(--shadow);
    transition:
        transform 160ms ease,
        border-color 160ms ease;
}

.dopbot-screenshot-link:hover {
    transform: translateY(-3px);
    border-color: var(--text-soft);
}

.dopbot-screenshot-link img {
    display: block;
    width: 100%;
    height: auto;
}

.dopbot-image-note {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-align: center;
}

.dopbot-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.dopbot-feature-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
}

.dopbot-feature-card h3 {
    margin: 0;
    font-size: 1.06rem;
}

.dopbot-feature-card p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.dopbot-feature-card-wide {
    grid-column: 1 / -1;
}

.dopbot-step-list {
    display: grid;
    gap: 48px;
    margin-top: 38px;
}

.dopbot-step {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(26px, 5vw, 58px);
    align-items: center;
}

.dopbot-step:nth-child(even) .dopbot-step-image {
    order: 2;
}

.dopbot-step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 900;
}

.dopbot-step h3 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.dopbot-step p {
    margin: 12px 0 0;
    color: var(--text-soft);
}

.dopbot-link-panel {
    padding: clamp(30px, 6vw, 52px);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.dopbot-link-panel p {
    max-width: 730px;
    margin: 16px auto 27px;
    color: var(--text-soft);
}

.dopbot-simple-note {
    max-width: 850px;
    margin: 34px auto 0;
    color: var(--text-soft);
    text-align: center;
}

@media (max-width: 820px) {
    .dopbot-panel-layout,
    .dopbot-step {
        grid-template-columns: 1fr;
    }

    .dopbot-step:nth-child(even) .dopbot-step-image {
        order: initial;
    }
}

@media (max-width: 600px) {
    .dopbot-feature-grid {
        grid-template-columns: 1fr;
    }

    .dopbot-feature-card-wide {
        grid-column: auto;
    }
}

/* DOPBOT PAGE END */

/* DOP RATES SECTION START */

.rates-introduction {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
}

.rates-introduction p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.rates-banner {
    max-width: 840px;
    margin: 0 auto 38px;
    padding: clamp(26px, 5vw, 42px);
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.rates-banner h2 {
    margin: 8px 0 0;
}

.rates-banner p {
    margin: 12px 0 0;
    color: var(--text-soft);
}

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

.rate-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
}

.rate-card-wide {
    grid-column: 1 / -1;
}

.rate-card h3 {
    margin: 0 0 18px;
    font-size: 1.22rem;
}

.rate-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rate-list li {
    position: relative;
    padding-left: 21px;
    color: var(--text-soft);
}

.rate-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\2022";
    color: var(--text);
    font-weight: 900;
}

.rate-list strong {
    color: var(--text);
}

.rate-result {
    margin: 22px 0 0;
    padding: 16px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);
}

.decay-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.decay-item {
    padding: 14px 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
}

.decay-item strong,
.decay-item span {
    display: block;
}

.decay-item span {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.qol-grid,
.mods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qol-grid li,
.mods-grid li {
    padding: 15px 17px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
}

.community-vote-panel {
    margin-top: 30px;
    padding: clamp(27px, 5vw, 43px);
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    text-align: center;
    box-shadow: var(--shadow);
}

.community-vote-panel h3 {
    margin: 0;
}

.community-vote-panel p {
    max-width: 720px;
    margin: 13px auto 0;
    color: var(--text-soft);
}

@media (max-width: 850px) {
    .decay-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .rates-grid,
    .qol-grid,
    .mods-grid {
        grid-template-columns: 1fr;
    }

    .rate-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 450px) {
    .decay-grid {
        grid-template-columns: 1fr;
    }
}

/* DOP RATES SECTION END */


/* DOP GREEN THEME START */

:root {
    --bg: #06130c;
    --bg-soft: #0a1d10;
    --panel: #102a17;
    --panel-hover: #17391d;

    --text: #f1f3e5;
    --text-soft: #c4d1bf;
    --text-muted: #8fa58d;

    --accent: #78c850;
    --accent-bright: #a7e45b;
    --accent-deep: #1f5b2b;

    --border: rgba(120, 200, 80, 0.22);
    --border-strong: rgba(167, 228, 91, 0.48);

    --shadow:
        0 24px 70px rgba(0, 0, 0, 0.38);
}

html {
    background: #06130c;
}

body {
    color: var(--text);
    background:
        radial-gradient(
            circle at 15% 5%,
            rgba(71, 137, 50, 0.17),
            transparent 34rem
        ),
        radial-gradient(
            circle at 90% 25%,
            rgba(120, 200, 80, 0.08),
            transparent 32rem
        ),
        #06130c;
}

body::selection {
    color: #06130c;
    background: #a7e45b;
}

a {
    color: var(--accent-bright);
}

a:hover {
    color: #c3f48b;
}

.site-header {
    border-bottom-color: rgba(120, 200, 80, 0.24);
    background: rgba(6, 19, 12, 0.93);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.brand {
    color: var(--text);
}

.brand:hover {
    color: var(--accent-bright);
}

.brand img {
    filter:
        drop-shadow(0 0 12px rgba(120, 200, 80, 0.22));
}

.site-nav a {
    color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current="page"] {
    color: var(--accent-bright);
    background: rgba(120, 200, 80, 0.10);
}

.nav-toggle {
    color: var(--text);
    border-color: var(--border-strong);
    background: rgba(16, 42, 23, 0.94);
}

.nav-cta,
.button-primary {
    color: #06130c !important;
    border-color: #a7e45b !important;
    background:
        linear-gradient(
            135deg,
            #a7e45b,
            #68b94d
        ) !important;
    box-shadow:
        0 12px 30px rgba(83, 164, 59, 0.25);
}

.nav-cta:hover,
.button-primary:hover {
    color: #031008 !important;
    border-color: #c3f48b !important;
    background:
        linear-gradient(
            135deg,
            #c3f48b,
            #7cd25b
        ) !important;
    box-shadow:
        0 15px 36px rgba(103, 190, 70, 0.35);
}

.button-secondary {
    color: var(--accent-bright) !important;
    border-color: var(--border-strong) !important;
    background: rgba(16, 42, 23, 0.78) !important;
}

.button-secondary:hover {
    color: #d2f7a7 !important;
    border-color: #a7e45b !important;
    background: rgba(31, 91, 43, 0.72) !important;
}

.page-hero,
.hero {
    border-bottom-color: rgba(120, 200, 80, 0.20);
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(120, 200, 80, 0.16),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            #0d2614,
            #06130c
        );
}

.page-hero h1,
.hero h1 {
    color: var(--text);
    text-shadow:
        0 3px 25px rgba(0, 0, 0, 0.54);
}

.page-hero p,
.hero p {
    color: var(--text-soft);
}

.eyebrow {
    color: var(--accent-bright);
}

.section {
    border-color: rgba(120, 200, 80, 0.10);
}

.section-soft {
    background:
        linear-gradient(
            180deg,
            rgba(15, 43, 22, 0.76),
            rgba(8, 27, 14, 0.72)
        );
}

main article,
.about-introduction,
.about-story,
.about-card,
.about-community-panel,
.dopbot-introduction,
.dopbot-feature-card,
.dopbot-link-panel,
.rate-card,
.rates-banner,
.community-vote-panel,
.decay-item,
.qol-grid li,
.mods-grid li {
    border-color: var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(23, 57, 29, 0.94),
            rgba(12, 35, 18, 0.96)
        );
    box-shadow:
        inset 0 1px 0 rgba(167, 228, 91, 0.05),
        0 18px 45px rgba(0, 0, 0, 0.18);
}

main article:hover,
.about-card:hover,
.dopbot-feature-card:hover,
.rate-card:hover {
    border-color: var(--border-strong);
    background:
        linear-gradient(
            145deg,
            rgba(28, 70, 35, 0.96),
            rgba(15, 43, 22, 0.98)
        );
}

.dopbot-screenshot-link {
    border-color: var(--border-strong);
    background: #07140c;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(120, 200, 80, 0.05);
}

.dopbot-screenshot-link:hover {
    border-color: var(--accent-bright);
}

.rate-card h3,
.about-card h3,
.dopbot-feature-card h3,
.dopbot-step h3 {
    color: var(--text);
}

.rate-list strong,
.decay-item strong {
    color: var(--accent-bright);
}

.rate-list li::before {
    color: var(--accent);
}

.rate-result {
    border-color: rgba(167, 228, 91, 0.34);
    background: rgba(120, 200, 80, 0.08);
}

.dopbot-step-number,
.about-card-number {
    color: #06130c;
    border-color: var(--accent-bright);
    background: var(--accent-bright);
}

.site-footer {
    border-top-color: rgba(120, 200, 80, 0.22);
    background:
        linear-gradient(
            180deg,
            #07170d,
            #030b06
        );
}

.footer-brand strong {
    color: var(--accent-bright);
}

.footer-links a {
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--accent-bright);
}

.disclaimer,
.copyright {
    color: var(--text-muted);
}

/*
    Homepage dinosaur-eye feature.
    The dark overlay keeps all existing hero text readable.
*/

body.home-page main > section:first-child {
    min-height: clamp(500px, 72vh, 760px);
    border-bottom: 1px solid rgba(120, 200, 80, 0.28);
    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 8, 0.98) 0%,
            rgba(6, 22, 11, 0.92) 42%,
            rgba(6, 22, 11, 0.60) 68%,
            rgba(4, 15, 8, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.50)
        ),
        url("/assets/images/branding/dop-dino-eye.png")
        center 43% / cover no-repeat !important;
}

body.home-page main > section:first-child .wrap {
    position: relative;
    z-index: 1;
}

body.home-page main > section:first-child h1 {
    max-width: 760px;
    color: #f1f3e5;
    text-shadow:
        0 4px 28px rgba(0, 0, 0, 0.86);
}

body.home-page main > section:first-child p {
    color: #d5dfcf;
    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.82);
}

@media (max-width: 760px) {
    body.home-page main > section:first-child {
        min-height: 620px;
        background:
            linear-gradient(
                180deg,
                rgba(4, 15, 8, 0.84) 0%,
                rgba(4, 15, 8, 0.91) 60%,
                rgba(4, 15, 8, 0.98) 100%
            ),
            url("/assets/images/branding/dop-dino-eye.png")
            58% center / cover no-repeat !important;
    }

    .site-nav {
        background: rgba(6, 19, 12, 0.98);
        border-color: var(--border-strong);
    }
}

/* DOP GREEN THEME END */


/* DOP SHARED PAGE HERO START */

.page-hero {
    position: relative;
    display: flex;
    min-height: clamp(340px, 42vw, 450px);
    align-items: center;
    overflow: hidden;
    padding:
        clamp(64px, 8vw, 96px)
        0
        clamp(54px, 7vw, 82px);
    border-bottom: 1px solid rgba(120, 200, 80, 0.30);
    background:
        linear-gradient(
            180deg,
            rgba(3, 13, 7, 0.68) 0%,
            rgba(4, 16, 8, 0.76) 48%,
            rgba(4, 16, 8, 0.94) 100%
        ),
        linear-gradient(
            90deg,
            rgba(3, 13, 7, 0.72),
            rgba(3, 13, 7, 0.34),
            rgba(3, 13, 7, 0.64)
        ),
        url("/assets/images/branding/dop-dino-eye.png")
        center 43% / cover no-repeat !important;
    text-align: center;
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero .wrap::before {
    display: block;
    width: clamp(94px, 11vw, 132px);
    aspect-ratio: 1;
    margin-bottom: 18px;
    background:
        url("/dopplegang-logo.png")
        center / contain no-repeat;
    content: "";
    filter:
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.58))
        drop-shadow(0 0 14px rgba(120, 200, 80, 0.22));
}

.page-hero .eyebrow {
    margin-bottom: 12px;
    color: #b9ed75;
    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.92);
}

.page-hero h1 {
    max-width: 850px;
    margin-top: 0;
    color: #f1f3e5;
    text-shadow:
        0 4px 28px rgba(0, 0, 0, 0.90);
}

.page-hero p {
    max-width: 760px;
    color: #d5dfcf;
    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.88);
}

@media (max-width: 760px) {
    .page-hero {
        min-height: 390px;
        padding: 62px 0 54px;
        background:
            linear-gradient(
                180deg,
                rgba(3, 13, 7, 0.70) 0%,
                rgba(3, 13, 7, 0.83) 55%,
                rgba(3, 13, 7, 0.97) 100%
            ),
            url("/assets/images/branding/dop-dino-eye.png")
            58% center / cover no-repeat !important;
    }

    .page-hero .wrap::before {
        width: 94px;
        margin-bottom: 16px;
    }
}

/* DOP SHARED PAGE HERO END */


/* DOP FIXED EYE BACKGROUND START */

html {
    min-height: 100%;
    background: #06130c;
}

body {
    position: relative;
    min-height: 100%;
    background: #06130c !important;
}

body::before {
    position: fixed;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(
            180deg,
            rgba(3, 13, 7, 0.56),
            rgba(3, 13, 7, 0.72)
        ),
        url("/assets/images/branding/dop-dino-eye.png")
        center 43% / cover no-repeat;
}

body > * {
    position: relative;
    z-index: 1;
}

/*
    The eye now comes from the fixed body layer.
    These sections keep only their readability overlays.
*/

body.home-page main > section:first-child {
    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 8, 0.96) 0%,
            rgba(6, 22, 11, 0.78) 42%,
            rgba(6, 22, 11, 0.38) 68%,
            rgba(4, 15, 8, 0.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.44)
        ) !important;
}

.page-hero {
    background:
        linear-gradient(
            180deg,
            rgba(3, 13, 7, 0.55) 0%,
            rgba(4, 16, 8, 0.68) 48%,
            rgba(4, 16, 8, 0.90) 100%
        ),
        linear-gradient(
            90deg,
            rgba(3, 13, 7, 0.60),
            rgba(3, 13, 7, 0.22),
            rgba(3, 13, 7, 0.54)
        ) !important;
}

main,
.section {
    background-color: transparent;
}

.section-soft {
    background:
        linear-gradient(
            180deg,
            rgba(10, 31, 16, 0.84),
            rgba(6, 23, 12, 0.88)
        ) !important;
}

.site-footer {
    background:
        linear-gradient(
            180deg,
            rgba(7, 23, 13, 0.96),
            rgba(3, 11, 6, 0.98)
        );
}

@media (max-width: 760px) {
    body::before {
        background:
            linear-gradient(
                180deg,
                rgba(3, 13, 7, 0.62),
                rgba(3, 13, 7, 0.78)
            ),
            url("/assets/images/branding/dop-dino-eye.png")
            58% center / cover no-repeat;
    }

    body.home-page main > section:first-child {
        background:
            linear-gradient(
                180deg,
                rgba(4, 15, 8, 0.68) 0%,
                rgba(4, 15, 8, 0.82) 60%,
                rgba(4, 15, 8, 0.96) 100%
            ) !important;
    }

    .page-hero {
        background:
            linear-gradient(
                180deg,
                rgba(3, 13, 7, 0.62) 0%,
                rgba(3, 13, 7, 0.78) 55%,
                rgba(3, 13, 7, 0.95) 100%
            ) !important;
    }
}

/* DOP FIXED EYE BACKGROUND END */


/* DOP HOME HEADING CENTRE START */

body.home-page main > section:first-child h1 {
    width: 100%;
    max-width: 760px;
    margin-inline: auto !important;
    text-align: center !important;
}

/* DOP HOME HEADING CENTRE END */



/* DOP DGN SECTION START */

.dop-dgn-section {
    position: relative;
}

.dop-dgn-introduction {
    max-width: 880px;
    margin: 0 auto 36px;
    text-align: center;
}

.dop-dgn-introduction h2 {
    margin-bottom: 0;
}

.dop-dgn-tagline {
    margin: 10px auto 0;
    color: var(--accent-bright);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.dop-dgn-description {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--text-soft);
}

.dop-dgn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}

.dop-dgn-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(23, 57, 29, 0.94),
            rgba(12, 35, 18, 0.96)
        );
    box-shadow:
        inset 0 1px 0 rgba(167, 228, 91, 0.05),
        0 18px 45px rgba(0, 0, 0, 0.18);
}

.dop-dgn-card h3 {
    margin: 16px 0 0;
    color: var(--accent-bright);
}

.dop-dgn-card p:not(.dop-coming-soon) {
    margin: 13px 0 0;
    color: var(--text-soft);
}

.dop-coming-soon {
    display: inline-block;
    margin: 0;
    padding: 7px 12px;
    border: 1px solid var(--accent-bright);
    border-radius: 999px;
    color: var(--accent-bright);
    background: rgba(167, 228, 91, 0.10);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
}

@media (max-width: 720px) {
    .dop-dgn-grid {
        grid-template-columns: 1fr;
    }
}

/* DOP DGN SECTION END */


