:root {
    --ui-blue: #00d5ff;
    --ui-green: #00ff88;
    --ui-red: #ff4444;
    --ui-bg: #03080c;
    --ui-panel: rgba(11, 21, 31, 0.95);
    --ui-border: #1a2a3a;
    --ui-text-dim: #4a5a6a;
    --navbar-height: 60px;
}

* {
    box-sizing: border-box;
}

.action-zone {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #1a2a3a;
}

.admin-card {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-top: 4px solid var(--ui-blue);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-confirm {
    margin-top: 5px;
    background: transparent;
    border: 1px solid var(--ui-blue);
    color: var(--ui-blue);
    padding: 2px 8px;
    cursor: pointer;
    font-size: 0.75em;
    border-radius: 3px;
    transition: all 0.2s;
}

.btn-confirm:hover:not(:disabled) {
    background: rgba(0, 213, 255, 0.2);
    box-shadow: 0 0 5px var(--ui-blue);
}

.btn-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.back-link {
    display: block;
    margin-top: 20px;
    color: #fbfdff;
    font-family: 'Segoe UI', sans-serif;
    text-decoration: none;
    font-size: 0.7em;
    text-align: center;
}

.badge-container {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.lang-switch-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    padding: 2px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lang-switch-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding-right: 15px;
    border-right: 1px solid rgba(0, 243, 255, 0.2);
    /* Trennlinie rechts zum Logo */
    flex-shrink: 0;
    /* Verhindert das Stauchen der Flaggen */
}

.lang-btn:hover {
    opacity: 1;
    border-color: var(--ui-blue);
}

.terminal-lang-btn {
    padding: 4px 8px;
    border: 1px solid #1a2a3a;
    background: rgba(0, 0, 0, 0.5);
    color: #4a5a6a;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.terminal-lang-btn.active {
    color: var(--ui-blue);
    border-color: var(--ui-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--ui-blue);
    background: rgba(0, 243, 255, 0.1);
}

.flag-icon {
    width: 24px;
    height: auto;
    display: block;
    filter: saturate(0.8);
    /* Passt die Flaggen etwas an den düsteren SC-Look an */
}

.flag-link {
    line-height: 0;
    transition: all 0.2s ease;
    filter: grayscale(0.8) opacity(0.5);
}

.flag-link img {
    width: 24px;
    /* Etwas kleiner, damit es in der Nav nicht knallt */
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.flag-link:hover,
.flag-link.active {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.flag-link.active img {
    border-color: var(--ui-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

body {
    background: var(--ui-bg);
    background-image: radial-gradient(circle at center, #0a1520 0%, #03080c 100%);
    color: white;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    padding: calc(var(--navbar-height) + 40px) 0 0 0;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.border-sell-row {
    border: 1px solid #ff0000 !important;
}

.border-buy-row {
    border: 1px solid #23f92a !important;
}

.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    /* Kompakterer Textfluss */
}

.brand-logo {
    color: var(--ui-blue);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1.3em;
    text-shadow: 0 0 10px rgba(34, 218, 255, 0.5);
    margin: 0;
    padding: 0;
    display: block;
}

.brand-sub {
    font-size: 0.6em;
    /* Etwas kleiner für besseren Kontrast */
    color: #b8c7db;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.btn {
    width: 100%;
    padding: 15px;
    background: var(--ui-blue);
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-add-ware {
    background: transparent;
    color: var(--ui-blue);
    border: 1px dashed var(--ui-blue);
    padding: 8px 15px;
    cursor: pointer;
    margin: 15px;
    text-transform: uppercase;
    font-size: 0.8em;
}

.btn-delete {
    background: transparent;
    border: 1px solid #ff0000;
    color: #eeff00;
    padding: 8px 15px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    transition: 0.3s;
}

.btn-delete:hover {
    background: transparent;
    color: rgb(255, 0, 0);
}


.btn-filter {
    background: var(--ui-blue);
    color: #050a0f;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-load {
    background: #00ff88;
    color: black;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--ui-blue);
    color: var(--ui-blue);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-login:hover {
    background: var(--ui-blue);
    color: black;
}

.btn-logout {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--ui-blue);
    color: var(--ui-blue);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 20px;
}

.btn-logout:hover {
    background: var(--ui-blue);
    color: black;
}

.btn-remove-stop {
    color: #ff4444;
    cursor: pointer;
    font-size: 0.8em;
    border: 1px solid #ff4444;
    padding: 5px 10px;
    margin-left: auto;
}

.btn-reg {
    width: 100%;
    padding: 14px;
    background: rgba(0, 213, 255, 0.1);
    border: 1px solid var(--ui-blue);
    color: var(--ui-blue);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}


.btn-reg:hover {
    background: var(--ui-blue);
    color: black;
}


.btn-reset {
    background: transparent;
    color: #ff4444;
    border: 1px solid #ff4444;
    padding: 9px 15px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85em;
    transition: 0.3s;
    display: inline-block;
}

.btn-reset:hover {
    background: rgba(255, 68, 68, 0.1);
}

.btn-save {
    background: #0088ff;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}


.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--ui-blue);
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    text-transform: uppercase;
}

.btn-submit-all {
    background: var(--ui-blue);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    float: right;
    box-shadow: 0 0 20px rgba(0, 213, 255, 0.3);
    margin-bottom: 40px;
}

.canvas-area {
    background: #000;
    border: 2px dashed var(--ui-border);
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    transition: border-color 0.3s;
}

.canvas-area.dragover {
    border-color: var(--ui-blue);
    background: rgba(0, 213, 255, 0.05);
}

canvas {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--ui-blue);
    display: block;
    /* Von none auf block ändern */
    margin: 20px auto;
}

.cargo-table {
    width: 100%;
    border-collapse: collapse;
}

.cargo-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(26, 42, 58, 0.5);
}

.cargo-table th {
    text-align: left;
    font-size: 0.7em;
    color: var(--ui-blue);
    padding: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ui-border);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: #070e14;
    border: 1px solid #1a2a3a;
}

.checkbox-group {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--ui-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #ccc;
}

.check-item input {
    width: auto;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;

}

.custom-input-group {
    display: flex;
    flex-direction: column;
}

.custom-input-group label {
    font-size: 0.7em;
    color: var(--ui-blue);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.danger-zone {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    padding: 20px;
    margin-top: 20px;
}

.data-box {
    background: rgba(0, 213, 255, 0.05);
    border-left: 3px solid var(--ui-blue);
    padding: 15px;
    margin: 20px 0;
}

#debug-canvas {
    display: block;
    margin: 10px auto;
    border: 2px solid #ff0055;
    /* Rot für "Vorsicht, KI-Sicht!" */
    max-width: 100%;
    opacity: 0.8;
}

.filter-section {
    background: rgba(16, 29, 41, 0.5);
    border: 1px solid #1a2a3a;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    vertical-align: top;
    flex: 1;
    min-width: 140px;
}

.filter-group label {
    font-size: 0.7em;
    color: #4a5a6a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.filter-group input,
.filter-group select {
    background: #050a0f;
    color: white;
    border: 1px solid #1a2a3a;
    padding: 8px;
    box-sizing: border-box;
    margin: 0;
    height: 35px;
}

.main-footer {
    width: 100%;
    background: rgba(5, 10, 15, 0.95);
    border-top: 1px solid var(--ui-border);
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    font-size: 0.8em;
    z-index: 1000;
}

footer {
    flex-shrink: 0;
    background: rgba(5, 10, 15, 0.98);
    padding: 40px 20px;
    border-top: 1px solid var(--ui-border);
    width: 100%;
    text-align: center;
    margin-top: 60px;
    z-index: 10;
}

footer a {
    color: var(--ui-text-dim) !important;
    text-decoration: none;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: var(--ui-blue) !important;
    text-shadow: 0 0 8px var(--ui-blue);
    transform: translateY(-2px);
}

.footer-links {
    margin-top: 20px;
    font-size: 0.8em;
    color: #4a5a6a;
}

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

.global-settings {
    background: var(--ui-panel);
    border: 1px solid var(--ui-blue);
    padding: 15px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

h1,
h2,
h3,
h4 {
    color: var(--ui-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.icon-badge {
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(26, 42, 58, 0.5);
    border: 1px solid #333;
    cursor: help;
}

.icon-safe {
    color: #00ff88;
    border-color: #00ff88;
}

.icon-danger {
    color: #ff4444;
    border-color: #ff4444;
    opacity: 0.6;
}

.icon-space {
    color: var(--ui-blue);
}


.info-panel {
    flex: 1;
    background: rgba(0, 213, 255, 0.02);
    border: 1px solid var(--ui-border);
    padding: 20px;
}

.info-label {
    color: #4a5a6a;
    text-transform: uppercase;
    font-size: 0.8em;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(26, 42, 58, 0.5);
}


.info-value {
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background: #050a0f;
    border: 1px solid var(--ui-border);
    color: white;
    box-sizing: border-box;
}

label {
    display: block;
    margin-top: 15px;
    font-size: 0.75em;
    color: var(--ui-text-dim);
    text-transform: uppercase;
}

.legal-notice {
    margin-top: 10px;
    opacity: 0.3;
    font-size: 0.75em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.loader {
    display: none;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--ui-blue);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 10px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: rgba(11, 21, 31, 0.95);
    border: 1px solid var(--ui-border);
    border-top: 4px solid var(--ui-blue);
    box-shadow: 0 0 20px rgba(0, 213, 255, 0.2);
    text-align: center;
    z-index: 10;
}

.main-container {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-top: 3px solid var(--ui-blue);
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.main-frame {
    flex: 1 0 auto;
    width: 95%;
    max-width: 1200px;
    margin: 100px auto 40px auto;
    background: var(--ui-panel);
    border: 1px solid #1a2a3a;
    border-top: 4px solid var(--ui-blue);
    padding: 30px;
}

.main-panel {
    flex: 1.5;
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-top: 4px solid var(--ui-blue);
    padding: 25px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--ui-panel);
    border: 1px solid var(--ui-blue);
    padding: 30px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border-top: 4px solid var(--ui-blue);
}

.modal-btn {
    background: var(--ui-blue);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.msg {
    font-size: 0.8em;
    text-transform: uppercase;
    margin-bottom: 20px;
    min-height: 1.2em;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(10, 18, 25, 0.98);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-bottom: 1px solid var(--ui-border);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

[lang="cn"] body {
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.nav-container,
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Das ist der wichtigste Teil */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-item:hover {
    background: rgba(0, 213, 255, 0.1);
    border: 1px solid var(--ui-blue);
    color: var(--ui-blue);
    box-shadow: inset 0 0 10px rgba(0, 213, 255, 0.1);
}

.nav-item.active {
    border-bottom: 2px solid var(--ui-blue);
    color: var(--ui-blue);
}

.nav-links {
    display: flex;
    gap: 10px;

}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #1a2a3a;
    font-size: 0.85em;
    text-transform: uppercase;
    transition: all 0.3s;
    background: rgba(26, 42, 58, 0.2);
}

.nav-links a:hover {
    border-color: var(--ui-blue);
    color: var(--ui-blue);
    background: rgba(0, 213, 255, 0.1);
}

.nav-links a.active {
    color: var(--ui-blue);
    border-bottom: 2px solid var(--ui-blue);
}


.nav-logo {
    color: var(--ui-blue);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.2em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 213, 255, 0.5);
}

.col-name,
.list-header div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Spezieller Style für den externen Mining-Link */
.nav-links a.nav-external {
    color: rgba(224, 172, 0, 0.986);
    border-color: rgba(224, 172, 0, 0.986);
    background: rgba(0, 212, 255, 0.05);
}

.nav-links a.nav-external:hover {
    color: #fff;
    background: rgba(224, 172, 0, 0.557);
    border-color: rgba(224, 172, 0, 0.986);
    box-shadow: 0 0 10px rgba(224, 172, 0, 0.986);
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.policy-card {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-top: 3px solid var(--ui-blue);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.profile-container {
    width: 100%;
    flex: 1;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    background: var(--ui-panel);
    border: 1px solid #1a2a3a;
    border-top: 4px solid var(--ui-blue);
    padding: 60px;
    margin-top: 80px;
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.profit-pos {
    color: #00ff88;
    font-weight: bold;
}

.profit-neg {
    color: #ff4444;
    font-weight: bold;
}

.referral-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 15px;
    margin-left: 10px;
    border-left: 1px solid var(--ui-border);
    height: 100%;
    /* Nutzt die volle Höhe der Navbar für die Zentrierung */
}

.referral-img {
    width: 32px;
    height: 32px;
    background: #000;
}

.referral-text-link {
    color: var(--ui-blue);
    text-decoration: none;
    font-size: 0.8em;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    /* Etwas mehr "Fleisch" zum Klicken */
    border: 1px solid rgba(0, 213, 255, 0.2);
    border-radius: 3px;
    /* Leicht abgerundet passend zum Rest */
    transition: all 0.2s ease;
    display: inline-block;
    line-height: 1;
}

.referral-text-link:hover {
    color: white;
    background: rgba(0, 213, 255, 0.1);
    border-color: var(--ui-blue);
}

.register-box {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-top: 4px solid var(--ui-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}

.reset-link {
    display: block;
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.9em;
    transition: 0.3s;
}

.reset-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.route-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.route-select {
    flex-grow: 1;
}

.save-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 0 20px;
}

.save-management {
    background: rgba(11, 21, 31, 0.98);
    border-bottom: 1px solid var(--ui-blue);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    /* Zentriert den Inhalt */
    gap: 15px;
    align-items: center;
    position: fixed;
    top: 60px;
    /* Direkt unter der Top-Nav (falls diese ca. 60px hoch ist) */
    width: 100%;
    z-index: 900;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


.scan-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    margin-bottom: 30px;
}

.scan-table th {
    text-align: left;
    padding: 12px;
    background: rgba(0, 213, 255, 0.1);
    color: var(--ui-blue);
    font-size: 0.8em;
    text-transform: uppercase;
}

.scan-table td {
    padding: 10px;
    border-bottom: 1px solid var(--ui-border);
}

select,
input {
    width: 100%;
    padding: 12px;
    background: #0a1219;
    border: 1px solid #1a2a3a;
    color: white;
    margin-top: 5px;
    box-sizing: border-box;
    font-size: 0.9em;
    outline: none;
}

.seo-info-section {
    background: rgba(10, 20, 30, 0.5);
    /* Sehr dunkler, transparenter Hintergrund */
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    /* Hauchdünne blaue Linie */
    padding: 10px 10px;
    margin-top: 30px;
    /* Abstand zum Hauptinhalt */
    color: #888;
    /* Graue Schriftfarbe statt Weiß */
    font-size: 0.9em;
    line-height: 1.6;
    text-align: center;
}

.seo-info-section h2 {
    color: #aaa;
    /* Etwas heller als der Text */
    font-size: 1.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-info-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
}

.stop-card {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    margin-bottom: 25px;
    border-top: 2px solid var(--ui-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.stop-header {
    background: rgba(0, 213, 255, 0.03);
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--ui-border);
}

.summary-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(5, 10, 15, 0.98);
    border-top: 2px solid var(--ui-blue);
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: bold;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.system-notice-bar {
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(0, 163, 255, 0.05);
    /* Dezentes UI-Blau */
    border-left: 4px solid var(--ui-blue);
    border-top: 1px solid rgba(0, 163, 255, 0.2);
    border-bottom: 1px solid rgba(0, 163, 255, 0.2);
    color: #ccc;
    font-size: 0.9em;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-icon {
    font-size: 1.5em;
    color: var(--ui-blue);
}

.system-notice-bar strong {
    color: var(--ui-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 12px;
    border-bottom: 1px solid #1a2a3a;
    font-size: 0.95em;
}

.terminal {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-top: 4px solid var(--ui-blue);
    padding: 30px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 213, 255, 0.1);
}

.terminal-header {
    width: 100%;
    background: rgba(5, 10, 15, 0.98);
    border-bottom: 2px solid var(--ui-blue);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 213, 255, 0.15);
}

.terminal-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

th {
    text-align: left;
    color: var(--ui-blue);
    border-bottom: 2px solid #1a2a3a;
    padding: 12px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.top-nav {
    width: 100%;
    background: rgba(5, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ui-blue);
    padding: 15px 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 10px 15px rgba(0, 213, 255, 0.3);
}

.nav-row-top {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(26, 42, 58, 0.5);
    display: flex;
    justify-content: center;
    /* Zentriert den inneren Container */
}

/* Untere Zeile: Flaggen links, Menü rechts */
.nav-row-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
}

/* Reflink Text-Wrapper Korrektur */
.referral-text-wrapper {
    display: flex;
    align-items: center;
}

.nav-logo-h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--ui-blue);
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    /* Oder 1400px, passend zu deiner .main-frame */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* Drückt Logo nach links, Reflink nach rechts */
    align-items: center;
    padding: 0 20px;
    /* Sicherheitsabstand zum Rand auf Handys */
}

.user-status {
    font-size: 0.75em;
    color: #10ff0c;
    border-left: 1px solid #1a2a3a;
    padding-left: 15px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Falls du doch einen Umbruch bei sehr langen deutschen Namen willst, 
   aber NICHT bei chinesischen Zeichen: */
[lang="cn"] td,
[lang="cn"] th {
    letter-spacing: 0.05em;
    /* Mehr Abstand zwischen den Zeichen für bessere Lesbarkeit */
    word-break: keep-all;
    /* Verhindert das Aufbrechen von chinesischen Wörtern */
}