* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img {
    max-height: 50px;
    width: auto;
    display: block;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.message {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 500;
    max-width: min(90vw, 1800px);
}

.message strong {
    color: #0cc0df;
    font-weight: 600;
}

.message a {
    color: #0cc0df;
    text-decoration: none;
}

.message a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .message {
        font-size: 1.2rem;
    }
}