/* ===== CSS VARIABLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --primary-lavender: #C4B5FD;
    --accent-pink: #FF6B9D;
    --accent-magenta: #E879F9;
    --accent-rose: #FDA4AF;
    --chrome-purple: #7C3AED;
    --deep-purple: #1a0a2e;
    --holy-white: #FFFEF0;
    --bg-cream: #FDF4FF;
    --window-lavender: #DDD6FE;
    --window-violet: #C4B5FD;
    --text-dark: #1a0a2e;
    --border-purple: #A78BFA;
    --soft-pink: #F9A8D4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VT323', monospace;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 50%, #0d001a 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== BACKGROUND PATTERN ===== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--accent-pink) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--accent-magenta) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--primary-lavender) 0%, transparent 30%);
}

/* ===== HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--window-lavender) 0%, var(--window-violet) 100%);
    border-bottom: 4px solid var(--border-purple);
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    background: linear-gradient(180deg, var(--primary-lavender) 0%, var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 0 var(--deep-purple));
}

.logo-text {
    font-family: 'Cyrivendell', serif;
    font-size: 1rem;
    color: var(--deep-purple);
    letter-spacing: 4px;
}

.main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: linear-gradient(180deg, var(--primary-lavender) 0%, var(--chrome-purple) 100%);
    border: 3px solid var(--deep-purple);
    border-radius: 8px;
    color: var(--deep-purple);
    text-decoration: none;
    box-shadow: 3px 3px 0 var(--deep-purple);
    transition: all 0.2s;
}

.nav-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--deep-purple);
    background: linear-gradient(180deg, var(--accent-pink) 0%, var(--accent-magenta) 100%);
}

.header-deco {
    font-size: 2rem;
    color: var(--primary-lavender);
    text-shadow: 0 0 10px var(--accent-magenta);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rainbow-divider {
    height: 8px;
    background: linear-gradient(90deg, 
        #C4B5FD, #E879F9, #A78BFA, #8B5CF6, 
        #7C3AED, #6D28D9, #C4B5FD);
    background-size: 200% 100%;
    animation: rainbowMove 3s linear infinite;
}

@keyframes rainbowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
    display: grid;
    grid-template-columns: 220px 1fr 250px;
    gap: 20px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-window {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFF5F8 100%);
    border: 3px solid var(--border-purple);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        4px 4px 0 var(--deep-purple),
        0 0 15px rgba(167, 139, 250, 0.2);
}

.window-titlebar {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-magenta));
    padding: 8px 12px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: var(--deep-purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--deep-purple);
}

.titlebar-dots {
    display: flex;
    gap: 4px;
}

.titlebar-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-lavender);
    border: 1px solid var(--deep-purple);
}

.titlebar-dots span:nth-child(2) { background: var(--accent-magenta); }
.titlebar-dots span:nth-child(3) { background: var(--accent-pink); }

.window-body {
    padding: 12px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.9rem;
    color: var(--deep-purple);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.sidebar-link:hover, .sidebar-link.active {
    background: linear-gradient(90deg, var(--window-lavender), var(--window-violet));
    border-color: var(--border-purple);
    transform: translateX(5px);
}

/* Webring */
.webring-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--accent-pink);
    text-align: center;
}

.webring-item:last-child { border-bottom: none; }

.webring-name {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 5px;
}

