:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #F1C40F;
    --text-color: #2C3E50;
    --background-color: #ECF0F1;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%) !important;
    overflow-x: hidden;
}

.main-container {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}


/* Welcome Section */
#welcome {
    min-height: 100vh;
    background: transparent;
    color: white;
    padding: 1rem;
}

.content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 7rem;
}

.welcome-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 1s ease forwards;
}

.welcome-text {
    font-size: 1.4rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 1s ease forwards 0.3s;
}

/* Welcome Grid */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.welcome-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Artist Showcase */
.artist-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.artist-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    max-height: none;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.artist-image.active {
    opacity: 1;
}

.artist-info {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.artist-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.artist-origin {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    padding: 0.1rem 0 0 0;
    margin-top: 0.2rem;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3.5rem auto 2rem auto;
    padding: 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 1s ease forwards 0.6s;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.nav-item {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1.35rem;
    font-weight: 600;
}

.nav-item:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item.active {
    background: white;
    color: var(--primary-color);
}

/* Content Area */
.content-area {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 2rem auto;
    padding: 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    min-height: 300px;
    box-sizing: border-box;
}

.content-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.content-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.content-section p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Feed Button */
.feed-button {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-speed);
    z-index: 100;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.feed-button:hover {
    transform: scale(1.1);
}

/* Feed View */
.feed-view {
    background: rgba(44, 62, 80, 0.92) !important;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.feed-stack-item {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

.feed-carousel-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4,0.8,0.4,1);
}

.feed-stack-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* --- Feed Info Box --- */
.feed-info-box {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(24, 36, 56, 0.92);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: .6rem 1.1rem .8rem 1.1rem;
    min-width: 630px;
    max-width: 630px;
    width: 630px;
    min-height: 280px;
    max-height: 280px;
    height: 320px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4,0.8,0.4,1);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}
.feed-info-box.visible {
    opacity: 1;
    pointer-events: auto;
}

.feed-info-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.04rem;
    color: #fff;
    text-align: center;
    width: 100%;
    display: block;
}
.feed-info-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    color: #ffe066;
    margin-bottom: 0.10rem;
    gap: 0.35em;
    width: 100%;
    text-align: center;
}
.feed-meta-dot {
    display: inline-block;
    width: 0.38em;
    height: 0.38em;
    background: #ffe066;
    border-radius: 50%;
    margin: 0 0.3em;
}
.feed-info-toggle {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: rgba(44, 62, 80, 0.92);
    border-radius: 2em;
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
    padding: 0.05em 0.2em;
    box-sizing: border-box;
    margin: 0 auto;
    width: max-content;
    margin-bottom: 1.1rem;
}
.feed-info-toggle-btn {
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 0.28rem 0.7rem;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.feed-info-toggle-btn.active {
    background: var(--accent-color);
    color: #222;
}
.feed-info-text {
    text-align: left !important;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
    max-width: 95%;
    font-weight: 600;
    margin-bottom: 2.2rem;
}
.artist-info-text {
    font-size: 1.35rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    max-width: 95%;
    font-weight: 600;
    margin-bottom: 2.2rem;
}
@media (max-width: 900px) {
    .feed-info-box {
        max-width: 96vw;
        min-width: 0;
        right: 1vw;
        left: 1vw;
        bottom: 1vw;
        padding: 0.5rem 0.5rem 0.5rem 0.5rem;
        width: 96vw;
        min-height: 120px;
        max-height: 90vw;
        height: auto;
    }
    .feed-info-toggle {
        bottom: 0.3rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist-image-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .artist-name {
        font-size: 1.5rem;
    }

    .artist-origin {
        font-size: 1rem;
    }

    .nav-bar {
        flex-direction: column;
        padding: 0.5rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .nav-bar, .content-area {
        max-width: 100%;
        width: 100%;
    }

    .artist-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .side-bar {
        width: 100vw;
        height: 70px;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .bar-buttons {
        flex-direction: row;
        width: 100%;
        margin: 0;
    }

    .bar-button {
        padding: 0.7rem 0;
        font-size: 1.1rem;
    }
}

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

/* Utility Classes */
.hidden {
    display: none;
}

/* Typography */
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Artist grid adjustments */
.artist-grid-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 2rem;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1.2rem;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.artist-button {
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    color: white !important;
    border: 2px solid white;
    border-radius: 8px;
    padding: 1.2rem 2.5rem;
    height: 64px;
    cursor: pointer;
    transition: all var(--transition-speed);
    margin: 0.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.04);
}

/* Remove image styling from artist buttons */
.artist-button img, .artist-button span {
    display: none !important;
}

/* Active artist image on the right */
.active-artist-image {
    position: sticky;
    top: 2rem;
    right: 0;
    width: 250px;
    height: 320px;
    margin-left: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}
.active-artist-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.active-artist-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-top: 1rem;
    text-align: center;
}

.artist-detail-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100vw;
    background: rgba(44, 62, 80, 0.92) !important;
    color: #fff;
}

.section.artist-detail-section {
    background: rgba(44, 62, 80, 0.92) !important;
}

.artist-detail-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto;
}

