* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Sacred Background Elements */
.sacred-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.mandala {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 2px) center/40px 40px,
               radial-gradient(circle, rgba(118, 75, 162, 0.2) 1px, transparent 2px) center/80px 80px;
    animation: mandalaRotate 60s linear infinite;
    border-radius: 50%;
}

@keyframes mandalaRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: lightMove 15s ease-in-out infinite;
}

@keyframes lightMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

.floating-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.petal {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: floatUp 20s linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Main Content */
.brand-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.brand-logo {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.guiding-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guiding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.intro-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.breathing-text {
    font-size: 16px;
    color: #8B4513;
    margin-bottom: 25px;
    font-weight: 500;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.reveal-button {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #8B4513;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3),
                inset 0 -3px 10px rgba(0,0,0,0.2),
                inset 0 3px 10px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.reveal-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4),
                inset 0 -3px 10px rgba(0,0,0,0.3),
                inset 0 3px 10px rgba(255,255,255,0.4);
}

.reveal-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.reveal-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
    opacity: 0;
}

.reveal-button:active::after {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

/* Quote Display Section */
.quote-section {
    display: none;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.quote-container {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 3px solid rgba(118, 75, 162, 0.2);
    position: relative;
    overflow: hidden;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quote-text {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: quoteFadeIn 1.5s ease 0.2s forwards;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes quoteFadeIn {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.quote-author {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0;
    animation: quoteFadeIn 1.5s ease 0.4s forwards;
    letter-spacing: 1px;
}

.sacred-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    animation: imageFadeIn 2s ease 0.6s forwards;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,215,0,0.2) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

.sacred-image.error::before {
    content: '🕉️';
    position: absolute;
    font-size: 60px;
    color: rgba(255,255,255,0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sacred-image.error {
    border: 3px solid rgba(255, 215, 0, 0.5);
}

@keyframes imageFadeIn {
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.reassurance-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
    animation: quoteFadeIn 1.5s ease 0.8s forwards;
}

.another-quote-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
    transition: all 0.3s ease;
    margin: 10px;
}

.another-quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.4);
}

.home-button {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #8B4513;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    margin: 10px;
    text-decoration: none;
    display: inline-block;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-text {
        font-size: 28px;
    }
    
    .guiding-section {
        padding: 30px 20px;
    }
    
    .sacred-image {
        width: 150px;
        height: 150px;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}