.webring-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.webring-controls a {
    color: var(--accent-pink);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.webring-controls a:hover {
    transform: scale(1.3);
    color: var(--accent-magenta);
}

/* Buttons Collection */
.buttons-collection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.buttons-collection img {
    max-width: 88px;
    height: auto;
    image-rendering: pixelated;
}

.custom-button {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    padding: 8px 12px;
    background: var(--primary-lavender);
    border: 2px solid var(--deep-purple);
    border-radius: 5px;
    color: var(--deep-purple);
    text-align: center;
    box-shadow: 2px 2px 0 var(--deep-purple);
}

.custom-button.rainbow {
    background: linear-gradient(90deg, 
        #FF6B9D, #E879F9, #C4B5FD, #A78BFA, #FF6B9D);
    background-size: 200% 100%;
    animation: rainbowMove 3s linear infinite;
}

/* ===== CENTER CONTENT ===== */
.center-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-window {
    background: linear-gradient(180deg, var(--window-lavender) 0%, var(--window-violet) 100%);
    border: 4px solid var(--border-purple);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        6px 6px 0 var(--deep-purple),
        0 0 30px rgba(167, 139, 250, 0.3);
}

.rainbow-title {
    background: linear-gradient(90deg, 
        #E879F9, #FF6B9D, #C4B5FD, #A78BFA, 
        #8B5CF6, #7C3AED, #E879F9);
    background-size: 200% 100%;
    animation: rainbowMove 3s linear infinite;
}

.hero-content {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 25px;
    align-items: center;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--deep-purple);
}

/* Rainbow text effect */
.txt-rainbow span {
    animation: rainbowText 2s linear infinite;
}

.txt-rainbow span:nth-child(1) { animation-delay: 0s; }
.txt-rainbow span:nth-child(2) { animation-delay: 0.1s; }
.txt-rainbow span:nth-child(3) { animation-delay: 0.2s; }
.txt-rainbow span:nth-child(4) { animation-delay: 0.3s; }
.txt-rainbow span:nth-child(5) { animation-delay: 0.4s; }
.txt-rainbow span:nth-child(6) { animation-delay: 0.5s; }
.txt-rainbow span:nth-child(7) { animation-delay: 0.6s; }
.txt-rainbow span:nth-child(8) { animation-delay: 0.7s; }
.txt-rainbow span:nth-child(9) { animation-delay: 0.8s; }
.txt-rainbow span:nth-child(10) { animation-delay: 0.9s; }
.txt-rainbow span:nth-child(11) { animation-delay: 1s; }
.txt-rainbow span:nth-child(12) { animation-delay: 1.1s; }
.txt-rainbow span:nth-child(13) { animation-delay: 1.2s; }

@keyframes rainbowText {
    0% { color: #E879F9; }
    20% { color: #FF6B9D; }
    40% { color: #C4B5FD; }
    60% { color: #A78BFA; }
    80% { color: #8B5CF6; }
    100% { color: #E879F9; }
}

.hero-subtitle {
    font-family: 'Cyrivendell', serif;
    font-size: 1.3rem;
    color: var(--primary-purple);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.construction-banner {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-magenta));
    padding: 8px;
    margin: 15px 0;
    border: 2px solid var(--deep-purple);
    border-radius: 5px;
}

.construction-banner marquee {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: var(--deep-purple);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-purple);
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-magenta));
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    padding: 15px 25px;
    border: 3px solid var(--deep-purple);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--deep-purple);
    transition: all 0.2s;
    cursor: pointer;
}

.action-btn.primary {
    background: linear-gradient(180deg, var(--primary-lavender) 0%, var(--chrome-purple) 100%);
    color: var(--deep-purple);
}

.action-btn.secondary {
    background: linear-gradient(180deg, var(--accent-pink) 0%, var(--accent-magenta) 100%);
    color: var(--deep-purple);
}

.action-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--deep-purple);
}

.action-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--deep-purple);
}

/* TV Container */
.tv-container {
    display: flex;
    justify-content: center;
}

.tv-frame {
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    padding: 20px;
    border-radius: 20px;
    border: 4px solid #555;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.5),
        0 10px 30px rgba(0,0,0,0.5);
}

.tv-screen {
    width: 220px;
    height: 180px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 3px solid #222;
}

.tv-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
}

.tv-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.tv-slide.active {
    opacity: 1;
}

