* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --effect1-bg: #8B4513;  /* Yellow-brown for Crown of Fire */
    --effect2-bg: #1E1E3F;  /* Dark indigo for Neon Horizon */
    --effect3-bg: #808080;  /* Gray for Embrace Nature's Rhythm */
}

body {
    font-family: 'Tomorrow', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    color: white;
    text-transform: uppercase;
    background-color: var(--effect1-bg);
    transition: background-color 0.5s ease;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--effect1-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loader-spinner {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.app-container {
    height: 100vh;
    position: relative;
}

.navigation {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.navigation a.active,
.navigation a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.effects-container {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.effect.active {
    opacity: 1;
    visibility: visible;
}

.effect-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.effect-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.title-container {
    overflow: hidden;
}

.title {
    display: flex;
    gap: 16px;
    font-size: 6rem;
    line-height: 1.2;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.title span {
    opacity: 0;
    transform: translateY(-100%);
}

.description {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
}

/* Media Queries */
@media (max-width: 1024px) {
    .title {
        font-size: 4rem;
        gap: 12px;
    }
    
    .description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
        gap: 8px;
    }
    
    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        gap: 6px;
    }
    
    .description {
        font-size: 0.8rem;
    }
} 