/* Modern, Eye-catching Domain Page */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #10b981;
    --dark: #111827;
    --light: #ffffff;
    --gray: #6b7280;
    --bg: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Arabic', -apple-system, system-ui, sans-serif;
    background: var(--bg);
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

/* Network Animation */
.network-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    animation: pulse 3s infinite;
}

.node.n1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.node.n2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.node.n3 {
    bottom: 15%;
    left: 35%;
    animation-delay: 1s;
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.node.n4 {
    top: 60%;
    right: 10%;
    animation-delay: 1.5s;
}

.node.n5 {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    opacity: 0.3;
    transform-origin: left center;
}

.connection::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    height: 5px;
    width: 15px;
    background: var(--primary-light);
    border-radius: 3px;
    opacity: 0.8;
    animation: dataPacket 5s infinite linear;
}

.connection.c1 {
    top: calc(20% + 6px);
    left: calc(15% + 6px);
    width: 30vw;
    transform: rotate(15deg);
}

.connection.c2 {
    top: calc(30% + 6px);
    right: calc(25% + 6px);
    width: 20vw;
    transform: rotate(-25deg);
}

.connection.c3 {
    bottom: calc(15% + 6px);
    left: calc(35% + 6px);
    width: 40vw;
    transform: rotate(-10deg);
    background: linear-gradient(90deg, var(--secondary), var(--primary-dark));
}

.connection.c4 {
    top: calc(60% + 6px);
    right: calc(10% + 6px);
    width: 25vw;
    transform: rotate(20deg);
}

@keyframes dataPacket {
    0% { left: 0; opacity: 0; }
    5% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { left: 100%; opacity: 0; }
}

/* Content */
.content {
    width: 100%;
    max-width: 500px;
    z-index: 1;
    padding: 0 20px;
}

.domain-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.domain-header {
    text-align: center;
    margin-bottom: 30px;
}

.domain-name {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    animation: fadeIn 1s ease-out;
}

.domain-tld {
    color: var(--gray);
    font-weight: 700;
}

.domain-status {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
    animation: slideUp 0.8s ease-out;
}

.domain-message {
    text-align: center;
    margin: 30px 0;
    animation: fadeIn 1.2s ease-out;
}

.domain-message p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

.binary-divider {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 40px 0;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out;
}

.binary-divider span {
    display: inline-block;
    margin: 0 3px;
    color: var(--primary-light);
    font-family: monospace;
    font-size: 12px;
    opacity: 0.7;
    transform: translateY(0);
    animation: floatBinary 3s infinite ease-in-out;
}

.binary-divider span:nth-child(2) { animation-delay: 0.2s; }
.binary-divider span:nth-child(3) { animation-delay: 0.4s; }
.binary-divider span:nth-child(4) { animation-delay: 0.6s; }
.binary-divider span:nth-child(5) { animation-delay: 0.8s; }

@keyframes floatBinary {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 0.9; }
}

.domain-footer {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-top: 20px;
    animation: fadeIn 1.8s ease-out;
}

/* Entfernung aller Kontakt- und Sprachauswahl-Stile */
.imprint-link,
.contact-link,
.modal,
.modal-content,
.close-modal,
.language-toggle {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .domain-name {
        font-size: 36px;
    }
    
    .domain-card {
        padding: 30px 20px;
    }
    
    .domain-message p {
        font-size: 16px;
    }
    
    .binary-divider {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 32px;
    }
    
    .connection {
        display: none;
    }
    
    .node {
        width: 8px;
        height: 8px;
    }
}
