/* ===== CSS Variables ===== */
:root {
    --bg-primary: #fffdf7;
    --bg-secondary: #fff9e6;
    --bg-tertiary: #fff3cc;
    --bg-card: #ffffff;

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #7a7a98;

    --accent-primary: #ffd000;
    --accent-secondary: #ffb800;
    --accent-blue: #4a90ff;
    --accent-red: #ff4757;
    --accent-green: #2ed573;
    --accent-purple: #a855f7;

    --gradient-primary: linear-gradient(135deg, #ffd000 0%, #ffb800 100%);
    --gradient-fun: linear-gradient(135deg, #ffd000 0%, #ff6b6b 50%, #4a90ff 100%);

    --border-color: #1a1a2e;
    --border-width: 3px;

    /* Comic-style shadows */
    --shadow-cartoon: 4px 4px 0px #1a1a2e;
    --shadow-cartoon-lg: 6px 6px 0px #1a1a2e;
    --shadow-cartoon-hover: 6px 6px 0px #1a1a2e;
    --shadow-soft: 0 4px 20px rgba(26, 26, 46, 0.1);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.4s ease;
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: var(--border-width) solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-cartoon);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-cartoon-hover);
    color: var(--text-primary);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: var(--shadow-cartoon);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-cartoon-hover);
    color: var(--text-primary);
}

.btn-secondary:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: var(--border-width) solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-shadow: 2px 2px 0px var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-primary);
    border: var(--border-width) solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-cartoon);
}

.hero-title {
    font-size: clamp(52px, 12vw, 90px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.highlight {
    color: var(--text-primary);
    text-shadow: 4px 4px 0px var(--accent-primary),
                 8px 8px 0px var(--accent-blue);
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: var(--bg-card);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-cartoon);
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--text-primary);
    border-bottom: 3px solid var(--text-primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent-primary);
    border: var(--border-width) solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 0px var(--border-color);
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== About Section ===== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-cartoon);
}

.about-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-cartoon-lg);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-primary);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 3px 3px 0px var(--border-color);
}

.about-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* ===== Quote Section ===== */
.quote-section {
    background: var(--accent-primary);
    padding: 80px 0;
    border-top: var(--border-width) solid var(--border-color);
    border-bottom: var(--border-width) solid var(--border-color);
}

.artist-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-cartoon-lg);
}

.artist-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 100px;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
}

.artist-quote p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.artist-quote cite {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-style: normal;
}

/* ===== How to Buy Section ===== */
.how-to-buy {
    background: var(--bg-secondary);
}

.steps-container {
    max-width: 700px;
    margin: 0 auto 48px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 28px;
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-cartoon);
    transition: all var(--transition-bounce);
}

.step:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-cartoon-lg);
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--accent-blue);
    border: var(--border-width) solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 3px 3px 0px var(--border-color);
}

.step:nth-child(2) .step-number {
    background: var(--accent-red);
}

.step:nth-child(3) .step-number {
    background: var(--accent-green);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-list li {
    color: var(--text-secondary);
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border: 2px solid var(--border-color);
    border-radius: 3px;
}

.buy-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.warning-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff0f0;
    border: var(--border-width) solid var(--accent-red);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 4px 4px 0px var(--accent-red);
}

.warning-box h4 {
    color: var(--accent-red);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.warning-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.warning-box li {
    color: var(--text-secondary);
    font-size: 15px;
    padding-left: 28px;
    position: relative;
}

.warning-box li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    color: white;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== Tokenomics Section ===== */
.tokenomics {
    background: var(--bg-primary);
}

.token-info {
    max-width: 800px;
    margin: 0 auto;
}

.contract-card {
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: var(--shadow-cartoon);
}

.contract-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.contract-address code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
    background: var(--bg-tertiary);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: var(--border-width) solid var(--border-color);
    word-break: break-all;
    font-weight: 600;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--accent-primary);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: 3px 3px 0px var(--border-color);
}

.copy-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--border-color);
}

.copy-btn:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.verify-note {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.token-card {
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-cartoon);
    transition: all var(--transition-bounce);
}

