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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
}

body {
    background: 
        radial-gradient(ellipse at top left, rgba(217, 188, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(217, 188, 74, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #003d24 0%, #01693b 30%, #01693b 70%, #003d24 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(1, 105, 59, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 70% 60%, rgba(1, 138, 77, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(217, 188, 74, 0.08) 0%, transparent 30%);
    filter: blur(60px);
    pointer-events: none;
}

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

img {
    max-width: 90vw;
    max-height: 50vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 30px rgba(217, 188, 74, 0.15));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Index page specific styles */
.index-body {
    overflow: auto;
}

.splash-logo {
    max-width: 90vw;
    max-height: 50vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 30px rgba(217, 188, 74, 0.15));
}