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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 40%, white, transparent),
        radial-gradient(1px 1px at 33% 60%, white, transparent),
        radial-gradient(1px 1px at 15% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.content {
    text-align: center;
    z-index: 2;
    animation: fadeIn 2s ease-in;
}

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

.message-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 60px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.message {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 
        3px 3px 0px #ff6b6b,
        0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.date {
    font-size: 2rem;
    color: #87ceeb;
    text-shadow: 
        2px 2px 0px #4169e1,
        0 0 15px rgba(135, 206, 235, 0.5);
    font-weight: bold;
}

/* Pixel Art Little Prince */
.pixel-prince {
    width: 80px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transform: scale(1.5);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.pixel-prince::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 100px;
    background: 
        /* Head - yellow hair */
        linear-gradient(90deg, 
            transparent 0%, transparent 25%, 
            #ffd700 25%, #ffd700 75%, 
            transparent 75%),
        linear-gradient(180deg, 
            transparent 0%, transparent 15%, 
            #ffd700 15%, #ffd700 45%, 
            transparent 45%),
        /* Face - peach */
        linear-gradient(90deg, 
            transparent 0%, transparent 30%, 
            #ffdbac 30%, #ffdbac 70%, 
            transparent 70%),
        linear-gradient(180deg, 
            transparent 15%, 
            #ffdbac 15%, #ffdbac 50%, 
            transparent 50%),
        /* Eyes */
        linear-gradient(90deg, 
            transparent 0%, transparent 38%, 
            #000 38%, #000 42%, 
            transparent 42%),
        linear-gradient(90deg, 
            transparent 0%, transparent 58%, 
            #000 58%, #000 62%, 
            transparent 62%),
        linear-gradient(180deg, 
            transparent 0%, transparent 30%, 
            #000 30%, #000 35%, 
            transparent 35%),
        /* Body - blue */
        linear-gradient(90deg, 
            transparent 0%, transparent 20%, 
            #4169e1 20%, #4169e1 80%, 
            transparent 80%),
        linear-gradient(180deg, 
            #ffd700 50%, #4169e1 50%, #4169e1 85%, 
            #000 85%, #000 100%),
        /* Scarf - red */
        linear-gradient(90deg, 
            transparent 0%, transparent 15%, 
            #ff6b6b 15%, #ff6b6b 85%, 
            transparent 85%),
        linear-gradient(180deg, 
            transparent 50%, 
            #ff6b6b 50%, #ff6b6b 65%, 
            transparent 65%);
    background-size: 100% 100%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    animation: float 3s ease-in-out infinite;
}

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

/* Pixel Rose */
.pixel-rose {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20%;
    right: 15%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.6));
}

.pixel-rose::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: 
        /* Rose petals */
        linear-gradient(90deg, 
            transparent 0%, transparent 25%, 
            #ff69b4 25%, #ff1493 40%, #ff69b4 50%, #ff1493 60%, #ff69b4 75%, 
            transparent 75%),
        linear-gradient(180deg, 
            transparent 0%, transparent 25%, 
            #ff69b4 25%, #ff1493 40%, #ff69b4 50%, #ff1493 60%, #ff69b4 75%, 
            transparent 75%),
        /* Center */
        radial-gradient(circle at 50% 50%, 
            #ff1493 0%, #ff1493 30%, 
            #ff69b4 30%, #ff69b4 100%);
    background-size: 100% 100%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    border: 3px solid #ff1493;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pixel Star */
.pixel-star {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 30%;
    left: 20%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transform: scale(1.3);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.pixel-star::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffd700;
    clip-path: polygon(
        50% 0%, 60% 35%, 95% 35%, 
        68% 57%, 78% 90%, 50% 70%, 
        22% 90%, 32% 57%, 5% 35%, 40% 35%
    );
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    border: 2px solid #ffed4e;
    animation: sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 10px #ffd700;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Pixel Planet */
.pixel-planet {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 25%;
    right: 25%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.7));
}

.pixel-planet::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: 
        /* Pixelated planet - orange gradient blocks */
        linear-gradient(90deg, 
            #ff4500 0%, #ff4500 30%, 
            #ff6347 30%, #ff6347 50%, 
            #ff8c00 50%, #ff8c00 70%, 
            #ffa500 70%, #ffa500 100%),
        linear-gradient(180deg, 
            #ffa500 0%, #ffa500 30%, 
            #ff8c00 30%, #ff8c00 50%, 
            #ff6347 50%, #ff6347 70%, 
            #ff4500 70%, #ff4500 100%);
    background-size: 100% 100%;
    border: 4px solid #ff4500;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    box-shadow: 
        inset 15px 15px 0 rgba(255, 140, 0, 0.4),
        inset -15px -15px 0 rgba(255, 69, 0, 0.4),
        0 0 20px rgba(255, 140, 0, 0.6);
    animation: pulse 3s ease-in-out infinite;
}

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

.pixel-elements {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Navigation */
.navigation {
    margin-top: 50px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    color: #ffd700;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.arrow {
    font-size: 2rem;
    animation: point 1.5s ease-in-out infinite;
}

@keyframes point {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.pixel-label {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Labubu Page Styles */
.labubu-container {
    margin: 30px 0;
}

.pixel-labubu {
    width: 120px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    animation: bounce 2s ease-in-out infinite;
}

.pixel-labubu::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 150px;
    background: 
        /* Head - black with white eyes */
        linear-gradient(90deg, transparent 0%, transparent 20%, #000 20%, #000 80%, transparent 80%),
        linear-gradient(180deg, transparent 0%, transparent 15%, #000 15%, #000 50%, transparent 50%),
        /* Eyes - white */
        linear-gradient(90deg, transparent 0%, transparent 35%, #fff 35%, #fff 45%, transparent 45%),
        linear-gradient(90deg, transparent 0%, transparent 55%, #fff 55%, #fff 65%, transparent 65%),
        linear-gradient(180deg, transparent 0%, transparent 25%, #fff 25%, #fff 35%, transparent 35%),
        /* Body - black */
        linear-gradient(180deg, #000 50%, #000 100%),
        /* Mouth - white */
        linear-gradient(180deg, transparent 0%, transparent 40%, #fff 40%, #fff 45%, transparent 45%);
    background-size: 100% 100%;
    border: 3px solid #fff;
    image-rendering: pixelated;
}

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

.labubu-title {
    font-size: 3.5rem;
    color: #ffd700;
    text-shadow: 
        3px 3px 0px #ff6b6b,
        0 0 25px rgba(255, 215, 0, 0.6);
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 3px;
}

.labubu-description {
    font-size: 1.5rem;
    color: #87ceeb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

/* Footer */
.footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1rem;
    color: #87ceeb;
    text-shadow: 
        2px 2px 0px #4169e1,
        0 0 10px rgba(135, 206, 235, 0.5);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-text:hover {
    background: rgba(135, 206, 235, 0.1);
    border-color: #87ceeb;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.4);
}

.footer-ad {
    display: flex;
    align-items: center;
}

.ad-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ad-text {
    font-size: 1rem;
    color: #ffd700;
    text-shadow: 
        2px 2px 0px #ff6b6b,
        0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.ad-link:hover .ad-text {
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .message {
        font-size: 2rem;
    }
    
    .date {
        font-size: 1.5rem;
    }
    
    .message-box {
        padding: 30px 40px;
        margin: 20px;
    }
    
    .pixel-rose,
    .pixel-star,
    .pixel-planet {
        display: none;
    }
    
    .labubu-title {
        font-size: 2.5rem;
    }
    
    .labubu-description {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text,
    .ad-text {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