.token-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-cartoon-lg);
}

.token-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.token-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.distribution-note {
    text-align: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: var(--border-width) solid var(--border-color);
}

.distribution-note p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Artist Section ===== */
.artist {
    background: var(--bg-secondary);
}

.artist-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.artist-info {
    background: var(--bg-card);
    padding: 36px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-cartoon);
}

.artist-bio {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.artist-links {
    margin-top: 32px;
}

.artist-links .btn svg {
    width: 20px;
    height: 20px;
}

.artist-style {
    background: var(--accent-blue);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-cartoon);
}

.artist-style h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.style-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.style-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
}

.style-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--accent-primary);
    border: 2px solid var(--border-color);
    border-radius: 4px;
}

/* ===== Community Section ===== */
.community {
    background: var(--bg-primary);
}

.community-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.community-card {
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-bounce);
    color: var(--text-primary);
    box-shadow: var(--shadow-cartoon);
}

.community-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-cartoon-lg);
    color: var(--text-primary);
}

.community-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-primary);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-bounce);
    box-shadow: 3px 3px 0px var(--border-color);
}

.community-card:nth-child(2) .community-icon {
    background: var(--accent-red);
}

.community-card:nth-child(3) .community-icon {
    background: var(--accent-green);
}

.community-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.community-card:nth-child(2) .community-icon svg,
.community-card:nth-child(3) .community-icon svg {
    color: white;
}

