:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --secondary-text: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 350px;
    height: auto;
    transition: transform 0.3s ease;
}

.content h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    margin-top: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.2rem;
    }

    .logo {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }

    .logo {
        width: 140px;
    }
}