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

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    font-family: 'Cinzel', serif;
    overflow: hidden;
    position: relative;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.logo-container {
    text-align: center;
    animation: fadeInUp 2s ease-out;
}

.logo {
    font-size: 4rem;
    font-weight: 600;
    color: #4a9d5c;
    text-shadow: 0 0 3px rgba(74, 157, 92, 0.2);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.mystical-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a9d5c, transparent);
    margin: 0 auto;
    opacity: 0.6;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #4a9d5c;
    border-radius: 50%;
    animation: float 8s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 15%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 35%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 45%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.particle:nth-child(6) {
    left: 55%;
    animation-delay: 0.5s;
    animation-duration: 8.5s;
}

.particle:nth-child(7) {
    left: 65%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

.particle:nth-child(8) {
    left: 75%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(9) {
    left: 85%;
    animation-delay: 3.5s;
    animation-duration: 9.5s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-delay: 4.5s;
    animation-duration: 5.5s;
}

.particle:nth-child(11) {
    left: 12%;
    animation-delay: 0.8s;
    animation-duration: 7.2s;
}

.particle:nth-child(12) {
    left: 88%;
    animation-delay: 1.8s;
    animation-duration: 6.8s;
}

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


@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .mystical-line {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .mystical-line {
        width: 120px;
    }
}
