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

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    background: #1a1a1a url('assets/background.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.title {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.footer {
    padding: 1.5rem 2rem;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.footer p {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

/* Mobile view - allow two lines */
@media (max-width: 768px) {
    body {
        background-position: center 40%;
    }

    .container {
        padding: 1rem;
        align-items: center;
        justify-content: center;
    }

    .title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        word-spacing: 100vw;
        margin-top: -10vh;
    }

    .footer {
        padding: 1rem;
    }

    .footer p {
        font-size: 0.75rem;
    }
}

/* Desktop view - single line */
@media (min-width: 769px) {
    .title {
        white-space: nowrap;
    }
}

/* Large desktop optimization */
@media (min-width: 1920px) {
    .title {
        font-size: 8rem;
    }
}
