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

body {
    font-family: 'Lato', sans-serif;
    background-color: #0a0a1a;
    color: #F0F0F0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particle Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #6a0dad, transparent),
        radial-gradient(2px 2px at 40px 70px, #00ffff, transparent),
        radial-gradient(1px 1px at 90px 40px, #6a0dad, transparent),
        radial-gradient(1px 1px at 130px 80px, #00ffff, transparent),
        radial-gradient(2px 2px at 160px 30px, #6a0dad, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particles 20s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    text-shadow: 0 0 20px #6a0dad, 0 0 40px #6a0dad;
}

h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 15px #00ffff;
}

h3 {
    font-size: 1.8rem;
    text-shadow: 0 0 10px #6a0dad;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Audio Control */
.audio-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(106, 13, 173, 0.8);
    border: 2px solid #6a0dad;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-control:hover {
    background: rgba(106, 13, 173, 1);
    box-shadow: 0 0 20px #6a0dad;
}

.audio-icon {
    font-size: 24px;
}

/* Start Overlay */
.start-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 50%, #0a0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 1s ease, visibility 1s ease;
}

.start-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.start-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.start-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5rem;
    color: #6a0dad;
    text-shadow: 0 0 30px #6a0dad, 0 0 60px #6a0dad;
    margin-bottom: 1rem;
    animation: titlePulse 3s ease-in-out infinite;
}

.start-description {
    font-size: 1.3rem;
    color: #F0F0F0;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.summon-button {
    position: relative;
    background: linear-gradient(45deg, #6a0dad, #00ffff, #6a0dad);
    background-size: 200% 200%;
    border: none;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Cinzel Decorative', serif;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

.summon-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(106, 13, 173, 0.8), 0 0 100px rgba(0, 255, 255, 0.3);
    animation: buttonHover 0.5s ease-in-out infinite alternate;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: buttonSweep 3s linear infinite;
}

.start-warning {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #00ffff;
    opacity: 0.7;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 30px #6a0dad, 0 0 60px #6a0dad; }
    50% { text-shadow: 0 0 40px #6a0dad, 0 0 80px #6a0dad, 0 0 120px #00ffff; }
}

@keyframes buttonGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes buttonHover {
    0% { box-shadow: 0 0 50px rgba(106, 13, 173, 0.8), 0 0 100px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 70px rgba(106, 13, 173, 1), 0 0 140px rgba(0, 255, 255, 0.5); }
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(106, 13, 173, 0.1) 0%, #0a0a1a 70%);
    overflow: hidden;
}

/* Summoning Background */
.summoning-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/operaScreenshot.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: blur(20px);
    z-index: 1;
    transition: filter 42s linear;
}

.summoning-background.clearing {
    filter: blur(0px);
}

/* Summoning Effects */
.summoning-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Floating Runes */
.floating-rune {
    position: absolute;
    font-size: 2rem;
    color: #6a0dad;
    text-shadow: 0 0 20px #6a0dad;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.rune-1 { top: 20%; left: 10%; animation-delay: 0s; }
.rune-2 { top: 30%; right: 15%; animation-delay: 1s; }
.rune-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.rune-4 { top: 60%; right: 25%; animation-delay: 3s; }
.rune-5 { bottom: 20%; right: 10%; animation-delay: 4s; }
.rune-6 { top: 40%; left: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 1; }
}

/* Energy Rings */
.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(106, 13, 173, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 4s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 600px;
    height: 600px;
    animation-delay: 2.6s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
        border-color: rgba(106, 13, 173, 0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
        border-color: rgba(0, 255, 255, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
        border-color: rgba(106, 13, 173, 0.8);
    }
}

/* Praying People */
.praying-people {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
    pointer-events: none;
}

.praying-left {
    position: absolute;
    left: 50px;
    bottom: 0;
    display: flex;
    gap: 30px;
}

.praying-right {
    position: absolute;
    right: 50px;
    bottom: 0;
    display: flex;
    gap: 30px;
}

.person {
    position: relative;
    width: 40px;
    height: 80px;
    animation: prayerBow 4s ease-in-out infinite;
    opacity: 0.7;
}

.person-1 { animation-delay: 0s; }
.person-2 { animation-delay: 1s; }
.person-3 { animation-delay: 2s; }
.person-4 { animation-delay: 3s; }

.person-head {
    width: 12px;
    height: 12px;
    background: #6a0dad;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #6a0dad;
}

.person-body {
    width: 8px;
    height: 40px;
    background: linear-gradient(to bottom, #6a0dad, #4a0a8a);
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(106, 13, 173, 0.5);
}

.person-arms {
    width: 20px;
    height: 6px;
    background: #6a0dad;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(106, 13, 173, 0.5);
}

.person-arms::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #6a0dad;
    border-radius: 50%;
    top: -1px;
    left: 2px;
    box-shadow: 0 0 4px #6a0dad;
}

.person-arms::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #6a0dad;
    border-radius: 50%;
    top: -1px;
    right: 2px;
    box-shadow: 0 0 4px #6a0dad;
}

@keyframes prayerBow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: rotate(-10deg) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: rotate(-15deg) scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 15px #6a0dad);
    }
    75% {
        transform: rotate(-10deg) scale(1.05);
        opacity: 1;
    }
}

