:root {
    --primary-cyan: #00AEEF;
    --primary-pink: #EC008C;
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    background-color: #1a1a1a;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    backdrop-filter: blur(3px);
}

.content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    height: auto;
    /* If the logo has a white background, we might need a mix-blend-mode or border-radius. 
       Assuming it's a square JPG as uploaded, let's give it a clean look. */
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 174, 239, 0.2);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-cyan);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-pink);
    box-shadow: 0 0 10px var(--primary-pink);
}

p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subtext {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 2rem;
    letter-spacing: 1px;
}

/* Loader Animation */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-cyan);
    border-bottom-color: var(--primary-pink);
    margin: 0 auto;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 1.5rem;
    }
}
