@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --pink-light: #FFF0F5;
    --pink-soft: #FFB7D5;
    --pink-main: #FF85A8;
    --pink-deep: #E85A7A;
    --purple-soft: #E8D5FF;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --text-light: #e8e8f0;
    --text-muted: #a0a0b0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0px;
    color: var(--text-light);
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
}

body {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f18 50%, #0a0a12 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.cmain {
    border: 2px solid var(--pink-deep);
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;
    background: var(--bg-card);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.15), inset 0 0 60px rgba(255, 105, 180, 0.03);
    padding: 20px;
}

.bg-decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bg-decor::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 133, 168, 0.08) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    animation: drift 12s ease-in-out infinite;
}

.bg-decor::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 213, 255, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: drift 14s ease-in-out infinite reverse;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(3deg); }
    66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

.floating {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.sparkle {
    width: 12px;
    height: 12px;
    background: var(--pink-soft);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0.6;
}

.heart {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--pink-main);
    transform: rotate(45deg);
    animation: heartbeat 2.5s ease-in-out infinite;
    opacity: 0.5;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--pink-main);
    border-radius: 50%;
}

.heart::before { transform: translate(-5px, 0); }
.heart::after { transform: translate(0, -5px); }

.dot {
    width: 6px;
    height: 6px;
    background: var(--pink-soft);
    border-radius: 50%;
    animation: floatDot 4s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.7; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-8px); opacity: 0.6; }
}

.music-player {
    background: rgba(255, 105, 180, 0.08);
    border: 2px solid var(--pink-deep);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.player-track-info {
    width: 50%;
    min-width: 100px;
    overflow: hidden;
}

#now-playing {
    color: var(--pink-main);
    font-weight: 600;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

#now-playing.scrolling {
    animation: scroll-left 8s linear infinite;
}

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

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%;
    min-width: 200px;
}

.player-btn {
    background: transparent;
    border: 2px solid var(--pink-deep);
    color: var(--pink-main);
    font-size: 18px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.player-btn:hover {
    background: rgba(255, 105, 180, 0.2);
}

.progress-container {
    flex: 1;
    min-width: 0;
    height: 10px;
    background: #1a1a25;
    border: 1px solid var(--pink-deep);
    border-radius: 5px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-main), var(--pink-deep));
    width: 0%;
    transition: width 0.1s;
    border-radius: 5px;
}

#player-time {
    color: var(--text-muted);
    font-size: 14px;
    white-space: nowrap;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--pink-main);
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    font-weight: 700;
}

h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

h2 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

strong {
    color: var(--pink-soft);
    font-weight: 600;
}

a {
    color: var(--pink-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--pink-soft);
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.cmain {
    border: 2px solid var(--pink-deep);
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;
    background: var(--bg-card);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.15), inset 0 0 60px rgba(255, 105, 180, 0.03);
    padding: 20px;
}

.cheader {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
}

.cheader img {
    max-width: 400px;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
    display: block;
    margin: 0 auto;
}

.cheader marquee {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--pink-main);
    background: rgba(255, 105, 180, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--pink-deep);
}

iframe {
    border: 2px solid var(--pink-deep);
    border-radius: 12px;
    min-height: 300px;
    width: 200px;
    background: #0a0a0f;
}

.mid {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 15px;
    align-items: stretch;
    min-width: 0;
}

.sidebar {
    flex: 0 0 200px;
}

.content {
    flex: 1;
    border: 1px solid var(--pink-deep);
    border-radius: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    height: auto;
    min-width: 0;
}

.fancy {
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    color: var(--pink-main);
}

@media (max-width: 800px) {
    .mid {
        flex-direction: column !important;
        align-items: center;
    }

    .sidebar {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 15px;
    }

    .main-sidebar {
        width: 100%;
        height: 300px;
    }

    .content {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Art Grid */
.art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.art-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--pink-deep);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.art-thumb:hover {
    transform: scale(1.05);
    border-color: var(--pink-main);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

@media (max-width: 600px) {
    .art-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
}

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    image-rendering: pixelated;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
}

.lightbox-video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--pink-main);
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--pink-soft);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 10px 20px;
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    max-width: 80%;
    border-radius: 20px;
    border: 1px solid var(--pink-deep);
}

/* Music Page */
.empty-message {
    font-style: italic;
    color: var(--text-muted);
    margin: 10px 0;
}

.albums-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.single-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 105, 180, 0.05);
    border: 2px solid var(--pink-deep);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.single-card:hover {
    background: rgba(255, 105, 180, 0.15);
    border-color: var(--pink-main);
}

.album-card {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--pink-deep);
    background: rgba(255, 105, 180, 0.05);
    border-radius: 12px;
    min-width: 0;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.album-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    min-height: 50px;
    padding: 0 15px;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

.album-header:hover {
    background: rgba(255, 105, 180, 0.25);
}

.album-download {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--pink-deep);
    color: var(--pink-main);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.album-download:hover {
    background: rgba(255, 105, 180, 0.15);
}

.album-toggle {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.album-title {
    flex: 1;
    font-weight: 600;
}

.album-year {
    flex-shrink: 0;
    color: var(--text-muted);
}

.track-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--pink-deep);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-card:hover {
    background: rgba(255, 105, 180, 0.1);
}

.track-download {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--pink-deep);
    color: var(--pink-main);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.track-download:hover {
    background: rgba(255, 105, 180, 0.15);
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.album-card.collapsed .album-tracks {
    display: none;
}

.album-card.collapsed .album-toggle {
    transform: rotate(90deg);
}

.track-duration {
    color: var(--text-muted);
}

.track-tooltip {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--pink-deep);
    color: var(--text-light);
    padding: 8px 12px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    max-width: 300px;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

/* Projects Page */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    border: 2px solid var(--pink-deep);
    background: rgba(255, 105, 180, 0.05);
    border-radius: 12px;
    min-width: 0;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.project-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    gap: 10px;
    transition: all 0.3s ease;
}

.project-header:hover {
    background: rgba(255, 105, 180, 0.25);
}

.project-title {
    flex: 1;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-light);
}

.project-year {
    color: var(--text-muted);
}

.project-toggle {
    font-size: 20px;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.project-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
    background: rgba(0, 0, 0, 0.2);
}

.project-card.collapsed .project-body {
    display: none;
}

.project-card.collapsed .project-toggle {
    transform: rotate(90deg);
}

.project-photos {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.project-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--pink-deep);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-photo:hover {
    transform: scale(1.05);
    border-color: var(--pink-main);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.project-photo.is-video {
    position: relative;
}

.project-photo.is-video::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.project-info {
    color: var(--text-light);
    line-height: 1.6;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
}

ul ul {
    padding-left: 24px;
    margin: 5px 0;
}

li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

ul > li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--pink-main);
    font-weight: bold;
}

/* Trans flag text gradient */
.trans-flag {
    background: linear-gradient(90deg, #5BCFF7 0%, #F2C9DE 50%, #5BCFF7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dutch flag text gradient */
.dutch-flag {
    background: linear-gradient(90deg, #FF4D5A 0%, #FFFEF0 50%, #4D7FDD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(77, 127, 221, 0.5);
}

/* Sidebar - normal list styling */
.sidebar ul,
.sidebar li,
.sidebar ul > li::before {
    list-style: disc;
    padding-left: 0;
    position: static;
    color: inherit;
    content: none;
}