/* Reset default margins and set full screen background */
body {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container layout */
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Logo specific sizing */
.brand-logo {
    width: 120px;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 24px auto; /* 24px spacing below logo */
}

/* Dim the subtitle slightly for better typography hierarchy */
.subtitle {
    color: #b3b3b3;
}
