@font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/Aeonik-Regular.woff2') format('woff2'),
         url('./assets/fonts/Aeonik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('./assets/fonts/Aeonik-Medium.woff2') format('woff2'),
         url('./assets/fonts/Aeonik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

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

html {
    background: black;
    background-size: contain;
}

body {
    text-align: center;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 100px 20px;
}

.container > *:not(:last-child) {
    margin-bottom: 50px;
}

video {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
}

a {
    color: #7A78FF;
}

ul, ol {
    margin-left: 16px;
}

ul.features, ol.features {
    list-style: none;
}

ul.features > li, ol.features > li{
    margin-bottom: 10px;
}

.secondary {
    opacity: 0.5;
}

.pre-release {
    background: linear-gradient(135deg, #7A78FF 0%, #5A58E5 100%);
    border-radius: 20px;
    padding: 30px 20px;
    margin: 40px 0;
}

.pre-release h2 {
    color: white;
    margin-bottom: 15px;
}

.pre-release .secondary {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #7A78FF;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.small-text {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}
