html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("../IMG/loeadingSite.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 1rem;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 4rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 169, 97, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    max-width: 90%;
    box-sizing: border-box;
}

.container h1 {
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    color: #C9A961; 
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 2.5rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    body {
        background-position: center top;
    }

    .container {
        padding: 1.5rem 1.5rem;
        border-radius: 8px;
        border-width: 1px;
    }

    .container h1 {
        letter-spacing: 0.5px;
    }
}

@media (max-height: 450px) and (orientation: landscape) {
    .container {
        padding: 1rem 2rem;
    }

    .container h1 {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
}