.artist-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 3.5rem;
    min-height: 100vh;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: none;
    border-radius: 0;
    box-sizing: border-box;
}

.artist-detail-image-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-width: 320px;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.10);
    overflow: visible;
    margin-left: 0.7rem;
    margin-top: 0.7rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 0.8s ease forwards 0.2s;
}

.artist-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.artist-detail-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.artist-detail-name {
    font-size: 4.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.1;
    width: 100%;
    display: block;
    height: auto;
    justify-self: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 0.8s ease forwards 0.4s;
}

.artist-detail-origin {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 0.7rem;
}

.artist-detail-bio-meta-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    align-items: stretch;
    justify-content: flex-start;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 0.8s ease forwards 0.6s;
    margin-top: 0;
}

.artist-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0.8rem;
    background-color: rgba(24, 36, 56, 0.92);
    border-radius: 8px;
}

.artist-detail-location {
    font-size: 1.1rem;
    color: #fff;
}

.artist-detail-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: auto;
}

.artist-detail-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.2rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.artist-detail-links a:hover {
    background: var(--accent-color);
    color: #222;
    transform: scale(1.1);
}

.artist-detail-links i {
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-detail-bio {
    flex: 1 1 auto;
    width: 100%;
    max-height: 680px;
    overflow-y: auto;
    align-self: flex-start;
    background-color: rgba(24, 36, 56, 0.92);
    border-radius: 8px;
    padding: 1.2rem;
    color: #fff;
}

.artist-detail-bio-text {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #fff;
}

.artist-detail-bio h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.artist-detail-pronouns span, .artist-detail-age span {
    color: #1a2233;
    font-weight: 700;
}

/* Background styles */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1000;
    overflow: hidden;
    background: #222 !important; /* fallback for debugging */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: blur(18px) brightness(0.85);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    opacity: 1 !important;
    z-index: -1000 !important;
    pointer-events: none !important;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.35;
    z-index: -900;
    pointer-events: none;
}

.bottom-bar {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 260px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.10);
    z-index: 1100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.25;
    transform: scale(0.96);
    transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.bottom-bar:hover,
.bottom-bar:focus-within {
    opacity: 1;
    transform: scale(1);
}

.bar-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.bar-button {
    flex: 1 1 0;
    background: none;
    border: none;
    color: #666;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 0.2rem 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border-radius: 0;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
}

.bar-button:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.bar-button i {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border-radius: 50%;
    padding: 6px;
}

.bar-button.active i {
    color: var(--primary-color);
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(44,62,80,0.18);
    transform: scale(1.35);
}

.bar-button span {
    display: none;
}

@media (max-width: 600px) {
    .bottom-bar {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 60px;
        border-radius: 0;
        box-shadow: 0 -2px 16px rgba(44,62,80,0.10);
        padding: 0;
    }
    .bar-button {
        font-size: 1.1rem;
        padding: 0.7rem 0;
    }
    .bar-button i {
        font-size: 1.7rem;
    }
}

@media (max-width: 1200px) {
    .artist-detail-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    .artist-detail-bio-meta-wrap {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 100vw;
    }
    .artist-detail-image-container {
        max-width: 340px;
        min-width: 0;
        height: 420px;
    }
}

