/* 🌟 GEOCITIES RETRO STYLES 🌟 */
/* Generated by Root Ventures Geocities Generator */

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

body {
    background-color: #000080;
    background-image: 
        radial-gradient(circle at 20% 20%, #ff0080 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, #00ff80 0%, transparent 20%),
        radial-gradient(circle at 40% 40%, #8000ff 0%, transparent 20%),
        linear-gradient(45deg, transparent 25%, rgba(255,255,0,0.1) 25%, rgba(255,255,0,0.1) 50%, transparent 50%);
    background-size: 200px 200px, 150px 150px, 100px 100px, 50px 50px;
    animation: backgroundShift 20s ease-in-out infinite;
    color: #ffffff;
    font-family: "Comic Sans MS", "Times New Roman", serif;
    min-height: 100vh;
    overflow-x: auto;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%; }
    25% { background-position: 100% 0%, 0% 100%, 0% 50%, 100% 0%; }
    50% { background-position: 100% 100%, 0% 0%, 100% 0%, 50% 100%; }
    75% { background-position: 0% 100%, 100% 0%, 50% 100%, 0% 50%; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(128,0,128,0.8));
    border: 5px solid #ff0000;
    border-radius: 15px;
    box-shadow: 
        0 0 20px #ffff00,
        inset 0 0 20px rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

/* Header Styles */
.header {
    text-align: center;
    border: 3px solid #00ff00;
    background: linear-gradient(90deg, #ff0000, #ff8000, #ffff00, #80ff00, #00ff00, #00ff80, #00ffff, #0080ff, #0000ff, #8000ff, #ff00ff, #ff0080);
    background-size: 600% 100%;
    animation: rainbowBackground 3s linear infinite;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

@keyframes rainbowBackground {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.main-title {
    font-size: 3em;
    color: #ffffff;
    text-shadow: 
        3px 3px 0px #ff0000,
        6px 6px 0px #00ff00,
        9px 9px 0px #ffff00;
    animation: titlePulse 2s ease-in-out infinite;
    font-family: "Impact", "Arial Black", sans-serif;
    letter-spacing: 3px;
}

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

/* Marquee Styles */
marquee {
    background: #ff0000;
    color: #ffffff;
    padding: 10px;
    border: 2px solid #ffff00;
    font-weight: bold;
    font-size: 1.2em;
    margin: 10px 0;
    box-shadow: 0 0 10px #ff0000;
}

/* Blink Animation */
blink {
    animation: blinkAnimation 1s infinite;
}

@keyframes blinkAnimation {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Construction Banner */
.construction {
    text-align: center;
    background: linear-gradient(45deg, yellow, orange);
    border: 5px solid red;
    padding: 15px;
    margin: 20px 0;
    animation: constructionShake 0.5s infinite;
    font-size: 1.5em;
    color: red;
    font-weight: bold;
}

@keyframes constructionShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Music Player */
.music-player {
    background: linear-gradient(45deg, #000080, #800080);
    border: 3px solid #ffff00;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
    color: #ffff00;
    font-weight: bold;
    box-shadow: 0 0 15px #ffff00;
}

/* Content Layout */
.content {
    float: left;
    width: 70%;
    padding-right: 20px;
}

.sidebar {
    float: right;
    width: 25%;
    background: linear-gradient(180deg, #400040, #004040);
    border: 3px solid #00ff00;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Content Sections */
.intro-section, .content-section, .links-section {
    background: rgba(0,0,0,0.7);
    border: 2px solid #ff0000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,0,255,0.5);
}

h2, h3, h4 {
    animation: textGlow 2s ease-in-out infinite alternate;
    margin-bottom: 15px;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px currentColor; }
    to { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor; }
}

/* Links */
.cool-link, a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 2px 2px 0px #ff0000;
    transition: all 0.3s ease;
}

.cool-link:hover, a:hover {
    color: #ffff00;
    text-shadow: 0 0 10px currentColor;
    transform: scale(1.1);
    animation: linkPulse 0.5s infinite;
}

@keyframes linkPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin: 10px 0;
    padding: 5px;
    background: linear-gradient(90deg, rgba(255,0,255,0.3), transparent);
    border-left: 3px solid #00ff00;
    position: relative;
}

li:before {
    content: "🌟";
    margin-right: 10px;
    animation: starSpin 2s linear infinite;
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Visitor Counter */
.counter {
    text-align: center;
    background: linear-gradient(45deg, #ff0080, #8000ff);
    border: 3px solid #ffff00;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 15px #ff0080;
}

/* Awards Section */
.awards {
    text-align: center;
    margin-bottom: 20px;
    background: rgba(255,215,0,0.2);
    padding: 15px;
    border: 2px solid gold;
    border-radius: 8px;
}

.awards img {
    animation: awardFloat 3s ease-in-out infinite;
}

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

/* Stats */
.stats {
    background: rgba(0,255,0,0.1);
    border: 2px solid #00ff00;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* GIF Gallery */
.gif-gallery {
    text-align: center;
    background: rgba(255,0,255,0.2);
    border: 3px solid #ffff00;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.gif-gallery img {
    margin: 5px;
    border: 2px solid #ff0000;
    animation: gifBounce 2s ease-in-out infinite;
}

@keyframes gifBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(0.9) rotate(-2deg); }
}

/* Guestbook */
.guestbook {
    background: linear-gradient(135deg, #ffff80, #ff8080);
    border: 4px solid #ff0000;
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    color: black;
    box-shadow: 0 0 20px rgba(255,255,0,0.5);
}

.guestbook-entry {
    background: rgba(255,255,255,0.8);
    border: 2px solid blue;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    animation: entrySlide 0.5s ease-in;
}

@keyframes entrySlide {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.guestbook input, .guestbook textarea {
    border: 3px solid blue;
    padding: 8px;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 14px;
    animation: inputGlow 2s ease-in-out infinite alternate;
}

@keyframes inputGlow {
    from { box-shadow: 0 0 5px blue; }
    to { box-shadow: 0 0 15px blue, 0 0 25px blue; }
}

.guestbook button {
    padding: 10px 20px;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    animation: buttonPulse 1s infinite;
}

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

/* Web Ring */
.webring {
    text-align: center;
    margin: 30px 0;
    clear: both;
}

.webring table {
    margin: 0 auto;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    clear: both;
    background: linear-gradient(90deg, #000080, #800080, #008080);
    border: 3px solid #ffff00;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.footer-content {
    margin-top: 15px;
}

/* Responsive Design (sort of...) */
@media (max-width: 768px) {
    .content {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .sidebar {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .main-title {
        font-size: 2em;
    }
    
    .container {
        margin: 10px;
        padding: 15px;
    }
}

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

/* Scroll animations */
@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Add scroll animations to sections */
.intro-section { animation: slideInFromLeft 1s ease-out; }
.content-section { animation: slideInFromRight 1s ease-out 0.5s both; }
.links-section { animation: slideInFromLeft 1s ease-out 1s both; }

/* Cursor effects */
body {
    cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAdgAAAHYBTnsmCAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFYSURBVCiRpZM9SwNBEIafgwQLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sLwcJCG1sL'), auto;
}

/* Print styles (because why not?) */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .construction, .music-player, .guestbook {
        display: none;
    }
    
    blink {
        animation: none;
        font-weight: bold;
    }
}

/* THE ULTIMATE 90S EFFECT: COMIC SANS EVERYWHERE */
* {
    font-family: "Comic Sans MS", "Papyrus", "Bradley Hand ITC", cursive !important;
}
