/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Spiritual Background Container */
.spiritual-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Om Symbol Animations */
.om-symbol {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.08);
    animation: float-vertical 20s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.om-symbol:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.om-symbol:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-duration: 30s;
    animation-delay: 5s;
    font-size: 3rem;
}

.om-symbol:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: 10s;
    font-size: 5rem;
}

/* Mandala Pattern Animations */
.mandala {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    animation: rotate-mandala 30s infinite linear, pulse 4s infinite ease-in-out;
}

.mandala::before,
.mandala::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(138, 43, 226, 0.08);
    border-radius: 50%;
}

.mandala::before {
    width: 150px;
    height: 150px;
}

.mandala::after {
    width: 100px;
    height: 100px;
}

.mandala:nth-child(4) {
    top: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
}

.mandala:nth-child(5) {
    bottom: 15%;
    left: 10%;
    width: 180px;
    height: 180px;
    animation-duration: 40s;
}

/* Lotus Flower Animations */
.lotus {
    position: absolute;
    font-size: 3rem;
    animation: float-lotus 25s infinite ease-in-out;
    opacity: 0.1;
    filter: blur(1px);
}

.lotus:nth-child(6) {
    top: 30%;
    left: 5%;
    animation-duration: 20s;
}

.lotus:nth-child(7) {
    top: 70%;
    right: 15%;
    animation-duration: 28s;
    animation-delay: 7s;
}

.lotus:nth-child(8) {
    bottom: 10%;
    left: 50%;
    animation-duration: 32s;
    animation-delay: 14s;
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(9) { top: 15%; left: 25%; animation-duration: 18s; }
.particle:nth-child(10) { top: 45%; left: 70%; animation-duration: 22s; animation-delay: 3s; }
.particle:nth-child(11) { top: 75%; left: 40%; animation-duration: 20s; animation-delay: 6s; }
.particle:nth-child(12) { top: 25%; right: 20%; animation-duration: 24s; animation-delay: 9s; }
.particle:nth-child(13) { bottom: 30%; left: 15%; animation-duration: 19s; animation-delay: 12s; }

/* Sacred Geometry */
.sacred-geometry {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 215, 0, 0.06);
    transform: rotate(45deg);
    animation: rotate-geometry 40s infinite linear;
}

.sacred-geometry::before,
.sacred-geometry::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.04);
    transform: translate(-50%, -50%) rotate(45deg);
}

.sacred-geometry:nth-child(14) {
    top: 40%;
    left: 30%;
}

.sacred-geometry:nth-child(15) {
    bottom: 20%;
    right: 25%;
    animation-duration: 50s;
    animation-direction: reverse;
}

/* Animations */
@keyframes float-vertical {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
        opacity: 0.08;
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
        opacity: 0.12;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes float-lotus {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-40px) translateX(20px) rotate(10deg);
    }
    66% {
        transform: translateY(-20px) translateX(-20px) rotate(-10deg);
    }
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -80px);
        opacity: 0.8;
    }
}

@keyframes rotate-geometry {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f0e68c, #daa520, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(30, 30, 50, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.link-button:hover::before {
    width: 400px;
    height: 400px;
}

.link-button:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.link-icon {
    font-size: 1.5rem;
    z-index: 1;
}

.link-label {
    z-index: 1;
}

/* Footer */
footer {
    margin-top: 4rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Fade Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .links-container {
        gap: 1rem;
    }

    .link-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .om-symbol {
        font-size: 2.5rem;
    }

    .mandala {
        width: 150px;
        height: 150px;
    }

    .lotus {
        font-size: 2rem;
    }

    .sacred-geometry {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .site-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .link-button {
        padding: 1rem;
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .link-icon {
        font-size: 1.2rem;
    }

    header {
        margin-bottom: 2rem;
    }

    footer {
        margin-top: 2rem;
        font-size: 0.8rem;
    }
}
