/* ===================================
   MGL Interactive - Coming Soon Page
   =================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===================================
   Header & Logo
   =================================== */

header {
    padding: 2rem 3rem;
}

.logo {
    display: inline-block;
}

.logo-mgl {
    font-family: 'Vina Sans', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.logo-interactive {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

/* ===================================
   Main Content
   =================================== */

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

.coming-soon {
    font-family: 'Ubuntu', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #00A8FF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    opacity: 0;
}

/* Typing effect - fade in when typing starts and stay visible */
.coming-soon.typing {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

/* Keep text visible after typing completes */
.coming-soon.typed {
    opacity: 1;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet and smaller devices */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 2rem;
    }

    .logo-mgl {
        font-size: 2rem;
    }

    .logo-interactive {
        font-size: 0.4rem;
    }

    .coming-soon {
        font-size: 2.5rem;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .logo-mgl {
        font-size: 1.5rem;
    }

    .logo-interactive {
        font-size: 0.3rem;
    }

    .coming-soon {
        font-size: 1.8rem;
    }
}