/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Variables - NEXT LEVEL CELEBRITY ARTIST */
.light-theme {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-tertiary: #a3a3a3;
    --border-color: #333333;
    --border-hover: #555555;
    --neon-pink: #ff0080;
    --neon-cyan: #00ffff;
    --neon-purple: #8000ff;
    --neon-yellow: #ffff00;
    --accent-gradient: linear-gradient(135deg, #ff0080 0%, #00ffff 25%, #8000ff 50%, #ffff00 75%, #ff0080 100%);
    --holographic: linear-gradient(45deg, #ff0080, #00ffff, #8000ff, #ffff00, #ff0080);
    --shadow: 0 0 20px rgba(255, 0, 128, 0.3), 0 0 40px rgba(0, 255, 255, 0.2);
    --shadow-lg: 0 0 30px rgba(255, 0, 128, 0.5), 0 0 60px rgba(0, 255, 255, 0.3), 0 0 90px rgba(128, 0, 255, 0.2);
    --glow-pink: 0 0 20px #ff0080, 0 0 40px #ff0080, 0 0 60px #ff0080;
    --glow-cyan: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
    --glow-purple: 0 0 20px #8000ff, 0 0 40px #8000ff, 0 0 60px #8000ff;
}

.dark-theme {
    --bg-primary: #0a0a0a;
    --bg-secondary: #171717;
    --bg-tertiary: #262626;
    --text-primary: #fafafa;
    --text-secondary: #d4d4d4;
    --text-tertiary: #a3a3a3;
    --border-color: #404040;
    --border-hover: #525252;
    --accent-gradient: linear-gradient(135deg, #f472b6 0%, #06b6d4 25%, #8b5cf6 50%, #f472b6 100%);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
}

body {
    background: radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
                var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background: radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 60%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
                    var(--bg-primary);
    }
    50% {
        background: radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(128, 0, 255, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 60% 40%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
                    var(--bg-primary);
    }
}

/* Container */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header - FUTURISTIC */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.6));
    border-bottom: 2px solid transparent;
    border-image: var(--holographic) 1;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--holographic);
    background-size: 400% 400%;
    opacity: 0.1;
    animation: holographicShift 3s ease-in-out infinite;
    pointer-events: none;
}

.dark-theme .header {
    background-color: rgba(10, 10, 10, 0.6);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-dot {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background: var(--holographic);
    background-size: 400% 400%;
    animation: holographicShift 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
    box-shadow: var(--glow-pink);
}

.brand-name {
    font-weight: 900;
    letter-spacing: -0.025em;
    background: var(--holographic);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.brand-separator {
    color: var(--text-tertiary);
}

.brand-collective {
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-secondary);
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

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

.nav a:hover {
    opacity: 0.7;
}

/* Hero Section - CELEBRITY LEVEL */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, transparent, rgba(255, 0, 128, 0.05), transparent),
                linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,0,128,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding: 6rem 1rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    background: var(--holographic);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    position: relative;
}

.hero-title::after {
    content: 'Fine Art × Raw Culture';
    position: absolute;
    inset: 0;
    background: var(--holographic);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicShift 3s ease-in-out infinite reverse;
    opacity: 0.3;
    filter: blur(1px);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

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

.hero-description {
    color: var(--text-secondary);
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Background Effects - INSANE LEVEL */
.hero-bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: -10;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    left: 20%;
    top: 10%;
    height: 25rem;
    width: 25rem;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite, colorShift 6s ease-in-out infinite;
}

.glow-2 {
    right: 20%;
    bottom: 20%;
    height: 30rem;
    width: 30rem;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse, colorShift 8s ease-in-out infinite reverse;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite, rotate 20s linear infinite;
    z-index: -5;
}

@keyframes colorShift {
    0%, 100% { opacity: 0.3; }
    25% { opacity: 0.6; filter: blur(40px); }
    50% { opacity: 0.4; filter: blur(80px); }
    75% { opacity: 0.7; filter: blur(20px); }
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Buttons - NEXT LEVEL CELEBRITY */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--holographic);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: holographicShift 3s ease-in-out infinite;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-secondary);
    border-radius: 3rem;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--holographic);
    background-size: 400% 400%;
    color: #000000;
    animation: holographicShift 3s ease-in-out infinite;
    box-shadow: var(--glow-pink);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.dark-theme .btn-primary {
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #171717;
    border: 1px solid #d4d4d4;
}

