/* ============================================ */
/* Enhanced Pharaonic Hieroglyphics Background */
/* ============================================ */

/* Floating hieroglyphics particles */
.hieroglyph-particle {
    position: fixed;
    color: var(--gold);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    font-size: 40px;
    animation: floatHieroglyph 20s linear infinite;
}

@keyframes floatHieroglyph {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Staggered delays for particles */
.hieroglyph-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hieroglyph-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
}

.hieroglyph-particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
}

.hieroglyph-particle:nth-child(4) {
    left: 40%;
    animation-delay: 6s;
}

.hieroglyph-particle:nth-child(5) {
    left: 50%;
    animation-delay: 8s;
}

.hieroglyph-particle:nth-child(6) {
    left: 60%;
    animation-delay: 10s;
}

.hieroglyph-particle:nth-child(7) {
    left: 70%;
    animation-delay: 12s;
}

.hieroglyph-particle:nth-child(8) {
    left: 80%;
    animation-delay: 14s;
}

.hieroglyph-particle:nth-child(9) {
    left: 90%;
    animation-delay: 16s;
}

.hieroglyph-particle:nth-child(10) {
    left: 15%;
    animation-delay: 18s;
}

/* Different animation durations for variety */
.hieroglyph-particle:nth-child(odd) {
    animation-duration: 25s;
}

.hieroglyph-particle:nth-child(even) {
    animation-duration: 30s;
}