:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.loader {
    width: 50px;
    height: 2px;
    background-color: #333;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 1s both;
}

.loader::after {
    content: '';
    position: absolute;
    left: -50%;
    height: 100%;
    width: 50%;
    background-color: #fff;
    animation: slide 1.5s infinite ease-in-out;
}

@keyframes slide {
    0% { left: -50%; }
    100% { left: 100%; }
}

@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);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1rem;
    }
}
