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

body {
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    background: #000;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    color: white;
}

.loading-text {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.loading-text::after {
    content: '';
    animation: dots 2s infinite;
}

@keyframes dots {
    0% {
        content: '';
    }
    25% {
        content: '.';
    }
    50% {
        content: '..';
    }
    75% {
        content: '...';
    }
    100% {
        content: '';
    }
}

/* Main Content Styles */
.main-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in;
}

.main-content.hidden {
    opacity: 0;
    visibility: hidden;
}

.main-content.show {
    opacity: 1;
    visibility: visible;
}

.content-container {
    text-align: center;
    position: relative;
}

.main-text {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.copyright {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 1.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loading-spinner {
        font-size: 3rem;
    }
    
    .loading-text {
        font-size: 1.2rem;
    }
    
    .main-text {
        font-size: 2rem;
    }
    
    .copyright {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .loading-spinner {
        font-size: 2.5rem;
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    .main-text {
        font-size: 1.5rem;
    }
}