/* Classic GeoCities style CSS */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-image: url('images/stars.gif'), url('images/backgrounds/stars-pattern.gif');
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    color: white;
    cursor: url('images/cursors/cursor1.cur'), pointer;
    overflow-x: hidden;
}

/* Enhanced Cursor trail effect */
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: visible;
}

.cursor-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: background-color 0.15s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Sound controls */
.sound-controls {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#toggle-sound {
    background: #ff0000;
    color: #ffff00;
    border: 3px outset #ff00ff;
    font-family: inherit;
    font-weight: bold;
    padding: 5px 10px;
    cursor: pointer;
}

#toggle-sound:active {
    border-style: inset;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000080; /* Navy background */
    border: 5px solid #ff00ff; /* Hot pink border */
    box-shadow: 0 0 20px #00ffff; /* Cyan glow */
    background-image: url('images/backgrounds/stars-bg.gif');
    background-attachment: fixed;
}

.top-marquee {
    background-color: #ff0000;
    padding: 10px;
    color: yellow;
    font-weight: bold;
    border: 3px dotted #00ff00;
    margin-bottom: 20px;
}

.header {
    text-align: center;
    position: relative;
    margin-bottom: 60px; /* Increased to accommodate flames */
}

h1 {
    font-size: 48px;
    text-shadow: -2px -2px 0 #ff0000, 2px -2px 0 #ff0000, -2px 2px 0 #ff0000, 2px 2px 0 #ff0000;
    color: #ffff00;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    transform: rotate(-2deg);
}

.glowing {
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff;
    }
}

.flames-container {
    position: relative;
    height: 80px;
    width: 100%;
    overflow: visible;
    margin-top: 30px;
}

.flames-container img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    z-index: 1;
}

/* Donkey Banner */
.donkey-banner {
    margin: 20px 0;
    text-align: center;
}

