:root {
    --bg-color: #f8fcfd;
    /* Very subtle cool white */
    --card-bg: rgba(255, 255, 255, 0.65);
    --card-border: rgba(255, 255, 255, 0.8);
    --text-primary: #1e293b;
    /* Dark Slate Blue */
    --text-secondary: #64748b;
    /* Medium Slate */

    /* Watercolor Accents */
    --accent-blue: #3b82f6;
    --accent-cyan: #22d3ee;
    --accent-teal: #0d9488;

    --shadow-soft: 0 10px 30px -10px rgba(14, 165, 233, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(14, 165, 233, 0.25);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

/* Background Canvas */
/* Background Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Soft Paper/Canvas Base */
    background-color: #f8fcfd;
}

/* High-end Grain/Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-glow {
    display: none;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 3rem 2rem;
    z-index: 1;
}

/* Top Hero Section */
.hero {
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pfp-container {
    margin-bottom: 2rem;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-pic:hover {
    transform: scale(1.05);
}

/* Elegant Title */
.artist-name {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    background: linear-gradient(45deg, #1e3a8a, #0d9488);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.subtitle-container {
    font-family: var(--font-heading);
    color: var(--accent-teal);
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 0.5rem;
    min-height: 1.5em;
}

.bio-text {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Sections */
section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-primary);
    position: relative;
}

h2 i {
    color: var(--accent-cyan);
    font-size: 1.4rem;
}

/* Decorative line under headers */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Grids */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* Glass Card - Light Version */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-hover);
    border-color: #fff;
}

/* Social Specifics */
.card-social {
    gap: 1rem;
    flex-direction: row;
    padding: 1.5rem;
}

.card-social span {
    font-weight: 500;
}

.card-social i,
.card-social svg {
    font-size: 1.8rem;
    width: 1.8rem;
    /* Ensure SVG sizing */
    height: 1.8rem;
    /* Ensure SVG sizing */
    transition: color 0.3s, fill 0.3s;
    color: var(--text-secondary);
    fill: var(--text-secondary);
}

.card-social-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
}

/* Brand Colors on Hover (Artistic Muted versions) */
.youtube:hover i {
    color: #ef4444;
}

.twitter:hover .card-social-img {
    filter: inherit;
}

.twitter:hover svg {
    fill: #000000;
}

.instagram:hover i {
    color: #db2777;
}

/* Art Cards */
.card-art {
    align-items: flex-start;
    /* Left align like a gallery label */
    text-align: left;
    height: 100%;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 1rem;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-art h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.card-art .tag {
    font-size: 0.75rem;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 6px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}



/* NFT Gallery Grid */
.nft-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.nft-item {
    aspect-ratio: 1;
    background: #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.nft-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.nft-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
    opacity: 0;
}

.nft-item img.loaded {
    opacity: 1;
}

/* Gallery Overlay (Clean White) */
.nft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.nft-item:hover .nft-overlay {
    transform: translateY(0);
}

.gallery-loader {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    margin: 2rem 0;
}

footer {
    margin-top: 6rem;
    padding-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* Scrollbar (Clean Light) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .artist-name {
        font-size: 3.5rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .card-social {
        justify-content: center;
    }
}