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

body {
    font-family: 'Cal Sans', sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        opacity: 0.6;
    }
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 4rem;
}

.domain-name {
    font-size: clamp(1.5rem, 8vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    word-break: break-word;
    line-height: 1.2;
    padding: 0 1rem;
    hyphens: auto;
    overflow-wrap: break-word;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.status-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
}

.status-text {
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.description {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.8;
    font-family: 'Space Mono', monospace;
    padding: 0 1rem;
}

.cta-section {
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: auto;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-info {
    font-family: 'Space Mono', monospace;
    opacity: 0.7;
    font-size: 0.9rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature p {
    opacity: 0.8;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        margin-bottom: 2rem;
    }
    
    .domain-name {
        font-size: clamp(1.2rem, 10vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .status-badge {
        padding: 0.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .status-text {
        font-size: 1rem;
    }
    
    .description {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .contact-info {
        font-size: 0.8rem;
        padding: 0 0.5rem;
        word-break: break-word;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .domain-name {
        font-size: clamp(1rem, 12vw, 2rem);
        line-height: 1.1;
    }
    
    .background-pattern {
        animation: none; /* Reduce animations on small screens for performance */
    }
    
    .cta-button {
        width: 90%;
        max-width: 280px;
    }
}

/* High DPI/Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .domain-name {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .background-pattern,
    .domain-name,
    .status-badge {
        animation: none;
    }
    
    .cta-button:hover,
    .feature:hover {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: light) {
    body {
        background: #fff;
        color: #000;
    }
    
    .domain-name {
        background: linear-gradient(45deg, #000, #333);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .contact-info a {
        color: #667eea;
    }
}