.community-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.community-card p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    border-top: var(--border-width) solid var(--border-color);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-brand .logo {
    font-size: 32px;
    margin-bottom: 4px;
    color: white;
    text-shadow: 2px 2px 0px var(--accent-primary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .token-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .artist-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    section {
        padding: 80px 0;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-value {
        font-size: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .token-grid {
        grid-template-columns: 1fr 1fr;
    }

    .community-links {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .buy-cta {
        flex-direction: column;
        align-items: center;
    }

    .buy-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .contract-address {
        flex-direction: column;
    }

    .contract-address code {
        font-size: 11px;
        padding: 10px 14px;
    }

    .token-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Side Art Gallery ===== */
.side-art-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.side-art-wrapper {
    position: absolute;
    pointer-events: none;
}

/* The pin */
.side-art-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b 0%, #ee5253 50%, #b33939 100%);
    border-radius: 50%;
    border: 3px solid var(--border-color);
    box-shadow: 2px 2px 0px rgba(26, 26, 46, 0.3);
    z-index: 10;
}

/* Pin highlight */
.side-art-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) translateX(-4px);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: 11;
}

.side-art-wrapper img {
    border-radius: var(--radius-lg);
    border: 4px solid var(--border-color);
    box-shadow: 6px 6px 0px rgba(26, 26, 46, 0.2);
    width: 400px;
    height: auto;
    object-fit: contain;
    background: white;
    padding: 8px;
    margin-top: 14px;
    display: block;
}

/* Position each image - LEFT SIDE */
.side-art-wrapper:nth-child(1) { left: 20px; top: 150px; transform: rotate(-5deg); }
.side-art-wrapper:nth-child(2) { left: 30px; top: 1000px; transform: rotate(4deg); }
.side-art-wrapper:nth-child(3) { left: 15px; top: 1850px; transform: rotate(-3deg); }
.side-art-wrapper:nth-child(4) { left: 25px; top: 2700px; transform: rotate(5deg); }
.side-art-wrapper:nth-child(5) { left: 20px; top: 3550px; transform: rotate(-4deg); }
.side-art-wrapper:nth-child(6) { left: 30px; top: 4400px; transform: rotate(3deg); }
.side-art-wrapper:nth-child(7) { left: 15px; top: 5250px; transform: rotate(-5deg); }
.side-art-wrapper:nth-child(8) { left: 25px; top: 6100px; transform: rotate(4deg); }

/* Position each image - RIGHT SIDE */
.side-art-wrapper:nth-child(9) { right: 20px; left: auto; top: 550px; transform: rotate(5deg); }
.side-art-wrapper:nth-child(10) { right: 30px; left: auto; top: 1400px; transform: rotate(-4deg); }
.side-art-wrapper:nth-child(11) { right: 15px; left: auto; top: 2250px; transform: rotate(3deg); }
.side-art-wrapper:nth-child(12) { right: 25px; left: auto; top: 3100px; transform: rotate(-5deg); }
.side-art-wrapper:nth-child(13) { right: 20px; left: auto; top: 3950px; transform: rotate(4deg); }
.side-art-wrapper:nth-child(14) { right: 30px; left: auto; top: 4800px; transform: rotate(-3deg); }
.side-art-wrapper:nth-child(15) { right: 15px; left: auto; top: 5650px; transform: rotate(5deg); }

/* Different pin colors */
.side-art-wrapper:nth-child(3n+1)::before {
    background: radial-gradient(circle at 30% 30%, #ff6b6b 0%, #ee5253 50%, #b33939 100%);
}
.side-art-wrapper:nth-child(3n+2)::before {
    background: radial-gradient(circle at 30% 30%, #ffd000 0%, #ffb800 50%, #e6a600 100%);
}
.side-art-wrapper:nth-child(3n)::before {
    background: radial-gradient(circle at 30% 30%, #4a90ff 0%, #3b82f6 50%, #2563eb 100%);
}

/* Hide on smaller screens where there's no room */
@media (max-width: 1400px) {
    .side-art-wrapper img {
        width: 320px;
    }
}

@media (max-width: 1200px) {
    .side-art-wrapper img {
        width: 120px;
    }

    /* Reposition for tablets - only show some */
    .side-art-wrapper:nth-child(1) { left: 5px; top: 100px; }
    .side-art-wrapper:nth-child(2) { right: 5px; left: auto; top: 600px; }
    .side-art-wrapper:nth-child(3) { left: 5px; top: 1100px; }
    .side-art-wrapper:nth-child(4) { right: 5px; left: auto; top: 1600px; }
    .side-art-wrapper:nth-child(5) { left: 5px; top: 2100px; }
    .side-art-wrapper:nth-child(6) { right: 5px; left: auto; top: 2600px; }
    .side-art-wrapper:nth-child(7) { left: 5px; top: 3100px; }
    .side-art-wrapper:nth-child(8) { right: 5px; left: auto; top: 3600px; }
    .side-art-wrapper:nth-child(9) { left: 5px; top: 4100px; }
    .side-art-wrapper:nth-child(10) { right: 5px; left: auto; top: 4600px; }
    .side-art-wrapper:nth-child(11),
    .side-art-wrapper:nth-child(12),
    .side-art-wrapper:nth-child(13),
    .side-art-wrapper:nth-child(14),
    .side-art-wrapper:nth-child(15) { display: none; }
}

@media (max-width: 768px) {
    .side-art-wrapper img {
        width: 80px;
    }

    .side-art-wrapper::before {
        width: 18px;
        height: 18px;
        top: -6px;
    }

    .side-art-wrapper::after {
        width: 5px;
        height: 5px;
        top: -2px;
    }

    /* Alternate left and right on mobile */
    .side-art-wrapper:nth-child(1) { left: 3px; top: 80px; }
    .side-art-wrapper:nth-child(2) { right: 3px; left: auto; top: 500px; }
    .side-art-wrapper:nth-child(3) { left: 3px; top: 950px; }
    .side-art-wrapper:nth-child(4) { right: 3px; left: auto; top: 1400px; }
    .side-art-wrapper:nth-child(5) { left: 3px; top: 1850px; }
    .side-art-wrapper:nth-child(6) { right: 3px; left: auto; top: 2300px; }
    .side-art-wrapper:nth-child(7) { left: 3px; top: 2750px; }
    .side-art-wrapper:nth-child(8) { right: 3px; left: auto; top: 3200px; }
    .side-art-wrapper:nth-child(9) { left: 3px; top: 3650px; }
    .side-art-wrapper:nth-child(10) { right: 3px; left: auto; top: 4100px; }
}
