/* TOTALLY RADICAL 90S STYLESHEET WITH JAZZ CUP VIBES!!! */

:root {
    --jazz-dark: #344982;   /* Dark Blue */
    --jazz-purple: #ab5c95; /* Purple/Pink */
    --jazz-teal: #2ca5b8;   /* Teal */
    --jazz-grey: #e5e5e5;   /* Light Grey */
    --jazz-white: #ffffff;  /* White */
}

body {
    /* JAZZ CUP INSPIRED BACKGROUND! */
    background-color: var(--jazz-dark);
    background-image: repeating-linear-gradient(
        45deg,
        #344982,
        #344982 20px,
        #2a3b6a 20px,
        #2a3b6a 40px
    );
    /* Add some wavy patterns like the cup */
    position: relative;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 20px;
    overflow-x: hidden;
    color: var(--jazz-white);
}

/* Animated gradient like the Jazz cup waves */
@keyframes jazzGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add wavy overlay pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: -1;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 35px, 
            rgba(255,255,255,.3) 35px, 
            rgba(255,255,255,.3) 70px
        );
    pointer-events: none;
}

/* GUESTBOOK SPECIFIC STYLES */
body.guestbook-page {
    /* Dark "Jazz Cup" Blue Background */
    background: var(--jazz-dark); 
    background-image: 
        radial-gradient(circle at 50% 50%, #ab5c95 0%, transparent 10%),
        radial-gradient(circle at 10% 10%, #2ca5b8 0%, transparent 5%);
    background-size: 100px 100px;
    animation: none;
}

/* STARRY BACKGROUND EFFECT */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* JAZZ CUP RAINBOW TEXT ANIMATION */
.rainbow-text {
    background: linear-gradient(to right, 
        #00CED1, #DA70D6, #FF1493, #9370DB, #00CED1, #DA70D6);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s linear infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 48px;
    font-weight: bold;
}

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

/* BLINKING TEXT - THE CLASSIC! */
.blink {
    animation: blink 1s steps(2, start) infinite;
}

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

/* HORIZONTAL RULES WITH ATTITUDE */
hr {
    height: 5px;
    border: none;
    animation: colorChange 2s infinite;
}

@keyframes colorChange {
    0% { background-color: #00CED1; }
    25% { background-color: #DA70D6; }
    50% { background-color: #FF1493; }
    75% { background-color: #9370DB; }
    100% { background-color: #00CED1; }
}

/* TABLES WITH MAXIMUM BORDER CHAOS - JAZZ CUP STYLE */
table {
    border-style: ridge;
    border-color: #00CED1;
    box-shadow: 5px 5px 10px rgba(218, 112, 214, 0.5);
    animation: tableWobble 3s ease-in-out infinite;
}

@keyframes tableWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-1deg); }
    75% { transform: rotate(1deg); }
}

/* MARQUEE STYLES - JAZZ CUP VIBES */
marquee {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    padding: 10px;
    border: 3px dotted #FF1493;
}

/* IMAGES WITH SOME PIZZAZZ */
img {
    animation: float 3s ease-in-out infinite;
    image-rendering: pixelated;
}

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

/* VISITOR COUNTER STYLE - JAZZ CUP GLOW */
#visitor-count {
    background: black;
    color: #FF1493;
    padding: 5px 10px;
    border: 2px solid #00CED1;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    animation: counterGlow 1s infinite alternate;
}

@keyframes counterGlow {
    0% { box-shadow: 0 0 5px #00CED1; }
    100% { box-shadow: 0 0 20px #FF1493, 0 0 30px #DA70D6; }
}

/* LINKS WITH JAZZ CUP COLORS */
a {
    color: #00CED1;
    text-decoration: underline;
    font-weight: bold;
}

a:visited {
    color: #9370DB;
}

a:hover {
    color: white;
    background-color: #FF1493;
    text-decoration: none;
}

/* EXTRA NEON GLOW EFFECT */
center {
    position: relative;
    z-index: 1;
}

/* TEXT SHADOW FOR THAT 3D EFFECT */
font {
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

/* SPINNING EFFECT FOR BADGES */
center img[alt*="Netscape"],
center img[alt*="Explorer"] {
    animation: spin 10s linear infinite;
    margin: 10px;
}

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

/* PULSING EFFECT FOR CONSTRUCTION SIGNS */
img[alt*="Construction"] {
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* MAKE IT SLIGHTLY RESPONSIVE (BUT NOT TOO GOOD) */
@media (max-width: 768px) {
    .rainbow-text {
        font-size: 24px;
    }
    
    table {
        width: 95% !important;
    }
    
    marquee {
        font-size: 14px;
    }

    .nav-bar {
        flex-wrap: wrap;
        gap: 5px;
    }

    .nav-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 90%;
        font-size: 18px;
        padding: 15px;
    }

    .latest-drops-container {
        flex-direction: column;
        gap: 15px;
    }

    .latest-drop-card {
        width: 95%;
    }

    .clips-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .links-bio-container {
        width: 95%;
    }
}

/* NAVIGATION BAR - 90s BEVELED BUTTONS */
.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    border: 5px ridge #00CED1;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.5);
    flex-wrap: wrap;
    margin: 10px auto;
    max-width: 90%;
}

.nav-btn {
    background: linear-gradient(180deg, #444 0%, #222 100%);
    border: 3px outset #00CED1;
    color: #00CED1;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-btn:hover {
    background: linear-gradient(180deg, #555 0%, #333 100%);
    border: 3px outset #FF1493;
    color: #FF1493;
    transform: translateY(-2px);
    box-shadow: 3px 5px 10px rgba(255, 20, 147, 0.5);
}

.nav-btn.active {
    background: linear-gradient(180deg, #00CED1 0%, #008B8B 100%);
    border: 3px inset #00CED1;
    color: #000000;
    transform: translateY(1px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* PRIMARY CTA BUTTONS */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 20px 30px;
    font-size: 24px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border: 5px outset;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    animation: ctaPulse 2s ease-in-out infinite;
    min-width: 200px;
}

.cta-twitch {
    background: linear-gradient(135deg, #9146FF 0%, #6441A5 100%);
    border-color: #9146FF;
    color: white;
}

.cta-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-color: #FF0000;
    color: white;
}

.cta-podcast {
    background: linear-gradient(135deg, #1DB954 0%, #1AA34A 100%);
    border-color: #1DB954;
    color: white;
}

.cta-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 5px 8px 15px rgba(255, 20, 147, 0.7);
    animation: none;
}

.cta-subtitle {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
}

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

/* LATEST DROPS CONTAINER */
.latest-drops-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.latest-drop-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.episode-btn {
    display: inline-block;
    background: linear-gradient(180deg, #FF1493 0%, #C71585 100%);
    color: white;
    padding: 10px 20px;
    border: 3px outset #FF1493;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.episode-btn:hover {
    background: linear-gradient(180deg, #FF69B4 0%, #FF1493 100%);
    transform: translateY(-2px);
    box-shadow: 3px 5px 10px rgba(255, 20, 147, 0.7);
}

/* PLATFORM BUTTONS */
.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin: 15px 0;
}

.platform-btn {
    display: inline-block;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #00CED1;
    padding: 12px 25px;
    border: 3px outset #9370DB;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    min-width: 250px;
    text-align: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.platform-btn:hover {
    background: linear-gradient(180deg, #9370DB 0%, #6441A5 100%);
    color: white;
    border: 3px outset #DA70D6;
    transform: translateY(-2px);
    box-shadow: 3px 5px 10px rgba(147, 112, 219, 0.7);
}

/* CLIPS GRID */
.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.clip-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border: 3px ridge #00CED1;
    padding: 10px;
    box-shadow: 3px 3px 10px rgba(0, 206, 209, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.clip-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(255, 20, 147, 0.7);
    border-color: #FF1493;
}

.clip-card a {
    text-decoration: none;
    display: block;
}

.clip-thumb {
    width: 100%;
    height: auto;
    border: 2px solid #9370DB;
    margin-bottom: 10px;
    animation: none !important;
}

.clip-card:hover .clip-thumb {
    border-color: #FF1493;
}

/* VIDEO CONTAINER (for responsive embeds) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* TWITCH EMBEDS */
.twitch-container,
.twitch-chat-container {
    max-width: 100%;
    overflow: hidden;
}

.twitch-container iframe,
.twitch-chat-container iframe {
    max-width: 100%;
}

/* LINKS BIO PAGE */
.links-bio-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-category {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.link-bio-btn {
    display: block;
    background: linear-gradient(180deg, #444 0%, #222 100%);
    color: #00CED1;
    padding: 15px 20px;
    border: 4px outset #00CED1;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    text-align: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.link-bio-btn:hover {
    background: linear-gradient(180deg, #00CED1 0%, #008B8B 100%);
    color: #000000;
    border: 4px outset #FF1493;
    transform: translateY(-3px);
    box-shadow: 3px 5px 15px rgba(0, 206, 209, 0.7);
}

/* BIG BUTTON (for YouTube subscribe, etc) */
.big-btn {
    display: inline-block;
    background: linear-gradient(180deg, #FF1493 0%, #C71585 100%);
    color: white;
    padding: 15px 30px;
    border: 4px outset #FF1493;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
    animation: bigBtnPulse 2s ease-in-out infinite;
}

.big-btn:hover {
    background: linear-gradient(180deg, #FF69B4 0%, #FF1493 100%);
    transform: scale(1.05);
    box-shadow: 4px 6px 15px rgba(255, 20, 147, 0.8);
    animation: none;
}

@keyframes bigBtnPulse {
    0%, 100% { box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5); }
    50% { box-shadow: 4px 4px 20px rgba(255, 20, 147, 0.8); }
}

/* SCROLLBAR STYLING - JAZZ CUP EDITION */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00CED1, #DA70D6, #FF1493, #9370DB);
    border: 2px solid #00CED1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FF1493, #9370DB, #DA70D6, #00CED1);
}
