@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@font-face {
    font-family: 'Thundercover';
    src: url('../assets/fonts/thundercover/Thundercover.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #fdfdfd;
    --text-dark: #ffff00;
    --text-muted: #ffffff;
    --card-bg: #ffffff;
    --accent-orange: #ff5f00;
    --accent-yellow: #ffb700;
    --pill-pink: #fbc6ea;
    --pill-yellow: #ffe4a0;
    --pill-purple: #e0ccff;
    --pill-orange: #ffd6a5;
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px; /* Space around the browser window */
    box-sizing: border-box;
    font-family: 'Pixelated MS Sans Serif', 'Microsoft Sans Serif', Arial, sans-serif;
    background-color: #b8c6fa; /* Pastel blue/purple background */
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100svh;
    overflow: hidden;
}

/* Win95 IE Browser App */
.browser-app {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    background: #000;
    border: 2px solid #592e83;
    border-radius: 8px;
    box-shadow: 0 0 20px #ff00ff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateZ(0);
}

.win95-title-bar {
    background: #592e83;
    color: white;
    position: relative;
    z-index: 10;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Pixelated MS Sans Serif', 'Microsoft Sans Serif', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.title-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.title-text i {
    font-size: 16px;
}

.title-controls {
    display: flex;
    gap: 2px;
}

.win-btn {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #000000 #000000 #dfdfdf;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    color: black;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.win-btn:active {
    border-color: #000000 #dfdfdf #dfdfdf #000000;
}

.win95-menu-bar {
    display: flex;
    gap: 16px;
    padding: 4px 8px;
    font-size: 13px;
    color: black;
    border-bottom: 1px solid #dfdfdf;
}

.win95-menu-bar span {
    cursor: default;
}

/* Toolbar */
.win95-toolbar {
    background: #d1a1ff;
    position: relative;
    z-index: 10;
    padding: 4px 8px;
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #a340f0;
}

.toolbar-btn {
    background: transparent;
    border: none;
    padding: 4px 12px;
    font-family: 'Pixelated MS Sans Serif', 'Microsoft Sans Serif', Arial, sans-serif;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toolbar-btn:hover {
    background: #e5ccff;
}

.toolbar-btn i {
    color: #592e83;
}

/* Address Bar */
.win95-address-bar {
    background: #e5ccff;
    position: relative;
    z-index: 10;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #a340f0;
}

.address-label {
    font-size: 13px;
    color: black;
}

.address-input-container {
    flex: 1;
    display: flex;
    background: #ffffff;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    align-items: center;
    padding: 2px;
}

.address-ie-icon {
    color: #000080;
    margin: 0 6px;
    font-size: 14px;
}

.win-address-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.win-dropdown-btn {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #000000 #000000 #dfdfdf;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    cursor: pointer;
    padding: 0;
}

.go-btn {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 13px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 4px;
}

.browser-viewport {
    flex: 1;
    position: relative;
    overflow-y: auto;
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    border-right: 1px solid #dfe0e3;
    border-bottom: 1px solid #dfe0e3;
    font-family: 'Pixelated MS Sans Serif', 'Microsoft Sans Serif', Arial, sans-serif;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.browser-viewport::-webkit-scrollbar {
    display: none;
}

#bg-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 10, 15, 0.6);
    z-index: 1;
    pointer-events: none;
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

/* Favorites Page Layout */
.fav-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 780px;
    margin: 10px auto 20px;
    position: relative;
    z-index: 2;
    gap: 30px;
}
.fav-col-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.fav-col-left .fav-window:nth-child(2) {
    transform: translateX(60px);
}
.fav-col-right {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    flex: 1;
}
.fav-window {
    background: rgba(20, 5, 40, 0.85);
    border-top: 2px solid #ff00ff;
    border-right: 2px solid #ff00ff;
    border-bottom: 2px solid #00ffff;
    border-left: 2px solid #00ffff;
    box-shadow: 0 0 15px #ff00ff, inset 0 0 10px #ff00ff;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.fav-title-bar {
    background: #592e83;
    color: white;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    border-bottom: 2px solid #ff00ff;
}
.fav-shuffle {
    background: transparent;
    border: 1px solid white;
    color: white;
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    cursor: pointer;
}
.fav-content {
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.fav-art {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.large-art {
    width: 140px;
    height: 140px;
}
.fav-text {
    text-align: center;
}
.fav-item-title {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}
.fav-item-sub {
    font-size: 11px;
    color: #ff00ff;
    letter-spacing: 1px;
    font-family: 'Noto Sans JP', sans-serif;
}
.fav-text {
    position: relative;
}
.fav-item-title, .fav-item-sub, .fav-art {
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0px);
}
.fav-item-sub {
    transition-delay: 0.05s;
}

.fav-content.conceal .fav-item-title,
.fav-content.conceal .fav-art {
    opacity: 0;
    transform: translate(15px, 15px);
    filter: blur(4px);
    transition-delay: 0s;
}
.fav-content.conceal .fav-item-sub {
    opacity: 0;
    transform: translate(15px, 15px);
    filter: blur(4px);
    transition-delay: 0.05s;
}

.fav-content.prepare .fav-item-title,
.fav-content.prepare .fav-item-sub,
.fav-content.prepare .fav-art {
    transition: none;
    opacity: 0;
    transform: translate(-15px, -15px);
    filter: blur(4px);
}

@media (max-width: 768px) {
    body { padding: 15px; }
    
    .fav-grid {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        padding: 0 15px;
    }
    .fav-col-left, .fav-col-right {
        gap: 20px;
        transform: none !important;
        margin-top: 0 !important;
        width: 100%;
    }
    .fav-col-left .fav-window:nth-child(2) {
        transform: none !important;
    }
    
    .landing-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    .right-pane {
        width: 100%;
        margin-top: 50px;
    }
    .retro-player {
        margin-left: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Pixelated MS Sans Serif', 'Microsoft Sans Serif', Arial, sans-serif;
    font-weight: bold;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.thunder-text {
    font-family: 'Thundercover', Impact, sans-serif;
    letter-spacing: 1px;
    font-weight: normal;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
}

/* Unified Landing Hero Section */
.landing-hero {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.left-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.right-pane {
    width: 280px;
}
.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 5px;
    border: none;
    padding: 3px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff, #ff00ff);
    background-size: 300% 300%;
    animation: gradientGlow 3s ease infinite;
    box-shadow: -4px 4px 15px rgba(0, 255, 255, 0.4), 4px -4px 15px rgba(255, 0, 255, 0.4);
}
.profile-box-wrapper {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, #3366ff, #ff00ff);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(51, 102, 255, 0.6);
}
.profile-box {
    background: rgba(10, 5, 35, 0.9);
    padding: 16px;
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
    border-radius: 8px;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}
.profile-box::before {
    content: '';
    position: absolute;
    top: 5px; left: 25px; right: 25px; height: 1px;
    background: #00ffff;
    box-shadow: 0 0 5px #00ffff;
}
.profile-box::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 25px; right: 25px; height: 1px;
    background: #ff00ff;
    box-shadow: 0 0 5px #ff00ff;
}

.ariin-text, .murdock-text {
    font-family: 'Thundercover', Impact, sans-serif;
    color: #ffff00;
    font-size: 28px;
    text-shadow: 0 0 10px #ffff00;
    font-style: normal;
    letter-spacing: 1px;
    margin: 0 4px;
}

.hero-socials {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 5px 0;
}
.hero-socials a {
    color: #ff00ff;
    font-size: 26px;
    text-shadow: 0 0 15px #ff00ff;
    transition: transform 0.2s;
}
.hero-socials a:nth-child(2) { color: #a340f0; text-shadow: 0 0 15px #a340f0; }
.hero-socials a:nth-child(3) { color: #00ffff; text-shadow: 0 0 15px #00ffff; }
.hero-socials a:hover {
    transform: translateY(-4px);
}

.terminal-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.5px;
    
    color: #ffff00;
    
    text-shadow: 
        1px 1px 0 #000,
        2px 2px 0 #000,
        3px 3px 0 #00ffff,
        4px 4px 0 #00ffff;
        
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.terminal-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(120deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.95) 50%, transparent 55%, transparent 100%);
    background-size: 200% auto;
    
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    
    animation: shineSweepText 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes shineSweepText {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.thunder-symbol {
    font-family: 'Thundercover', sans-serif;
}

.retro-player {
    background: rgba(15, 5, 30, 0.85);
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    margin-top: -65px;
    margin-left: 45px;
    position: relative;
    box-shadow: -4px 4px 15px rgba(0, 255, 255, 0.4), 4px -4px 15px rgba(255, 0, 255, 0.4), inset 0 0 10px rgba(255, 0, 255, 0.2);
}
.retro-player::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 0;
    padding: 2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff, #ff00ff);
    background-size: 300% 300%;
    animation: gradientGlow 3s ease infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
}
.player-title-bar {
    background: #592e83;
    color: white;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff00ff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.player-title-text {
    font-weight: bold;
    font-size: 13px;
}
.player-inner {
    padding: 12px;
    display: flex;
    flex-direction: column;
}
.player-art-container {
    padding-bottom: 12px;
    text-align: center;
}
.player-art-container img {
    width: 100%;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
    border-radius: 4px;
}
.player-track-info {
    margin-bottom: 8px;
    text-align: center;
}
.player-artist {
    color: #ff00ff;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-shadow: 0 0 10px #ff00ff;
    margin-bottom: 2px;
}
.player-title {
    color: #00ffff;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 5px #00ffff;
}
.player-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.visualizer {
    display: flex;
    gap: 3px;
    height: 40px;
    align-items: flex-end;
    justify-content: center;
    margin: 10px 0;
}
.visualizer .bar {
    width: 6px;
    background: #ff00ff;
    box-shadow: 0 0 5px #ff00ff;
    height: 5px;
    transition: height 0.05s ease;
}
.time-box {
    border: 1px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    color: #00ffff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    box-shadow: 0 0 10px #00ffff, inset 0 0 5px #00ffff;
    width: 100%;
    text-align: center;
}
.player-controls {
    display: flex;
    gap: 8px;
}
.play-btn {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    color: #00ffff;
    box-shadow: 0 0 10px #00ffff;
    border-radius: 4px;
    padding: 8px;
    flex: 1;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
    font-size: 12px;
}
.play-btn:hover { background: rgba(0, 255, 255, 0.4); }
.heart-btn {
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid #ff00ff;
    color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
    border-radius: 4px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
}
.heart-btn:hover { background: rgba(255, 0, 255, 0.4); }

/* Focus Section Styles (reused in landing bottom) */
.focus-content h2 {
    font-size: clamp(60px, 8vw, 120px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
}
.focus-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 500px;
}
.focus-stats {
    margin-top: 40px;
}
.focus-stats h3 {
    font-size: 48px;
    color: #ff7bac; /* vibrant pink */
    margin-bottom: 8px;
}
.focus-stats p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 300px;
}
.focus-tags-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.focus-tags-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    align-self: flex-end;
}
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
@media(max-width: 900px) {
    .focus-tags-title, .tags-grid { align-self: flex-start; justify-content: flex-start; }
}
.pill {
    padding: 4px 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    color: inherit;
    cursor: pointer;
}

/* Identity Cards (Gradient background container) */
.identity-section {
    padding: 10vh 0;
}
.identity-container {
    background: linear-gradient(135deg, #f4f6fc, #fdf1f3, #eff6fb);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
}
.identity-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.identity-heading {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 60px;
}
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media(max-width: 900px) {
    .cards-row { grid-template-columns: 1fr; }
}
.identity-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.card-step {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.identity-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}
.identity-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Massive CTA & Footer */
.cta-footer-section {
    padding: 10vh 0 5vh 0;
}
.massive-cta {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 40px;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}
.massive-cta h2 {
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    max-width: 800px;
    margin: 0 auto 24px auto;
    line-height: 1.1;
}
.massive-cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.9;
}
.btn-primary {
    background: #fff;
    color: var(--text-dark);
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    opacity: 1;
}

/* Clean Footer */
.clean-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding: 40px 0;
}
@media(max-width: 900px) {
    .clean-footer { grid-template-columns: 1fr; }
}
.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}
.social-links {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}
.social-links a {
    color: var(--text-dark);
    font-size: 20px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-col a {
    color: var(--text-muted);
    font-size: 15px;
}
.footer-col a:hover {
    color: var(--text-dark);
}
.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    font-family: 'VT323', monospace;
    outline: none;
    font-size: 18px;
}
.btn-subscribe {
    background: var(--accent-orange);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 18px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #eef0f5;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 14px;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
@media(max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}



/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #008080; /* Classic Win95 teal */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.5s ease;
}
#loading-spammer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.spam-img {
    position: absolute;
    width: 150px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1;
}
.loading-text {
    position: relative;
    z-index: 10;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #000000 #000000 #dfdfdf;
    padding: 16px 32px;
    font-family: 'Pixelated MS Sans Serif', 'Microsoft Sans Serif', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: black;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

.page-content { position: relative; z-index: 2; }

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

.watermark {
    position: fixed;
    bottom: 15px;
    right: 20px;
    font-family: 'Pixelated MS Sans Serif', 'Courier New', Courier, monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    z-index: 9999;
    pointer-events: auto;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.watermark:hover {
    color: rgba(255, 255, 0, 0.9);
    text-shadow: 1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #00ffff;
}
