/* Farblich neutrales und modernes Design */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000; /* HINTERGRUND SCHWARZ */
    color: #ccc; /* Textfarbe auf hellem Grau für Lesbarkeit */
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    background-color: #ffffff; /* Box bleibt weiß */
    color: #333; /* Text in der weißen Box wieder auf dunkle Farbe setzen */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); /* Schatten angepasst für dunklen Hintergrund */
    max-width: 800px;
    width: 100%;
    text-align: center;
}
h1 {
    color: #1a1a1a;
    font-size: 2em;
    margin-bottom: 0.5em;
}
h2 {
    color: #1a1a1a;
    margin-top: 1.5em;
}
p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

/* Sicherstellen, dass das strong-Tag überall fett ist */
strong {
    font-weight: bold;
}

/* Grafische Hervorhebung des Domainwechsels */
.domain-change-wrapper {
    display: flex; /* Flexbox für die horizontale Anordnung */
    justify-content: center; /* Zentriert die Gruppe horizontal */
    align-items: center; /* WICHTIG: Zentriert die Elemente (Pfeil) vertikal */
    margin: 20px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.8em;
    font-weight: bold;
}

.old-domains, .new-domain-group {
    text-align: right;
    line-height: 1.2;
}

.old-domains {
    padding-right: 20px; /* Abstand vor dem Pfeil */
}

.new-domain-group {
    text-align: left;
    padding-left: 20px; /* Abstand nach dem Pfeil */
}

/* Der Pfeil selbst */
.arrow-separator {
    font-size: 1.5em; /* Macht den Pfeil etwas größer als der Domain-Text */
    color: #0077b6;
}

/* Style für die alte Domain-Endung (.eu und .net) */
.old-domain {
    color: #cc0000; /* Rot für 'alt' */
}
/* Style für die neue Domain-Endung (.one) */
.new-domain {
    color: #0077b6; /* Klares Blau für 'neu' */
}
.domain-name {
    color: #333; /* Neutral für den Hauptnamen */
}

/* Spezielle Hervorhebung (Infobox) */
.callout {
    background-color: #fff3cd;
    border: 1px solid #ffe0a3;
    padding: 15px;
    border-radius: 8px;
    color: #664d03;
    margin: 20px 0;
    font-weight: bold;
}

/* COUNTDOWN STYLING */
.countdown-text {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.countdown {
    font-size: 1.6em;
    font-weight: bold;
    color: #cc0000; /* Countdown in Rot für Dringlichkeit */
    margin-bottom: 30px;
    padding: 10px;
    border: 2px solid #cc0000;
    border-radius: 8px;
    display: inline-block;
}
.countdown .time-unit {
    font-size: 1.2em;
    font-weight: extra-bold;
    color: #1a1a1a; /* Zahlen selbst dunkler und sehr auffällig */
}

/* Domain-Liste */
.domain-list {
    text-align: left;
    margin: 30px 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.domain-list table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
}
.domain-list th, .domain-list td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* ÜBERSCHRIFTEN IN GROSSBUCHSTABEN */
.domain-list th {
    background-color: #f4f4f4;
    color: #333;
    text-align: left;
    text-transform: uppercase; 
}

/* ZEBRASTREIFEN-EFFEKT: */
/* Dunkelgrau für ungerade Zeilen */
.domain-list tr:nth-child(odd) {
    background-color: #e9e9e9; 
}
/* Hellgrau für gerade Zeilen */
.domain-list tr:nth-child(even) {
    background-color: #f7f7f7; 
}

/* Farbe für alte Domain in der Liste */
.domain-list td:first-child {
    color: #cc0000;
}
/* Farbe für neue anklickbare Domain in der Liste */
.domain-list td:last-child a {
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
}
.domain-list td:last-child a:hover {
    text-decoration: underline;
}

/* Neuer Abschnitt für Browser-Links */
.browser-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}
.browser-links li {
    padding: 5px 0;
    border-bottom: 1px dotted #eee;
    color: #333; /* Sicherstellen, dass die Liste in der weißen Box lesbar ist */
}
.browser-links li a {
    color: #0077b6;
    text-decoration: none;
}
.browser-links li a:hover {
    text-decoration: underline;
}

/* Kontaktinformationen */
.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}
.contact-info a {
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* Kontaktinformationen */
.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}
.contact-info a {
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* NEU: Besucher-Counter Styling */
.visitor-count {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #555;
}
.visitor-count strong {
    color: #0077b6; /* Die Zahl hervorheben */
    font-size: 1.1em;
}