body {
    background-color: #130216; 
    color: #ffffff;
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600; /* SEMIBOLD globally */
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden; 
    padding-bottom: 0; 
}

.logo-container {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 300px;
    z-index: 20; 
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Container (Warning) */
.main-container {
    display: flex;           
    align-items: center;     
    gap: 40px;               
    max-width: 1400px;       
    padding: 20px;
    margin-top: -180px;  
    position: relative;
    z-index: 10; 
}

.warning-icon img {
    width: 160px;            
    height: auto;
    display: block;
}

.warning-text {
    text-align: left;
}

/* ===== INNER SHADOW STYLE FOR BIG HEADER ===== */
.warning-text h1 {
    font-family: 'Quicksand', sans-serif; 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;        
    margin: 0 0 15px 0;      
    line-height: 1.1;
    white-space: nowrap;

    /* INNER SHADOW */
    text-shadow:
        0px -2px 3px rgba(0, 0, 0, 0.7),
        0px 2px 4px rgba(255, 255, 255, 0.12);
}

.warning-text p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);       
    font-weight: 300;        
    margin: 0;
    color: #e0e0e0;          
}

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: space-between; 
    margin-top: 60px;        
    flex-wrap: wrap;         
    width: 100%;             
    max-width: 1400px;
    padding: 0 20px;         
    box-sizing: border-box;  
    position: relative;
    z-index: 10; 
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;               
}

.contact-item img {
    width: 80px;             
    height: auto;
}

/* ===== INNER SHADOW FOR CONTACT HEADERS ===== */
.contact-text h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;        
    margin: 0 0 5px 0;

    /* INNER SHADOW */
    text-shadow:
        0px -2px 2px rgba(0, 0, 0, 0.7),
        0px 1px 3px rgba(255, 255, 255, 0.1);
}

.contact-text a {
    font-size: clamp(1rem, 1.5vw, 1.5rem);       
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.9;
    font-weight: 300;
}

/* --- FOOTER WAVES STYLES --- */
.waves-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px; 
    z-index: 1; 
    overflow: hidden;
    pointer-events: none;
}

.wave-1 {
    position: absolute;
    right: 0; 
    left: auto;      
    top: 0;     
    width: 60vw; 
    max-width: 888px;
    height: auto;
    z-index: 1;
}

.wave-2 {
    position: absolute;
    right: 0;   
    left: auto;
    top: 30px;     
    width: 70vw;
    max-width: 1045px;
    height: auto;
    z-index: 2; 
}

/* Mobile Responsiveness */
@media (max-width: 1100px) { 
    body {
        display: block;
        padding-top: 20px;
    }

    .logo-container {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 40px auto;
        text-align: center;
        width: 200px;
    }

    .main-container {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
    }

    .warning-text {
        text-align: center;
    }
    
    .warning-text h1 {
        white-space: normal;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-item {
        width: 100%;
        justify-content: center;
        text-align: left;
    }
    
    .waves-footer {
        height: 200px;
    }
    
    .wave-1, .wave-2 {
        width: 100%;
        max-width: none;
    }
}