.slide-emoji {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.slide-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: var(--primary-lavender);
    text-shadow: 0 0 10px var(--accent-magenta);
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.1) 0px,
        rgba(0,0,0,0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.tv-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.tv-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #555, #333);
    border: 2px solid #666;
    border-radius: 50%;
    color: var(--primary-lavender);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tv-btn:hover {
    background: linear-gradient(180deg, #666, #444);
    transform: scale(1.1);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    position: relative;
}

.section-window {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFF5F8 100%);
    border: 3px solid var(--border-purple);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        5px 5px 0 var(--deep-purple),
        0 0 20px rgba(167, 139, 250, 0.2);
}

.section-body {
    padding: 25px;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    color: var(--deep-purple);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.about-card {
    background: linear-gradient(135deg, var(--window-lavender) 0%, var(--window-violet) 100%);
    border: 3px solid var(--border-purple);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 4px 4px 0 var(--deep-purple);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-card h3 {
    font-family: 'Boldness Race', sans-serif;
    font-size: 1rem;
    color: var(--deep-purple);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.scripture-box {
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    border: 3px solid var(--primary-lavender);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
}

.scripture-mark {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-lavender);
    background: var(--bg-cream);
    padding: 0 15px;
    border-radius: 50%;
}

.scripture-box blockquote {
    font-family: 'Cyrivendell', serif;
    font-size: 1.3rem;
    color: var(--primary-lavender);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.scripture-box cite {
    font-family: 'Boldness Race', sans-serif;
    font-size: 1rem;
    color: var(--accent-pink);
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.artist-card {
    background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
    border: 3px solid var(--accent-pink);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 4px 4px 0 var(--deep-purple);
    transition: all 0.3s;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-magenta);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 15px;
    border: 3px solid var(--deep-purple);
}

.artist-card h4 {
    font-family: 'Boldness Race', sans-serif;
    font-size: 1rem;
    color: var(--deep-purple);
    margin-bottom: 5px;
}

.artist-medium {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 10px;
}

.artist-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.artist-link {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-pink);
    text-decoration: none;
    transition: color 0.2s;
}

.artist-link:hover {
    color: var(--accent-magenta);
}

/* Join CTA */
.join-cta {
    background: linear-gradient(90deg, var(--accent-pink), var(--primary-purple), var(--accent-magenta));
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
}

.join-cta h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--deep-purple);
}

.join-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    border: 3px solid var(--accent-pink);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-lavender);
    box-shadow: 0 0 20px var(--accent-magenta);
}

.gallery-placeholder {
    font-size: 3rem;
    opacity: 0.5;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 46, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid var(--accent-pink);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(232, 121, 249, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary-lavender);
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-pink);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.resource-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff5f8 100%);
    border: 3px solid var(--border-purple);
    border-radius: 12px;
    box-shadow: 4px 4px 0 var(--deep-purple);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 6px 8px 0 var(--deep-purple);
    border-color: var(--accent-pink);
}

.resource-thumbnail:active {
    transform: translateY(0);
    box-shadow: 2px 2px 0 var(--deep-purple);
}

.resource-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-lavender);
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.resource-thumbnail:hover img {
    transform: scale(1.1);
    border-color: var(--accent-magenta);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s;
}

.resource-thumbnail:hover .resource-icon {
    transform: scale(1.2);
}

.resource-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--deep-purple);
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 100%;
}

/* Updates */
.updates-body {
    max-height: 300px;
    overflow-y: auto;
}

.update-item {
    padding: 12px;
    border-bottom: 2px dashed var(--accent-pink);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.update-item:last-child { border-bottom: none; }

.update-date {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--primary-purple);
    white-space: nowrap;
}

.update-text {
    font-size: 1rem;
    line-height: 1.4;
}

/* ===== RIGHT SIDEBAR WIDGETS ===== */
.clock-widget .window-body {
    text-align: center;
}

.digital-clock {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    background: #000;
    padding: 10px;
    border-radius: 5px;
    color: var(--accent-magenta);
    text-shadow: 0 0 10px var(--accent-magenta);
}

.date-display {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--primary-purple);
}

