body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Space Grotesk', 'Montserrat', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding-top: 0;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a, #0a0a0a);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.logo {
    width: 180px;
    margin-bottom: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
}
.logo:hover {
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
    transform: scale(1.05) rotate(2deg);
}
p {
    margin: 10px 0;
    font-size: 1.2rem;
}
.tagline {
    font-size: 1rem;
    margin: 4px 0;
    opacity: 0.8;
    color: #a0a0a0;
}

/* Specific style for the main tagline */
#tagline {
    letter-spacing: 1px;
    word-spacing: normal;
    text-transform: none;
    font-weight: 100;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    margin-top: 15px;
}

.links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transition: width 0.3s ease;
}
.links a:hover::after {
    width: 100%;
}
.links a:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-3px);
}
.footer {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
}
.cloud-banner {
    width: 100%;
    max-width: 600px;
    margin: 40px 0;
    opacity: 0.5;
    filter: contrast(0.9) saturate(0.8);
    transition: all 0.5s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.cloud-banner:hover {
    opacity: 0.7;
    filter: contrast(1) saturate(1);
}
.banner-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}
.secret-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
    font-size: 1.2rem;
    z-index: 1;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.banner-container:hover .cloud-banner {
    opacity: 0.2;
}
.banner-container:hover .secret-message {
    opacity: 0.8;
}
.links a img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    vertical-align: middle;
    filter: brightness(0.9) invert(1);
}
.audio-player {
    position: fixed;
    bottom: 80px;  /* Positioned above the footer */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.audio-player:hover {
    opacity: 1;
}
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: fadeOut 0.8s forwards;
    mix-blend-mode: screen;
}

@keyframes fadeOut {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(0); opacity: 0; }
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.progress-container {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s ease;
}

.loading-percent {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 100;
    letter-spacing: 1px;
    margin-top: 5px;
}

.enter-button {
    display: none;
    margin-top: 25px;
    padding: 8px 25px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.enter-button:hover .btn-arrow {
    transform: translateX(5px);
}

.enter-button:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.pulse-animation {
    animation: pulse 3s forwards ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
    }
    100% {
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
/* Make sure your main content stays on top of particles */
.main-content {
    position: relative;
    z-index: 1;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(10deg);
}

/* Light theme styles */
body.light-theme {
    background: linear-gradient(45deg, #f0f0f0, #ffffff, #f0f0f0);
    color: #333;
}

body.light-theme .links a,
body.light-theme .tagline a {
    color: #333;
}

body.light-theme .links a img {
    filter: brightness(0.2);
}

body.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

body.light-theme .secret-message {
    color: #333;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

body.light-theme .cursor-trail {
    background: rgba(0, 0, 0, 0.2);
}

/* Interactive elements */
.interactive-element {
    transition: all 0.4s ease;
    cursor: pointer;
    will-change: transform;
}

.interactive-element:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Text animation */
.animated-text {
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.animated-text:hover {
    transform: translateY(-3px);
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(255, 255, 255, 0.2);
}

/* Element loading animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation delays for staggered effect */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.9s; }
.delay-6 { transition-delay: 1.1s; } 