```css
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');


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


body {

    min-height: 100vh;

    background: #000;

    font-family: 'Inter', sans-serif;

    color: white;

    overflow: hidden;

}


/* Cinematic background */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.9)
        ),
        url("images/background.jpg");

    background-size: cover;

    background-position: center;

    z-index: -2;

}


/* Soft luxury glow */

.overlay {

    position: fixed;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,0.08),
            transparent 45%
        );

    z-index: -1;

}


/* Main content */

.landing {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;

}


/* Logo */

.logo {

    width: min(420px, 80vw);

    height: auto;

    margin-bottom: 35px;

    animation: fadeIn 2s ease;

}


/* Tagline */

.tagline {

    font-size: 15px;

    font-weight: 300;

    letter-spacing: 5px;

    color: #d4af37;

    margin-bottom: 45px;

    text-transform: uppercase;

}


/* Platform icons */

.links {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

}


.links a {

    color: #d4af37;

    font-size: 30px;

    text-decoration: none;

    transition: all 0.4s ease;

}


.links a:hover {

    color: white;

    transform: translateY(-6px);

    text-shadow:
        0 0 20px rgba(212,175,55,0.8);

}


/* Footer */

footer {

    position: absolute;

    bottom: 25px;

    font-size: 12px;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.35);

}


/* Entrance animation */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* Mobile */

@media(max-width:600px) {


    .logo {

        width: 85vw;

        margin-bottom: 25px;

    }


    .tagline {

        font-size: 11px;

        letter-spacing: 3px;

        margin-bottom: 35px;

    }


    .links {

        gap: 25px;

    }


    .links a {

        font-size: 25px;

    }


}
```