/* Verse Widget */
.verse-content {
    text-align: center;
}

.verse-text {
    font-family: 'Cyrivendell', serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--deep-purple);
    font-style: italic;
    margin-bottom: 10px;
}

.verse-ref {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-purple);
}

/* Guestbook Widget */
.guestbook-entries {
    max-height: 150px;
    overflow-y: auto;
}

.guest-entry {
    padding: 8px;
    border-bottom: 1px dashed var(--accent-pink);
}

.guest-name {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-purple);
}

.guest-entry p {
    font-size: 0.9rem;
    margin-top: 5px;
}

.sign-guestbook {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-family: 'Boldness Race', sans-serif;
    color: var(--accent-pink);
    text-decoration: none;
}

.sign-guestbook:hover {
    color: var(--accent-magenta);
}

/* Music Widget */
.music-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.music-art {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-magenta));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.music-info {
    display: flex;
    flex-direction: column;
}

.music-title {
    font-family: 'Boldness Race', sans-serif;
    font-size: 0.8rem;
    color: var(--deep-purple);
}

.music-artist {
    font-size: 0.8rem;
    color: var(--primary-purple);
}

.music-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.music-btn {
    width: 35px;
    height: 35px;
    background: var(--primary-lavender);
    border: 2px solid var(--deep-purple);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.music-btn:hover {
    background: var(--accent-magenta);
    transform: scale(1.1);
}

/* Visitor Counter */
.visitor-counter {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 5px;
}

.counter-digit {
    width: 25px;
    height: 35px;
    background: #000;
    color: var(--accent-magenta);
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    border-radius: 3px;
    text-shadow: 0 0 5px var(--accent-magenta);
}

.counter-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--primary-purple);
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(180deg, var(--deep-purple), #0a0015);
    border-top: 4px solid var(--primary-lavender);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--primary-lavender);
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: var(--bg-cream);
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.social-links a {
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 2px solid var(--primary-purple);
    text-align: center;
    padding: 15px;
}

.footer-marquee {
    margin-bottom: 10px;
}

.footer-marquee marquee {
    color: var(--primary-lavender);
    font-family: 'Cyrivendell', serif;
}

.copyright {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: var(--accent-pink);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-element {
    position: fixed;
    font-size: 2rem;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.float-1 { top: 20%; left: 5%; color: var(--primary-lavender); animation-delay: 0s; }
.float-2 { top: 60%; right: 3%; color: var(--accent-magenta); animation-delay: 3s; }
.float-3 { bottom: 20%; left: 8%; color: var(--accent-pink); animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-lavender);
    border: 3px solid var(--deep-purple);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 3px 3px 0 var(--deep-purple);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-magenta);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 200px 1fr;
    }
    
    .sidebar-right {
        display: none;
    }
}

@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .main-nav {
        gap: 5px;
    }
    
    .nav-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-number {
        font-size: 1.5rem;
    }
    
    .action-btn {
        width: 100%;
        text-align: center;
    }
    
    .about-grid,
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--deep-purple);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-magenta));
    border-radius: 6px;
    border: 2px solid var(--deep-purple);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-lavender), var(--chrome-purple));
}
/* ===== IMAGE DECORATIONS ===== */
.deco-image {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
    filter: drop-shadow(0 0 10px rgba(232, 121, 249, 0.5));
}

.deco-image.top-left {
    top: 120px;
    left: 10px;
    max-width: 140px;
    animation: floatImage 8s ease-in-out infinite;
}

.deco-image.top-right {
    top: 120px;
    right: 10px;
    max-width: 120px;
    animation: floatImage 9s ease-in-out infinite reverse;
}

.deco-image.bottom-left {
    bottom: 100px;
    left: 15px;
    max-width: 130px;
    animation: floatImage 10s ease-in-out infinite;
}

.deco-image.bottom-right {
    bottom: 80px;
    right: 15px;
    max-width: 150px;
    animation: floatImage 7s ease-in-out infinite reverse;
}