.full-width-img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.main-content {
    text-align: center;
    background-color: rgba(0, 0, 128, 0.7);
    padding: 20px;
    border: 3px dashed #ffff00;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* Donkey Spotlight */
.donkey-spotlight {
    display: flex;
    align-items: center;
    background-color: #330066;
    padding: 15px;
    border: 5px ridge #00ffff;
    margin-bottom: 30px;
    border-radius: 10px;
}

.spotlight-img {
    max-width: 150px;
    margin-right: 20px;
}

.spotlight-text {
    text-align: left;
}

.spotlight-text h3 {
    color: #ffff00;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    text-shadow: 2px 2px #ff0000;
}

.spotlight-text p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

/* Floating GIFs */
.floating-gifs {
    position: relative;
    height: 100px;
    margin: 20px 0;
}

.float-gif {
    position: absolute;
    height: 50px;
}

.cat-gif {
    animation: float-left-right 15s linear infinite;
    left: 0;
    top: 20px;
}

.flame-gif {
    animation: float-right-left 10s linear infinite;
    right: 0;
    top: 0;
}

.cat-gif-2 {
    animation: float-diagonal 20s linear infinite;
    left: 30%;
    top: 30px;
}

@keyframes float-left-right {
    0% { left: -50px; }
    100% { left: 100%; }
}

@keyframes float-right-left {
    0% { right: -50px; }
    100% { right: 100%; }
}

@keyframes float-diagonal {
    0% { left: -50px; top: -50px; }
    50% { left: 50%; top: 100px; }
    100% { left: 100%; top: -50px; }
}

.question-box {
    background-color: #ff00ff;
    padding: 15px;
    border-radius: 10px;
    border: 5px ridge #00ffff;
    margin-bottom: 30px;
}

.question {
    color: #ffff00;
    font-size: 32px;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 5px #000000;
}

.blink {
    /* Disabling the blinking animation */
    animation: none;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.construction {
    margin: 20px auto;
    display: block;
}

.disclaimer {
    font-size: 14px;
    color: #ffffff;
    margin-top: 20px;
    padding: 10px;
    background-color: #800000;
    border: 2px solid #ffffff;
}

/* Section Divider */
.section-divider {
    margin: 30px 0;
    text-align: center;
}

/* Content Sections */
.content-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #330066;
    border: 5px solid #00ff00;
    border-radius: 15px;
}

.section-title {
    text-align: center;
    color: #ffff00;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 2px 2px #ff0000;
    letter-spacing: 2px;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.gallery-item {
    text-align: center;
    width: 200px;
    background-color: #000080;
    padding: 15px;
    border: 3px solid #ff00ff;
    border-radius: 10px;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border: 2px solid #00ffff;
}

.gallery-item p {
    margin-top: 10px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: bold;
}

/* History Panel */
.history-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.history-img {
    max-width: 200px;
    margin-bottom: 20px;
    border: 3px solid #ffff00;
    border-radius: 10px;
}

.history-text h3 {
    color: #ffff00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    text-shadow: 2px 2px #ff0000;
}

.history-text p {
    margin: 10px 0;
    font-size: 16px;
    color: #ffffff;
}

/* Alone Panel */
.alone-panel {
    text-align: center;
    padding: 20px;
    background-color: #000080;
    border: 3px dashed #ff00ff;
    border-radius: 10px;
}

.centered-img {
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.big-text {
    font-size: 24px;
    color: #ffff00;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px #ff0000;
}

/* Guestbook section */
.guestbook {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #8a2be2;
    border: 5px groove #00ffff;
}

.rotate-text {
    display: inline-block;
    color: #ffff00;
    font-size: 24px;
    animation: rotate 5s linear infinite;
    margin: 10px 0;
}

.guestbook-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #ff0000;
    color: #ffff00;
    text-decoration: none;
    font-weight: bold;
    border: 3px outset #ff00ff;
    font-size: 18px;
}

.guestbook-link:hover {
    background-color: #ff00ff;
    color: white;
}

/* Webring section */
.webring {
    margin: 20px 0;
    padding: 10px;
    background-color: #000000;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-weight: bold;
}

.visitor-counter {
    text-align: center;
    margin: 20px 0;
}

.counter {
    display: inline-flex;
    margin-top: 5px;
}

.counter span {
    display: inline-block;
    background-color: #000000;
    color: #33ff33;
    font-family: monospace;
    font-size: 24px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 0 2px;
    border: 2px inset #555555;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    border-top: 3px double #ff00ff;
    padding-top: 10px;
}

.email {
    margin-top: 10px;
    border: none;
}

.netscape-badge {
    margin-top: 15px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0000, #ff00ff, #0000ff, #00ffff);
    border: 2px solid #ffff00;
}

/* Add some rotating text effect for extra 90s feel */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Extra for smaller screens */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 32px;
    }
    
    .question {
        font-size: 24px;
    }
    
    .floating-gifs {
        height: 80px;
    }
    
    .donkey-spotlight {
        flex-direction: column;
    }
    
    .spotlight-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .spotlight-text {
        text-align: center;
    }
    
    .gallery-item {
        width: 150px;
    }
}

/* Fun Facts Section */
.fun-facts-container {
    position: relative;
    min-height: 500px;
    background-color: rgba(0, 0, 128, 0.5);
    border: 3px dashed #ffff00;
    margin: 20px 0;
    padding: 20px;
    overflow: hidden;
}

.fact-bubble {
    position: absolute;
    max-width: 250px;
    background-color: #ff00ff;
    color: #ffffff;
    padding: 15px;
    border-radius: 20px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 10px #ffff00;
    font-size: 16px;
    z-index: 5;
    transform: rotate(-2deg);
}

.fact-bubble::before {
    content: "FACT!";
    display: block;
    color: #ffff00;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    text-shadow: 1px 1px #ff0000;
}

.fact-bubble.fun-fact {
    background-color: #8a2be2;
    transform: rotate(2deg);
}

.fact-bubble.fun-fact::before {
    content: "WOW!";
}

.fact-bubble.history-fact {
    background-color: #006400;
    transform: rotate(-1deg);
}

.fact-bubble.history-fact::before {
    content: "HISTORY!";
}

.fact-bubble.trivia-fact {
    background-color: #800000;
    transform: rotate(1deg);
}

.fact-bubble.trivia-fact::before {
    content: "TRIVIA!";
}

.fact-img {
    position: absolute;
    max-width: 150px;
    max-height: 150px;
    z-index: 4;
}