@media (max-width: 900px) {
    .artist-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.2rem 0 1.2rem 0;
        min-height: 100vh;
    }
    .artist-detail-image-container {
        max-width: 90vw;
        min-width: 0;
        height: 320px;
    }
    .artist-detail-right {
        align-items: center;
        text-align: center;
    }
    .artist-detail-bio-meta-wrap {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 100vw;
    }
}

.artist-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
}
.artist-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #222;
    font-size: 1.2rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.artist-link-btn:hover {
    background: var(--accent-color);
    color: #222;
}
.artist-link-btn i {
    font-size: 1.2rem;
}
.icon-instagram {
    font-weight: bold;
    color: #E1306C;
    font-size: 1.2rem;
}
.icon-youtube {
    font-weight: bold;
    color: #FF0000;
    font-size: 1.2rem;
}
.icon-x {
    font-weight: bold;
    color: #222;
    font-size: 1.2rem;
}
.icon-nfb {
    font-weight: bold;
    color: #0a0;
    font-size: 1.2rem;
}
.icon-inuit {
    font-weight: bold;
    color: #00bfff;
    font-size: 1.2rem;
}
.artist-works-list {
    margin-top: 2.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}
.artist-work {
    background: rgba(255,255,255,0.13);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 1px 4px rgba(44,62,80,0.06);
    color: #fff;
    font-size: 1.08rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.artist-work .work-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}
.artist-work .work-medium {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 0.2rem;
}
.artist-work .work-description {
    margin-bottom: 0.2rem;
}
.artist-work .work-impact {
    color: #ffe066;
    font-size: 1.01rem;
    margin-bottom: 0.2rem;
}
.artist-work .work-link a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.01rem;
}

