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

:root {
    --bg: #080808;
    --text: #e8e8e8;
    --muted: #666;
    --accent: #d4d4d4;
    --dot: #444;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    cursor: crosshair;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.domain-wrapper {
    text-align: center;
    pointer-events: auto;
}

.domain-name {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.02em;
}

.domain-name .char {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: default;
}

.domain-name .dot {
    color: var(--dot);
    font-weight: 100;
    margin: 0 0.05em;
    animation: breathe 3s ease-in-out infinite;
}

.domain-name .char:hover {
    transform: translateY(-8px);
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.tagline {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.15em;

    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.contact-hint {
    position: absolute;
    bottom: 7%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.pulse {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.copyright {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}

.copyright::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.copyright:hover::after {
    width: 100%;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

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

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 2.2rem;
    }
    .tagline {
        font-size: 0.8rem;
    }
    .contact-hint {
        font-size: 0.75rem;
    }
}

.stats {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}