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

body {
    font-family: 'Passion One', sans-serif;
    background: linear-gradient(180deg, #00b4d8 0%, #48cae4 30%, #f8961e 70%, #f9844a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Decorative sun */
.sun {
    position: fixed;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffea00 0%, #f9c74f 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.container {
    text-align: center;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.content {
    animation: fadeIn 1s ease-out;
}

/* Starburst behind title */
.starburst {
    position: relative;
    display: inline-block;
    padding: 2rem 3rem;
}

.starburst::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: #e63946;
    clip-path: polygon(
        50% 0%, 56% 30%, 75% 6%, 62% 32%, 97% 25%, 67% 40%,
        100% 50%, 67% 60%, 97% 75%, 62% 68%, 75% 94%, 56% 70%,
        50% 100%, 44% 70%, 25% 94%, 38% 68%, 3% 75%, 33% 60%,
        0% 50%, 33% 40%, 3% 25%, 38% 32%, 25% 6%, 44% 30%
    );
    z-index: -1;
}

h1 {
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    letter-spacing: 0.05em;
    color: #ffea00;
    text-shadow:
        4px 4px 0 #e63946,
        6px 6px 0 #9d0208,
        2px 2px 4px rgba(0,0,0,0.3);
    -webkit-text-stroke: 2px #e63946;
    paint-order: stroke fill;
}

.tagline {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 0 #e63946;
    letter-spacing: 0.1em;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.divider {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #ffea00, #f9844a, #e63946);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.status {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow:
        2px 2px 0 #e63946,
        3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.message {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
        -webkit-text-stroke: 1px #e63946;
    }

    .starburst::before {
        width: 220px;
        height: 220px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .status {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .palm-left, .palm-right {
        width: 120px;
        height: 200px;
    }
}
