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

@font-face {
    font-family: 'Space Grotesk';
    src: url('./fonts/SpaceGrotesk.woff2') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #ffffff;
    --text: #333333;
    --muted: #999999;
    --accent: #555555;
}

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

a, a:hover, a:active, img, .domain-name img {
    cursor: url('cursor.png') 16 16, pointer;
}

#dogCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.domain-name img {
    width: 350px;
    height: auto;
    max-width: 90vw;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

.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;
}

.domain-sale-line {
    position: absolute;
    bottom: 7.2rem;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
    pointer-events: auto;
}

.domain-sale-line a {
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}

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

.domain-sale-line a:hover {
    color: var(--accent);
}

.domain-sale-line a:hover::after {
    width: 100%;
}

.contact-hint {
    position: absolute;
    bottom: 5rem;
    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;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.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 img {
        width: 280px;
    }
    .tagline {
        font-size: 0.8rem;
    }
    .contact-hint {
        font-size: 0.75rem;
    }
    .domain-sale-line {
        font-size: 0.75rem;
        bottom: 6.8rem;
    }
}

.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;
}