.artist-selector-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(44, 62, 80, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.artist-selector-btn:hover {
    background: rgba(44, 62, 80, 1);
    transform: scale(1.05);
}

.artist-selector-btn i {
    color: white;
    font-size: 1.2rem;
}

.artist-selector-dropdown {
    position: absolute;
    top: 4rem;
    left: 1rem;
    background: rgba(44, 62, 80, 0.95);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.artist-selector-dropdown.show {
    display: block;
}

.artist-selector-item {
    padding: 0.8rem 1rem;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.artist-selector-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.artist-detail-meta i.fa, .artist-detail-meta i.fab, .artist-detail-meta i.fas {
    font-size: 1.5rem;
    color: #fff;
    vertical-align: middle;
    margin-left: 0.5rem;
    margin-right: 0.1rem;
    padding-bottom: 0.5rem; 

}

.artist-detail-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.artist-detail-meta {
    display: flex;
    align-items: center;
}

/* Feed Carousel True Vertical Layout */
.feed-carousel-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    will-change: transform;
    transition: transform 0.18s cubic-bezier(0.4,0.8,0.4,1);
    touch-action: pan-y;
}

.feed-stack-item {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

#feed-media-wrapper {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.feed-media {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.feed-container::-webkit-scrollbar { display: none; }
.feed-container { -ms-overflow-style: none; scrollbar-width: none; }

.feed-media-arrow {
    position: absolute;
    bottom: 1.2rem;
    top: unset;
    transform: none;
    font-size: 2.7rem;
    background: rgba(24, 36, 56, 0.92);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    font-weight: 900;
    font-family: 'Segoe UI Symbol', 'Arial', 'sans-serif';
    letter-spacing: -0.1em;
    z-index: 2;
}
.feed-media-arrow:disabled,
.feed-media-arrow[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.feed-media-arrow:hover:not(:disabled) {
    background: rgba(44, 62, 80, 0.95);
    color: #ffe066;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.feed-media-arrow-left {
    left: 1.2rem;
}
.feed-media-arrow-right {
    right: 1.2rem;
}

.feed-info-eye-toggle-outer {
    position: fixed;
    bottom: 2.7rem;
    left: unset;
    right: 2.2rem;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 2.3rem;
}
.feed-info-eye-toggle {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: rgba(44,62,80,0.92);
    color: #ffe066;
    border: none;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    z-index: 201;
    margin-left: 0.7rem;
}
.feed-info-eye-toggle:hover {
    background: #ffe066;
    color: #222;
}

.feed-info-box-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.artist-works-bar {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    margin: 0.7rem 0 1.2rem 0;
    justify-content: center;
    align-items: center;
}
.artist-work-btn {
    background: rgba(44,62,80,0.92);
    color: #ffe066;
    border: none;
    border-radius: 1.2rem;
    padding: 0.45rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    outline: none;
}
.artist-work-btn.selected, .artist-work-btn:active {
    background: #ffe066;
    color: #222;
    box-shadow: 0 4px 18px rgba(44,62,80,0.18);
}
.artist-work-btn:hover:not(.selected) {
    background: #fff3cd;
    color: #222;
}
.artist-work-viewer {
    width: 100vw;
    min-height: 590px;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    background: rgba(24,36,56,0.92);
    border-radius: 1.6rem;
    box-shadow: 0 2px 18px rgba(0,0,0,0.13);
    padding: 3.5rem 3vw 3.5rem 3vw;
    position: relative;
    max-width: none;
}
.artist-work-info-col {
    flex: 1 1 0;
    max-width: 48%;
    padding-right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
}
.artist-work-info-col .feed-info-text {
    text-align: center !important;
    font-size: .55rem;
    line-height: 1.5;
    color: #fff;
    max-width: 95%;
    font-weight: 600;
    margin-bottom: 2.2rem;
}
.artist-work-info-col .feed-info-toggle {
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
}
.artist-work-media-col {
    flex: 1 1 0;
    max-width: 52%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 100%;
}
.artist-work-media-col img,
.artist-work-media-col video {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: 1.1rem;
    background: #222;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.feed-media-arrow {
    position: absolute;
    bottom: 1.2rem;
    top: unset;
    transform: none;
    font-size: 2.7rem;
    background: rgba(24, 36, 56, 0.92);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    font-weight: 900;
    font-family: 'Segoe UI Symbol', 'Arial', 'sans-serif';
    letter-spacing: -0.1em;
    z-index: 2;
}
.feed-media-arrow-left {
    left: 1.2rem;
}
.feed-media-arrow-right {
    right: 1.2rem;
}

.artist-work-info-col .feed-info-toggle {
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
}
.artist-work-info-col .feed-info-toggle-btn {
    font-size: 1.25rem;
    padding: 0.7rem 2.2rem;
    border-radius: 2.2rem;
    font-weight: 800;
    min-width: 120px;
    min-height: 2.7rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
@media (max-width: 1200px) {
    .artist-works-section {
        width: 100vw;
        max-width: none;
        padding: 1.2rem 0 1.2rem 0;
    }
    .artist-work-viewer {
        flex-direction: column;
        min-height: 320px;
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: none;
        width: 100vw;
    }
    .artist-work-info-col, .artist-work-media-col {
        max-width: 100%;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    .artist-work-media-col img,
    .artist-work-media-col video {
        max-width: 98vw;
        max-height: 260px;
    }
    .feed-media-arrow-left {
        left: 0.3rem;
    }
    .feed-media-arrow-right {
        right: 0.3rem;
    }
}

#back-to-main {
    display: block;
    margin: 2.5rem auto 0 auto;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(90deg, #ffe066 0%, #ffd700 100%);
    color: #222;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    border-radius: 2.2rem;
    box-shadow: 0 2px 12px rgba(44,62,80,0.13);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
    outline: none;
    z-index: 10;
}
#back-to-main:hover, #back-to-main:focus {
    background: linear-gradient(90deg, #ffd700 0%, #ffe066 100%);
    color: #111;
    box-shadow: 0 4px 18px rgba(44,62,80,0.18);
    transform: translateY(-2px) scale(1.04);
}
.artist-work-info-col .feed-info-toggle {
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: flex-start;
}

.artist-work-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    line-height: 1.1;
}

.feed-view .feed-media-arrow {
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
}

.feed-meta-artist-link {
    color: #ffe066;
    font-weight: 700;
    text-decoration: none;
    transition: text-decoration 0.2s, color 0.2s;
}
.feed-meta-artist-link:hover, .feed-meta-artist-link:focus {
    text-decoration: underline;
    color: #fff3cd;
} 