* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.header {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.logo-container {
    display: inline-block;
    background-color: #333333;
    padding: 0.4rem 1.2rem;
    border-radius: 3px;
}

.logo {
    width: 80px;
    height: auto;
    display: block;
}

.main-content {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 60px;
    }
    
    .header {
        top: 1.5rem;
    }
}