.person:hover {
    filter: drop-shadow(0 0 20px #00ffff);
}

/* Horizontal Progress Bar */
.summoning-progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.summoning-progress-bar.visible {
    opacity: 1;
}

.progress-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.progress-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.2rem;
    color: #6a0dad;
    text-shadow: 0 0 15px #6a0dad;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar-wrapper {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(106, 13, 173, 0.2);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #6a0dad;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.3);
}

.progress-bar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(106, 13, 173, 0.1) 0%,
        rgba(106, 13, 173, 0.3) 50%,
        rgba(106, 13, 173, 0.1) 100%);
    animation: shimmer 2s ease-in-out infinite;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6a0dad, #00ffff, #6a0dad);
    background-size: 200% 100%;
    animation: progressGlow 2s ease-in-out infinite;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    height: calc(100% + 4px);
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar-fill:not([style*="width: 0"]) + .progress-glow {
    opacity: 1;
    animation: progressSweep 3s ease-in-out infinite;
}

.progress-percentage {
    font-size: 1.4rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-top: 10px;
    font-family: 'Cinzel Decorative', serif;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes progressGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes progressSweep {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

.hero-content {
    z-index: 10;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 200px;
}

.hero-title {
    margin-bottom: 4rem;
    position: relative;
    z-index: 11;
}

.hero-title {
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    width: 100%;
    text-align: center;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-subtitle.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
}

@keyframes glow {
    from { text-shadow: 0 0 20px #6a0dad, 0 0 40px #6a0dad; }
    to { text-shadow: 0 0 30px #6a0dad, 0 0 60px #6a0dad, 0 0 80px #6a0dad; }
}

/* Reveal Container */
.reveal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-container.visible {
    opacity: 1;
}

.flash-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
}

.flash-effect.active {
    animation: flash 0.3s ease-out;
}

@keyframes flash {
    0% { opacity: 0; }
    50% { opacity: 0.8; }
    100% { opacity: 0; }
}

@keyframes screenShake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.jagos-reveal {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 50px #6a0dad;
    animation: imageGlow 3s ease-in-out infinite alternate;
}

@keyframes imageGlow {
    from { box-shadow: 0 0 50px #6a0dad; }
    to { box-shadow: 0 0 80px #6a0dad, 0 0 120px #6a0dad; }
}

.main-headline {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #6a0dad, #00ffff);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #6a0dad, 0 0 60px #00ffff;
}

/* Data Altar */
.data-altar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.data-item {
    background: rgba(106, 13, 173, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #6a0dad;
    min-width: 200px;
}

.data-item h3 {
    font-size: 1rem;
    color: #00ffff;
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
}

/* Prophecy Section */
.prophecy-section {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.prophecy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prophecy-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.transformation-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tokenomics-card {
    background: rgba(106, 13, 173, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #6a0dad;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    margin-bottom: 1rem;
    color: #00ffff;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6a0dad, #00ffff);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #6a0dad;
    border: 3px solid #00ffff;
    border-radius: 50%;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -11px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -11px;
}

.timeline-content {
    background: rgba(106, 13, 173, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #6a0dad;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: #00ffff;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.timeline-content li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #6a0dad;
}

/* How to Buy Section */
.how-to-buy-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(106, 13, 173, 0.1) 100%);
}

.ritual-steps {
    max-width: 600px;
    margin: 0 auto 3rem;
    counter-reset: step-counter;
}

.ritual-steps li {
    background: rgba(106, 13, 173, 0.1);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #6a0dad;
    counter-increment: step-counter;
    position: relative;
    font-size: 1.1rem;
}

.ritual-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #6a0dad;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.contract-address {
    text-align: center;
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #00ffff;
    max-width: 600px;
    margin: 0 auto;
}

.contract-address code {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 5px;
    display: inline-block;
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #00ffff;
}

.copy-button {
    background: #00ffff;
    color: #0a0a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: #6a0dad;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    .main-headline { font-size: 2.5rem; }
    
    .prophecy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .data-altar {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before { display: none; }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 !important;
        margin-bottom: 2rem;
    }
    
    .timeline-marker {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto 1rem;
    }
    
    .ritual-steps li::before {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 1rem;
        margin-right: 1rem;
        display: inline-flex;
    }
    
    .ritual-steps li {
        border-left: none;
        border-top: 4px solid #6a0dad;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    section { padding: 60px 0; }
    .jagos-reveal { max-width: 300px; }
    .cta-button { padding: 12px 30px; font-size: 1rem; }

    .start-title {
        font-size: 2.5rem;
    }

    .start-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .summon-button {
        padding: 15px 40px;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .summoning-progress-bar {
        padding: 15px;
    }

    .progress-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .progress-percentage {
        font-size: 1.2rem;
        margin-top: 8px;
    }

    .floating-rune {
        font-size: 1.5rem;
    }

    .praying-people {
        bottom: 80px;
        height: 150px;
    }

    .praying-left {
        left: 20px;
        gap: 20px;
    }

    .praying-right {
        right: 20px;
        gap: 20px;
    }

    .person {
        width: 30px;
        height: 60px;
    }

    .person-head {
        width: 10px;
        height: 10px;
    }

    .person-body {
        width: 6px;
        height: 30px;
        top: 10px;
    }

    .person-arms {
        width: 16px;
        height: 5px;
        top: 16px;
    }

    .energy-ring.ring-1 { width: 150px; height: 150px; }
    .energy-ring.ring-2 { width: 300px; height: 300px; }
    .energy-ring.ring-3 { width: 450px; height: 450px; }
}
