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

body {
    height: 100vh;
    background-color: #0d0d0d;
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#particleCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    text-align: center;
    padding: 20px;
    z-index: 10;
    pointer-events: none;
    width: 100%;
}

h1.domain-name {
    font-size: clamp(1.5rem, 6vw, 4.5rem);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
    word-break: break-word;
    padding: 0 10px;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #cccccc;
    min-height: 2em;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1.1em;
    background-color: #dc6b19;
    vertical-align: text-bottom;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
