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

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background: #000 url('../img/5280_SERVER_SPLASH.png') no-repeat center top;
    background-size: cover;
    color: #b3b3b3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    letter-spacing: -.01em;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.title {
    /* font-size: clamp(3rem, 10vw, 6rem);*/
    font-weight: 300;
    margin-bottom: 7rem;
    line-height: 1.2;
    font-size: 5rem;
   
    
    
}

.subtitle {
    /* font-size: clamp(1.2rem, 3vw, 1.675rem); */
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5.5rem;
    color: #fff;
    font-size: 1.675rem;
}

.warning {
    /* font-size: clamp(0.95rem, 2vw, 1.15rem); */
    font-weight: 300;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 16pt;
}


/* Desktop break - show on larger screens */
.desktop-break {
    display: inline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        margin-bottom: 5rem;
        font-size: 4.5rem;
    }

    .subtitle {
        margin-bottom: 4rem;
        font-size: 1.5rem;
    }

    .warning {
        font-size: 15pt;

    }
    
    /* Hide desktop break on mobile/tablet */
    .desktop-break {
        display: none;
    }
}

@media (max-width: 480px) {
    .title {
        margin-bottom: 4rem;
        font-size: 4rem;
    }

    .subtitle {
        margin-bottom: 3rem;
        font-size: 1.375;
    }

    .warning {
        font-size: 14pt;
    }
}