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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.logo-container {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .main-logo {
        font-size: 2.5rem;
    }
}

.domain-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.domain {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.5;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-top: 5px;
}

.description {
    font-size: 1.1rem;
    color: #bbbbbb;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.98);
}
