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

html {
    height: 100%;
}

body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f3; /* Warmer, paper-like background */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path fill="%239C9C9C" fill-opacity="0.08" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"></path></svg>');
    border: 10px solid #111; /* Softer, deep charcoal border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow: hidden; /* Prevents scrollbars from appearing during animation */
}

main.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Creates the 3D space for the title */
    width: 100%;
}

.domain-name {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #000, #333);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
    
    /* Animation and Interaction */
    opacity: 0;
    transform: rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
    animation: fadeInRise 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

footer {
    width: 100%;
    max-width: 600px;
    padding: 20px 0;
    font-size: 0.875rem;
    color: #aaa;
    opacity: 0;
    animation: fadeInRise 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s forwards; /* Delayed start */
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.5;
}

@media (max-width: 600px) {
    body {
        border-width: 8px;
    }
    .domain-name {
        font-size: 3rem;
        letter-spacing: 1px;
    }
}