body {
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-svg .text {
    font-family: 'Arial', sans-serif;
    font-size: 48px;
    fill: rgba(255, 255, 255, 0.05);
    text-anchor: middle;
    dominant-baseline: middle;
    animation: float 10s ease-in-out infinite;
}

.container {
    text-align: center;
    z-index: 1;
}

h1 {
    color: #00aaff;
    font-size: 3em;
    margin-bottom: 0.5em;
    animation: fadeInDown 1s ease-in-out;
}

p {
    color: #cccccc;
    font-size: 1.2em;
    margin-bottom: 2em;
    animation: fadeInUp 1s ease-in-out;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #00aaff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite, fadeIn 1s ease-in-out;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}