/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BASE ================= */
html, body {
    height: 100%;
    font-family: "Playfair Display", "Times New Roman", serif;
    overflow: hidden;
    background: #000;
    color: #f3ede4;
}

/* ================= BACKGROUND GRADIENT ================= */
.background {
    position: fixed;
    inset: 0;
    background:
            radial-gradient(circle at center,
            rgba(185, 70, 65, 0.9) 0%,
            rgba(125, 40, 45, 0.95) 35%,
            rgba(70, 20, 25, 0.95) 60%,
            rgba(40, 10, 12, 0.98) 75%);
    z-index: 1;
}

/* ================= CANVAS ================= */
#stars {
    position: absolute;
    inset: 0;
}

/* ================= CONTENT ================= */
.content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(20px, 5vw, 60px);
}

/* ================= LOGO ================= */
.logo {
    width: clamp(220px, 32vw, 360px);
    max-width: 85vw;
    margin-bottom: clamp(30px, 6vh, 50px);
    filter:
            drop-shadow(0 0 40px rgba(255,215,160,0.45))
            drop-shadow(0 0 90px rgba(255,170,100,0.35));
    animation: float 7s ease-in-out infinite;
}

.company {
    width: clamp(220px, 32vw, 360px);
    max-width: 85vw;
    margin-bottom: clamp(30px, 6vh, 50px);
}

/* ================= TITLE ================= */
.title {
    color: #d1ce90;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 400;
    letter-spacing: clamp(2px, 0.4vw, 4px);
    margin-bottom: clamp(16px, 3vh, 24px);
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(255,210,160,0.35);
}

/* ================= SUBTITLE ================= */
.subtitle {
    font-size: clamp(14px, 1.6vw, 17px);
    color: #e0d6c5;
    max-width: 520px;
    line-height: 1.8;
}

/* ================= LANG ================= */
.lang {
    margin-top: clamp(28px, 5vh, 48px);
    font-size: clamp(12px, 1.2vw, 14px);
    letter-spacing: clamp(3px, 0.5vw, 4px);
    color: #cbb78f;
}

/* ================= LOGO FLOAT ================= */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ================= SMALL MOBILE (SAFE AREA) ================= */
@media (max-width: 420px) {
    .content {
        justify-content: center;
    }

    .subtitle {
        max-width: 90%;
        line-height: 1.6;
    }
}

/* ================= SHORT HEIGHT DEVICES ================= */
@media (max-height: 600px) {
    .logo,
    .company {
        margin-bottom: 24px;
    }

    .lang {
        margin-top: 24px;
    }
}
