/* Wild Web Design 2001 - Maximum Extravagance! */

body {
    background: #000000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect fill="%23111" width="2" height="2"/><rect fill="%23000" x="2" y="2" width="2" height="2"/></svg>');
    font-family: Verdana, Arial, sans-serif;
    color: #00FF00;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Animated rainbow background header */
@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header {
    background: linear-gradient(90deg, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #9400D3);
    background-size: 400% 400%;
    animation: rainbow 5s ease infinite;
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #FFD700;
    box-shadow: 0 0 20px #FF00FF;
}

.header h1 {
    font-size: 28px;
    color: #FFFFFF;
    text-shadow: 2px 2px #0066FF, 4px 4px #00FFFF;
    margin: 0;
    animation: pulse 2s infinite;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .header h1 {
        font-size: 42px;
        letter-spacing: 3px;
    }
}

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

/* Blinking text effect */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}

/* Scrolling text */
.scroll-text {
    animation: scroll-left 10s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main container with crazy border */
.container {
    max-width: 900px;
    margin: 20px auto;
    background: linear-gradient(45deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 5px dashed #00FF00;
    padding: 0;
    box-shadow: 0 0 30px #FF00FF, inset 0 0 30px rgba(0, 255, 255, 0.3);
}

/* Profile section with glow */
.profile-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 30px;
    text-align: center;
    border-bottom: 5px solid #FFD700;
    position: relative;
}

.profile-section::before {
    content: "⭐";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 30px;
    animation: spin 3s linear infinite;
}

.profile-section::after {
    content: "⭐";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    animation: spin 3s linear infinite reverse;
}

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

.profile-photo {
    border: 5px solid #FFD700;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    box-shadow: 0 0 30px #00FFFF, 0 0 60px #FF00FF;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.name {
    font-size: 24px;
    color: #FFFF00;
    text-shadow: 2px 2px #0066FF;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

@media (min-width: 768px) {
    .name {
        font-size: 32px;
    }
}

.title {
    font-size: 16px;
    color: #00FFFF;
    text-shadow: 1px 1px #0066FF;
    font-style: italic;
}

@media (min-width: 768px) {
    .title {
        font-size: 20px;
    }
}

/* Navigation buttons with 3D effect */
.nav-buttons {
    text-align: center;
    padding: 20px;
    background: #000000;
}

.button {
    display: inline-block;
    background: linear-gradient(180deg, #FF0000 0%, #CC0000 100%);
    color: #FFFF00;
    padding: 10px 20px;
    margin: 5px;
    border: 3px outset #FF6666;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 5px 5px 0 #660000;
    text-shadow: 1px 1px #000000;
}

.button:hover {
    background: linear-gradient(180deg, #FFFF00 0%, #CCCC00 100%);
    color: #FF0000;
    border: 3px inset #FFFF66;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #666600;
}

.button:active {
    border: 3px inset #FF6666;
    transform: translate(5px, 5px);
    box-shadow: none;
}

/* Content sections with table layout */
.section {
    margin: 20px;
    background: #000066;
    border: 3px ridge #00FFFF;
    padding: 15px;
}

.section-title {
    background: linear-gradient(90deg, #0066FF, #00FFFF, #0066FF);
    color: #FFFFFF;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    border: 3px outset #FFFFFF;
    text-shadow: 2px 2px #000000;
    font-weight: bold;
    animation: color-shift 3s infinite;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 22px;
    }
}

@keyframes color-shift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.section-content {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.6;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .section-content {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Job entries with beveled borders */
.job {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: 3px ridge #FFD700;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
}

.job-title {
    color: #FFFF00;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 1px 1px #0066FF;
}

@media (min-width: 768px) {
    .job-title {
        font-size: 17px;
    }
}

.job-company {
    color: #00FF00;
    font-size: 16px;
    font-weight: bold;
}

.job-dates {
    color: #00FFFF;
    font-size: 12px;
    font-style: italic;
}

/* Skills with glowing badges */
.skill-badge {
    display: inline-block;
    background: linear-gradient(45deg, #0066FF, #00FFFF);
    color: #FFFFFF;
    padding: 6px 12px;
    margin: 4px;
    border: 2px solid #FFFF00;
    border-radius: 20px;
    box-shadow: 0 0 10px #0066FF;
    font-weight: bold;
    font-size: 11px;
    animation: glow 2s infinite;
}

@media (min-width: 768px) {
    .skill-badge {
        padding: 8px 15px;
        margin: 5px;
        font-size: 12px;
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px #0066FF; }
    50% { box-shadow: 0 0 20px #00FFFF, 0 0 30px #0066FF; }
}

/* Visitor counter */
.counter {
    background: #000000;
    border: 3px inset #666666;
    padding: 10px;
    text-align: center;
    margin: 20px;
}

.counter-text {
    color: #00FF00;
    font-family: "Courier New", monospace;
    font-size: 16px;
    text-shadow: 0 0 5px #00FF00;
}

/* Footer with gradient */
.footer {
    background: linear-gradient(180deg, #000000 0%, #330033 100%);
    color: #00FFFF;
    text-align: center;
    padding: 20px;
    border-top: 5px solid #FF00FF;
}

/* Under construction GIF placeholder */
.construction {
    text-align: center;
    padding: 20px;
    background: #FFFF00;
    border: 5px solid #FF0000;
}

.construction-text {
    color: #FF0000;
    font-size: 24px;
    font-weight: bold;
    animation: blink 0.5s infinite;
}

/* Link styling */
a {
    color: #00FFFF;
    text-decoration: underline;
    text-shadow: 0 0 5px #00FFFF;
}

a:hover {
    color: #FFFF00;
    text-shadow: 0 0 10px #FFFF00;
}

a:visited {
    color: #FF00FF;
}

/* Marquee styling */
marquee {
    background: #000000;
    color: #FF0000;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #FF0000;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    margin: 15% auto;
    padding: 30px;
    border: 5px ridge #FFD700;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px #00FFFF;
    animation: bounce-in 0.5s;
}

@keyframes bounce-in {
    0% { transform: scale(0.3); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.modal-content h2 {
    color: #FFFF00;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 2px 2px #0066FF;
}

.modal-content p {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0;
}

.close-btn {
    background: linear-gradient(180deg, #FF0000 0%, #CC0000 100%);
    color: #FFFF00;
    padding: 12px 25px;
    border: 3px outset #FF6666;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 5px 5px 0 #660000;
    text-shadow: 1px 1px #000000;
    margin-top: 20px;
}

.close-btn:hover {
    background: linear-gradient(180deg, #FFFF00 0%, #CCCC00 100%);
    color: #FF0000;
    border: 3px inset #FFFF66;
}

.close-btn:active {
    border: 3px inset #FF6666;
    transform: translate(5px, 5px);
    box-shadow: none;
}

.bitcoin-btn {
    display: inline-block;
    background: linear-gradient(180deg, #FF6600 0%, #CC5500 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    margin: 10px;
    border: 3px outset #FF8833;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 5px 5px 0 #663300;
    text-shadow: 1px 1px #000000;
    cursor: pointer;
}

.bitcoin-btn:hover {
    background: linear-gradient(180deg, #FFAA00 0%, #DD8800 100%);
    border: 3px inset #FFBB33;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #664400;
}

.game-btn {
    display: inline-block;
    background: linear-gradient(180deg, #9900FF 0%, #7700CC 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    margin: 10px;
    border: 3px outset #BB33FF;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 5px 5px 0 #440066;
    text-shadow: 1px 1px #000000;
    cursor: pointer;
}

.game-btn:hover {
    background: linear-gradient(180deg, #BB00FF 0%, #9900DD 100%);
    border: 3px inset #DD66FF;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #550077;
}

.clicker-btn {
    display: inline-block;
    background: linear-gradient(180deg, #00CC00 0%, #009900 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    margin: 10px;
    border: 3px outset #00FF00;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 5px 5px 0 #006600;
    text-shadow: 1px 1px #000000;
    cursor: pointer;
}

.clicker-btn:hover {
    background: linear-gradient(180deg, #00FF00 0%, #00DD00 100%);
    border: 3px inset #66FF66;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #008800;
}

/* Side banners - GeoCities style! */
.side-banner {
    position: fixed;
    width: 160px;
    top: 100px;
    z-index: 100;
}

.side-banner-left {
    left: 10px;
}

.side-banner-right {
    right: 10px;
}

.banner-item {
    background: linear-gradient(135deg, #FF0000, #FFFF00, #00FF00);
    border: 3px ridge #FFD700;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    animation: banner-pulse 2s infinite;
}

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

.banner-item h3 {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px #000000;
}

.banner-item p {
    color: #FFFFFF;
    font-size: 11px;
    margin: 5px 0;
    text-shadow: 1px 1px #000000;
}

.banner-counter {
    background: #000000;
    color: #00FF00;
    padding: 5px;
    border: 2px inset #00FF00;
    font-family: "Courier New", monospace;
    margin-top: 5px;
}

/* Hide banners on mobile */
@media (max-width: 1200px) {
    .side-banner {
        display: none;
    }
}

/* Meme Carousel - 2001 style! */
.meme-carousel {
    text-align: center;
    padding: 20px;
}

.meme-container {
    background: #000000;
    border: 5px ridge #FFD700;
    padding: 10px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 0 20px #00FFFF, inset 0 0 20px rgba(255, 215, 0, 0.3);
}

.meme-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border: 3px solid #FFFFFF;
    display: block;
}

.carousel-controls {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: linear-gradient(180deg, #FF6600 0%, #CC5500 100%);
    color: #FFFFFF;
    padding: 10px 20px;
    border: 3px outset #FF8833;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 5px 5px 0 #663300;
    text-shadow: 1px 1px #000000;
}

.carousel-btn:hover {
    background: linear-gradient(180deg, #FFAA00 0%, #DD8800 100%);
    border: 3px inset #FFBB33;
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #664400;
}

.carousel-btn:active {
    border: 3px inset #FF8833;
    transform: translate(5px, 5px);
    box-shadow: none;
}

.meme-counter {
    color: #00FFFF;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px #0066FF;
    min-width: 60px;
}
