@charset "UTF-8";

/* 
 * UNKNOWN LIEGE - Under Construction Page
 * Colors: Black, Flash Green, White, Dark Blue, Gold
 */

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

:root {
    --color-black: #000000;
    --color-flash-green: #39FF14;
    --color-white: #FFFFFF;
    --color-dark-blue: #001f3f;
    --color-gold: #FFD700;
    --color-overlay: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

/* Video Overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.75) 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: -1;
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 85%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Logo Container */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

/* Content */
.content {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
    letter-spacing: 0.15em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.message {
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.message p {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .message p {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .message {
        padding: 1rem 2rem;
    }
    
    .message p {
        font-size: 1.3rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .message {
        padding: 0.8rem 1.5rem;
    }
    
    .message p {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* Sparkle Effect */
.sparkle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: sparkle-animation linear infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8),
                0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes sparkle-animation {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-80vh) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.3);
    }
}
