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

body {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow-x: hidden;
    background-color: #000;
}

.hero-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('lion-coming-soon-bg.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.container {
    width: 100%;
    padding: 0 10%;
}

.logo-section {
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

.logo {
    width: clamp(100px, 20vw, 180px);
    height: auto;
    margin-bottom: 5px;
}

.brand-name {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.9;
}

.content h1 {
    font-size: clamp(2.5rem, 8.5vw, 6.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content p {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.85;
}

.social-links-right {
    position: absolute;
    bottom: clamp(40px, 8vh, 80px);
    right: 10%;
    display: flex;
    gap: clamp(15px, 2vw, 30px);
}

.social-links-right a {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links-right a:hover {
    opacity: 0.5;
    transform: translateY(-3px);
}

.bottom-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.bottom-footer p {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    opacity: 0.6;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    body {
        justify-content: center;
    }
    .container {
        padding: 0 5%;
        text-align: center;
        margin-top: -5vh;
    }
    .content p {
        margin: 0 auto;
    }
    .social-links-right {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 70px;
        width: 100%;
        justify-content: center;
    }
    .logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}