
/* Neocities-style CSS for Hiding Acorns */

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

body {
    font-family: 'Comic Sans MS', 'Courier New', monospace;
    background: #87CEEB;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border: 5px solid #8B4513;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed #8B4513;
}

h1 {
    color: #8B4513;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.2em;
    font-style: italic;
}

.post {
    background: #FFF8DC;
    padding: 25px;
    margin-bottom: 30px;
    border: 3px solid #DEB887;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-date {
    color: #8B4513;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
}

.post-images {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.post-images img {
    max-width: 100%;
    height: auto;
    border: 4px solid #8B4513;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.post-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.post-images.single-image img {
    max-width: 600px;
}

.post-images.multiple-images img {
    max-width: 350px;
}

.post-caption {
    margin-top: 15px;
    font-size: 1.1em;
    color: #333;
    white-space: pre-wrap;
    line-height: 1.8;
}

.instagram-link {
    display: inline-block;
    margin-top: 10px;
    color: #E4405F;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 2px solid #E4405F;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: #E4405F;
    color: white;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 3px dashed #8B4513;
    color: #666;
    font-size: 0.9em;
}

.visitor-counter {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 20px;
    background: #FFE4B5;
    border: 2px solid #DEB887;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

/* Retro scrolling text */
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.marquee {
    background: #8B4513;
    color: white;
    padding: 10px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 5px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    .post-images.single-image img,
    .post-images.multiple-images img {
        max-width: 100%;
    }
}