.deco-image.side-left {
    top: 45%;
    left: 5px;
    max-width: 100px;
    animation: pulse 4s ease-in-out infinite;
}

.deco-image.side-right {
    top: 40%;
    right: 5px;
    max-width: 110px;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* God is Online badge - special treatment */
.god-is-online {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 120px;
    z-index: 100;
    opacity: 1;
    animation: glow 2s ease-in-out infinite alternate;
    pointer-events: auto;
    cursor: pointer;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px rgba(232, 121, 249, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(232, 121, 249, 0.9)); }
}

/* Hide decorative images on smaller screens */
@media (max-width: 1400px) {
    .deco-image.side-left,
    .deco-image.side-right {
        display: none;
    }
}

@media (max-width: 1100px) {
    .deco-image {
        display: none;
    }
    .god-is-online {
        max-width: 80px;
    }
}

/* ===== WEBAMP PLAYER ===== */
#webamp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 275px;
    height: 350px;
}

@media (max-width: 768px) {
    #webamp-container {
        position: relative;
        width: 100%;
        max-width: 275px;
        height: 350px;
        margin: 10px auto;
        bottom: auto;
        right: auto;
    }
}

/* ===== FALLING STARS/HEARTS ANIMATION ===== */
.snowflake {
    font-size: 20px;
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    pointer-events: none;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
}

@-webkit-keyframes snowflakes-fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

@-webkit-keyframes snowflakes-shake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    50% { -webkit-transform: translateX(80px); transform: translateX(80px); }
}

@keyframes snowflakes-fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

@keyframes snowflakes-shake {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(80px); }
}

.snowflake:nth-of-type(0) { left: 1%; -webkit-animation-delay: 0s, 0s; animation-delay: 0s, 0s; }
.snowflake:nth-of-type(1) { left: 10%; -webkit-animation-delay: 1s, 1s; animation-delay: 1s, 1s; }
.snowflake:nth-of-type(2) { left: 20%; -webkit-animation-delay: 6s, .5s; animation-delay: 6s, .5s; }
.snowflake:nth-of-type(3) { left: 30%; -webkit-animation-delay: 4s, 2s; animation-delay: 4s, 2s; }
.snowflake:nth-of-type(4) { left: 40%; -webkit-animation-delay: 2s, 2s; animation-delay: 2s, 2s; }
.snowflake:nth-of-type(5) { left: 50%; -webkit-animation-delay: 8s, 3s; animation-delay: 8s, 3s; }
.snowflake:nth-of-type(6) { left: 60%; -webkit-animation-delay: 6s, 2s; animation-delay: 6s, 2s; }
.snowflake:nth-of-type(7) { left: 70%; -webkit-animation-delay: 2.5s, 1s; animation-delay: 2.5s, 1s; }
.snowflake:nth-of-type(8) { left: 80%; -webkit-animation-delay: 1s, 0s; animation-delay: 1s, 0s; }
.snowflake:nth-of-type(9) { left: 90%; -webkit-animation-delay: 3s, 1.5s; animation-delay: 3s, 1.5s; }
.snowflake:nth-of-type(10) { left: 25%; -webkit-animation-delay: 2s, 0s; animation-delay: 2s, 0s; }
.snowflake:nth-of-type(11) { left: 65%; -webkit-animation-delay: 4s, 2.5s; animation-delay: 4s, 2.5s; }
.snowflake:nth-of-type(12) { left: 5%; -webkit-animation-delay: 5s, 1s; animation-delay: 5s, 1s; }
.snowflake:nth-of-type(13) { left: 35%; -webkit-animation-delay: 7s, 2s; animation-delay: 7s, 2s; }
.snowflake:nth-of-type(14) { left: 75%; -webkit-animation-delay: 3s, 0.5s; animation-delay: 3s, 0.5s; }
.snowflake:nth-of-type(15) { left: 85%; -webkit-animation-delay: 9s, 3s; animation-delay: 9s, 3s; }