body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color: #000;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

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

header {
margin-bottom: 40px;
}

.logo {
width: 150px;
margin: 0 auto;
}

.logo img {
width: 100%;
height: auto;
}

.logo-text {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;  /* For ARCANUS */
}
.logo-subtext {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;  /* For AI */
}

h1 {
font-size: 4em;
margin-top: 20px;
font-weight: 300;
}

main p {
font-size: 1.2em;
margin-bottom: 30px;
font-weight: 200;
}

.cta-button {
background-color: #FF6B6B;
color: #fff;
border: none;
padding: 15px 30px;
font-size: 1.1em;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.cta-button:hover {
background-color: #FF8E8E;
}
