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

:root {
    --metallic-dark: #0a0a0a;
    --metallic-mid: #1a1a1a;
    --metallic-light: #2d2d2d;
    --glare-color: rgba(255, 255, 255, 0.03);
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.5);
}

html, body {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background: var(--metallic-dark);
    color: var(--text-primary);
    overflow: hidden;
}

/* Metallic Background */
.metallic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, var(--metallic-mid) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 30% 30%, var(--metallic-light) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 70%, var(--metallic-light) 0%, transparent 50%),
        linear-gradient(180deg, var(--metallic-dark) 0%, #0d0d0d 50%, var(--metallic-dark) 100%);
}

/* Animated Glares */
.glare {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.glare-1 {
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: glareMove1 15s ease-in-out infinite;
}

.glare-2 {
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: 20%;
    right: -5%;
    animation: glareMove2 20s ease-in-out infinite;
}

.glare-3 {
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    animation: glareMove3 18s ease-in-out infinite;
}

@keyframes glareMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(100px, 50px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes glareMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-80px, -30px) rotate(-5deg);
        opacity: 1;
    }
}

@keyframes glareMove3 {
    0%, 100% {
        transform: translateY(-50%) translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) translate(50px, 20px);
        opacity: 0.8;
    }
}

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

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.logo {
    max-width: 280px;
    max-height: 280px;
    width: auto;
    height: auto;
    filter: brightness(1.1) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                filter 0.6s ease;
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.2) contrast(1.1);
}

/* Loading Section */
.loading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--metallic-light);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    animation: loadingSlide 2s ease-in-out infinite;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingSlide {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Navigation */
.nav {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.4s ease, letter-spacing 0.4s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
    color: var(--text-primary);
    letter-spacing: 0.2em;
}

.nav-link:hover::after {
    width: 100%;
}

/* Social Links */
.socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Demo Line */
.demo-line {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-text {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Contact Email */
.contact-email {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.contact-email:hover {
    color: var(--text-primary);
    letter-spacing: 0.15em;
}

/* Subtle grain overlay for metallic texture */
.metallic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
        max-height: 200px;
    }
    
    .nav {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 160px;
        max-height: 160px;
    }
    
    .nav {
        gap: 1.2rem;
    }
}

