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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top left, #1b1f2a, #0d0f14);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 600px;
}

.brand {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

.x-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.25s ease;
}

.x-link:hover {
    background: #ffffff;
    color: #0d0f14;
    transform: translateY(-2px);
}

.x-icon {
    width: 18px;
    height: 18px;
}