/* Suno Embed */
.suno-embed {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
    overflow: hidden;
}

.suno-embed iframe {
    max-width: 100%;
    border: 5px ridge #00ffff;
    box-shadow: 0 0 15px #ff00ff;
}

/* Mobile and Responsive Styling */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
        border-width: 3px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .header {
        margin-bottom: 40px;
    }
    
    .flames-container {
        height: 60px;
    }
    
    .question {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .suno-embed iframe {
        height: 200px;
    }
    
    .fun-facts-container {
        min-height: 400px;
    }
    
    .fact-bubble {
        max-width: 220px;
        padding: 12px;
        font-size: 14px;
    }
    
    .fact-img {
        max-width: 120px;
        max-height: 120px;
    }
    
    .history-panel {
        padding: 10px;
    }
    
    .history-text p {
        font-size: 14px;
    }
    
    .counter span {
        font-size: 20px;
        padding: 3px 8px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 8px;
        border-width: 2px;
    }
    
    h1 {
        font-size: 28px;
        transform: rotate(-1deg);
    }
    
    .top-marquee {
        padding: 5px;
        font-size: 14px;
    }
    
    .flames-container {
        height: 40px;
        margin-top: 15px;
    }
    
    .question {
        font-size: 20px;
        padding: 10px;
    }
    
    .question-box {
        padding: 10px;
        border-width: 3px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .content-section {
        padding: 10px;
        margin: 15px 0;
        border-width: 3px;
    }
    
    .suno-embed iframe {
        height: 180px;
        border-width: 3px;
    }
    
    .fun-facts-container {
        min-height: 300px;
        padding: 10px;
    }
    
    .fact-bubble {
        max-width: 180px;
        padding: 10px;
        font-size: 12px;
        border-width: 2px;
    }
    
    .fact-img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .history-img {
        max-width: 150px;
        border-width: 2px;
    }
    
    .history-text h3 {
        font-size: 20px;
    }
    
    .history-text p {
        font-size: 12px;
    }
    
    .big-text {
        font-size: 18px;
    }
    
    .alone-panel p {
        font-size: 14px;
    }
    
    .alone-panel {
        padding: 10px;
    }
    
    .guestbook-link {
        font-size: 16px;
        padding: 5px 10px;
    }
    
    .rotate-text {
        font-size: 20px;
    }
    
    .counter span {
        font-size: 16px;
        padding: 2px 6px;
    }
    
    /* Stack items vertically on very small screens */
    .tweet-button-container {
        margin: 10px 0;
    }
}

/* Touch device enhancements */
@media (hover: none) {
    /* Improve tap targets for mobile */
    .guestbook-link, 
    a[href],
    .twitter-follow-button,
    .twitter-share-button {
        padding: 10px;
        margin: 5px;
        display: inline-block;
    }
    
    /* Make hover-dependent UI more mobile-friendly */
    ::-webkit-scrollbar {
        width: 10px;
    }
    
    /* Fix cursor trail for touch devices */
    .cursor-trail {
        display: none;
    }
    
    /* Larger footer links for better mobile tapping */
    .footer a {
        padding: 5px;
        display: inline-block;
    }
}

/* Very small screen tweaks */
@media screen and (max-width: 320px) {
    h1 {
        font-size: 24px;
    }
    
    .question {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .fun-facts-container {
        min-height: 250px;
    }
    
    .fact-bubble {
        max-width: 160px;
    }
    
    .floating-gifs {
        height: 60px;
    }
    
    .float-gif {
        height: 40px;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 480px) and (orientation: landscape) {
    .container {
        max-width: 90%;
    }
    
    .flames-container {
        height: 30px;
        margin-top: 10px;
    }
    
    .floating-gifs {
        height: 50px;
    }
    
    .fun-facts-container {
        min-height: 200px;
    }
    
    h1 {
        margin-bottom: 10px;
    }
}

/* Print styles (just for completeness) */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .cursor-trail,
    .floating-gifs,
    .guestbook,
    .webring,
    .sound-controls {
        display: none;
    }
    
    .container {
        border: none;
        box-shadow: none;
        max-width: 100%;
    }
} 