.dark-theme .btn-primary:hover {
    background: linear-gradient(135deg, #f5f5f5, #d4d4d4);
}

.btn-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgb(0 0 0 / 0.2);
}

.btn-start {
    background: linear-gradient(135deg, #171717, #404040);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid #404040;
}

.btn-start:hover {
    background: linear-gradient(135deg, #000000, #171717);
    transform: translateY(-1px);
}

.dark-theme .btn-start {
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #171717;
    border: 1px solid #d4d4d4;
}

.btn-collective {
    border: 2px solid #525252;
    color: #a3a3a3;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.btn-collective:hover {
    background: linear-gradient(135deg, #2a2a2a, #404040);
    border-color: #737373;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgb(0 0 0 / 0.4);
}

/* Image Cards - CUTTING EDGE CELEBRITY */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--holographic);
    background-size: 400% 400%;
    border-radius: 2rem;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: holographicShift 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.image-card:hover::before {
    opacity: 1;
}

.collective-card {
    border-color: #404040;
    background-color: #1a1a1a;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
}

.collective-card:hover {
    border-color: #525252;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.4);
}

.dark-theme .collective-card {
    border-color: #404040;
    background-color: #171717;
}

.image-placeholder {
    aspect-ratio: 4/3;
    width: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.collective-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.dark-theme .collective-placeholder {
    background: linear-gradient(135deg, #404040 0%, #262626 100%);
}

.placeholder-text {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-align: center;
    padding: 0 1rem;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover .card-image {
    transform: scale(1.1);
}

.card-caption {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.collective-card .card-title {
    color: #ffffff;
}

.card-button {
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid transparent;
    background: var(--holographic);
    background-size: 400% 400%;
    color: #000000;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: holographicShift 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.card-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--glow-cyan);
    filter: brightness(1.2);
}

.collective-card .card-button {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-color: #525252;
    color: #ffffff;
}

.collective-card .card-button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: var(--holographic);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    position: relative;
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: var(--holographic);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicShift 3s ease-in-out infinite reverse;
    opacity: 0.2;
    filter: blur(2px);
    z-index: -1;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-sub {
    color: var(--text-secondary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-card {
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.artistry-card {
    background-color: var(--bg-secondary);
}

.collective-card {
    border-color: var(--border-hover);
    background-color: var(--bg-tertiary);
}

.dark-theme .collective-card {
    border-color: #404040;
    background-color: #0a0a0a;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-secondary);
}

.dark-theme .collective-card h3 {
    color: var(--bg-primary);
}

.dark-theme .collective-card p {
    color: var(--text-tertiary);
}

/* Featured Section - INSANE TABS */
.tab-container {
    position: relative;
}

.tab-nav {
    margin: 0 auto 2rem;
    display: flex;
    width: 100%;
    max-width: 40rem;
    align-items: center;
    border-radius: 3rem;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    background-clip: padding-box;
    padding: 0.5rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.tab-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: var(--holographic);
    background-size: 400% 400%;
    border-radius: 3rem;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: holographicShift 3s ease-in-out infinite;
}

.tab-btn {
    flex: 1;
    border-radius: 2.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.tab-btn:hover {
    color: var(--text-primary);
    transform: scale(1.05);
}

.tab-btn.active {
    background: var(--holographic);
    background-size: 400% 400%;
    color: #000000;
    animation: holographicShift 3s ease-in-out infinite;
    box-shadow: var(--glow-pink);
    transform: scale(1.1);
}

.dark-theme .tab-btn.active {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.collective-wrapper {
    background-color: rgba(10, 10, 10, 0.6);
    border-radius: 1.5rem;
    padding: 0.25rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tab-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Collaborators */
.collaborators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .collaborators-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .collaborators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.collaborator-card {
    border-radius: 1.5rem;
    border: 2px solid #404040;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
}

.collaborator-card:hover {
    transform: translateY(-8px);
    border-color: #737373;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.4);
}

.dark-theme .collaborator-card {
    border-color: #404040;
    background: linear-gradient(135deg, #0a0a0a, #171717);
}

.collaborator-image {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    background: radial-gradient(circle at 30% 20%, #22d3ee 0%, transparent 25%),
                radial-gradient(circle at 80% 0%, #f472b6 0%, transparent 25%),
                radial-gradient(circle at 60% 80%, #a78bfa 0%, transparent 25%);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2);
}

.collaborator-card:hover .collaborator-image {
    transform: scale(1.05);
}

.collaborator-name {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.dark-theme .collaborator-name {
    color: #ffffff;
}

.collaborator-role {
    font-size: 0.75rem;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.collective-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Print Lab */
.print-lab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .print-lab-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .print-lab-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.print-item {
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.print-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.dark-theme .print-item {
    border-color: var(--border-hover);
    background-color: var(--bg-tertiary);
}

.print-image {
    aspect-ratio: 4/3;
    width: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dark-theme .print-image {
    background: linear-gradient(135deg, #404040, #262626);
}

.print-info {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.print-desc {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.print-tip {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Shop Section */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.shop-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.artistry-shop {
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.collective-shop {
    border: 1px solid var(--border-hover);
    background-color: var(--bg-tertiary);
}

.dark-theme .collective-shop {
    border-color: #404040;
    background-color: #0a0a0a;
}

.shop-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.shop-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.dark-theme .collective-shop h3 {
    color: var(--bg-primary);
}

.dark-theme .collective-shop p {
    color: var(--text-tertiary);
}

/* Join Section */
.join-card {
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 2rem;
    text-align: center;
}

.dark-theme .join-card {
    border-color: var(--border-hover);
    background-color: var(--bg-tertiary);
}

.join-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .join-title {
        font-size: 1.875rem;
    }
}

.join-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.join-form {
    margin: 1.25rem auto 0;
    display: flex;
    max-width: 28rem;
    align-items: center;
    gap: 0.5rem;
}

.join-input {
    flex: 1;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    outline: none;
    color: var(--text-primary);
}

.join-input::placeholder {
    color: var(--text-tertiary);
}

.dark-theme .join-input {
    border-color: var(--border-hover);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-brand {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-nav {
        justify-content: flex-end;
    }
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Animations */
.hero-text {
    animation: fadeInUp 0.6s ease-out;
}

.hero-column:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.hero-column:nth-child(2) {
    animation: slideInRight 0.6s ease-out 0.15s both;
}

/* Enhanced Hover Effects */
.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-card:hover::after {
    opacity: 1;
}

.collective-card::after {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
}

.collaborator-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 1.5rem;
}

.collaborator-card:hover::after {
    opacity: 1;
}

.print-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 1.5rem;
}

.print-item:hover::after {
    opacity: 1;
}

/* Button Hover Animations */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
}

/* Tab Animation */
.tab-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tab-content {
    animation: fadeIn 0.4s ease-out;
}

/* Stagger Animation Classes */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Section Entrance Animations */
.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Gradient Animation for Brand Dot */
.brand-dot {
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: var(--accent-gradient);
    }
    50% {
        background: linear-gradient(135deg, #8b5cf6 0%, #f472b6 25%, #06b6d4 50%, #8b5cf6 100%);
    }
}

/* Pulse Animation for Interactive Elements */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Glow Animation for Background */
.glow-1, .glow-2 {
    animation: float 6s ease-in-out infinite;
}

.glow-2 {
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.glow-2 {
    animation-name: floatRight;
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
    }
    
    .tab-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .join-form {
        flex-direction: column;
    }
    
    .join-input {
        margin-bottom: 0.5rem;
    }
}