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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0a1f0a;
    font-family: 'Unbounded', sans-serif;
}

/* Background image - place your image file in the MASA folder and update the filename below */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

#slime-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.logo {
    position: fixed;
    top: 20px;
    left: 30px;
    z-index: 25;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ff0000;
    text-shadow: 
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #32cd32,
        2px 2px 0 #006600,
        4px 4px 0 #004400;
    letter-spacing: 0.1em;
}

.music-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 25;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #32cd32 0%, #228b22 50%, #006400 100%);
    border: 2px solid #00ff00;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.7);
}

.spline-embed {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vh;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spline-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.5);
}

/* Background overlay image - put your image in MASA folder as background.jpg */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

/* Center images - put your PNG files in MASA folder */
.images-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
}

.center-image {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.side-image {
    max-width: 25vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.far-left-image {
    margin-right: 2rem;
}

.left-image {
    margin-right: 2rem;
}

.right-image {
    margin-left: 2rem;
}

/* Slime overlay effect */
.slime-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(ellipse at top, #32cd32 0%, #228b22 30%, #006400 60%, #003300 100%);
    overflow: hidden;
}

.slime-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(50, 205, 50, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 255, 0, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 70% 45% at 80% 0%, rgba(34, 139, 34, 0.9) 0%, transparent 65%);
    animation: slimeDrip 1s ease-out forwards;
    transform: translateY(-100%);
}

.slime-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(144, 238, 144, 0.6) 0%, transparent 30%),
        radial-gradient(circle at 60% 50%, rgba(0, 255, 0, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(50, 205, 50, 0.5) 0%, transparent 35%);
}

.slime-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.slime-overlay.active::before {
    animation: slimeDrip 1s ease-out forwards;
}

@keyframes slimeDrip {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.content {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 400;
    color: #ff0000;
    text-shadow: 
        /* Green glow */
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 40px #00ff00,
        0 0 60px #32cd32,
        0 0 80px #32cd32,
        /* 3D extrusion effect */
        2px 2px 0 #008800,
        4px 4px 0 #007700,
        6px 6px 0 #006600,
        8px 8px 0 #005500,
        10px 10px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.15em;
    animation: slimePulse 3s ease-in-out infinite;
}

.tagline {
    font-size: clamp(1rem, 3vw, 2rem);
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
    margin-top: 1rem;
    opacity: 0.8;
    animation: fadeFloat 4s ease-in-out infinite;
}

@keyframes slimePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.2);
    }
}

@keyframes fadeFloat {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* Buttons */
.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.x-btn {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
    border: 3px solid #00ff00;
    box-shadow: 
        0 0 15px #00ff00,
        0 0 30px rgba(0, 255, 0, 0.5);
}

.x-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 25px #00ff00,
        0 0 50px rgba(0, 255, 0, 0.7);
}

.x-btn svg {
    width: 28px;
    height: 28px;
}

.slime-btn {
    padding: 1rem 2rem;
    background: linear-gradient(180deg, #32cd32 0%, #228b22 50%, #006400 100%);
    color: #000000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: 3px solid #00ff00;
    box-shadow: 
        0 0 15px #00ff00,
        0 0 30px rgba(0, 255, 0, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.slime-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px #00ff00,
        0 0 50px rgba(0, 255, 0, 0.7),
        inset 0 2px 15px rgba(255, 255, 255, 0.4);
    background: linear-gradient(180deg, #3de03d 0%, #2ca02c 50%, #007700 100%);
}

