/* Shared styles for easter egg pages */
body {
    margin: 0;
    padding: 20px;
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: Georgia, serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

img {
    max-width: 90%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.caption {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: #888;
    font-size: 18px;
}

/* Video-specific styles */
body.video-layout {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: auto;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.video-container {
    margin: 20px 0;
    text-align: center;
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
}

/* Image layout specific */
body.image-layout {
    overflow: hidden;
}