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

:root {
    --bg: #0c0c0d;
    --bg-elevated: #161618;
    --surface: #1c1c1f;
    --text-dark: #f4f4f5;
    --text-gray: #a1a1aa;
    --text-subtle: #71717a;
    --border: #2e2e32;
    --pink: #f8a5c2;
    --purple: #c4b5fd;
    --white: #ffffff;
}

html {
    color-scheme: dark;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;

    img {
        width: 64px;
    }
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin: 0;
}

.logo-img {
    width: 580px;
    max-width: 80vw;
    height: auto;
    display: inline-block;
}

/* Main Content */
.main-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

/* Gallery Slider */
.gallery-section {
    width: 100%;
    margin: 1.5rem 0 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gallery-viewport {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 3.5rem;
    padding: 0.5rem 3.5rem;
    cursor: grab;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.gallery-slider:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: -2px;
}

.gallery-track {
    display: flex;
    align-items: stretch;
    gap: 2px;
    width: max-content;
}

.gallery-image {
    height: clamp(280px, 62vh, 680px);
    max-height: calc(100dvh - 220px);
    width: auto;
    max-width: none;
    display: block;
    flex-shrink: 0;
    border-radius: 0;
    background: var(--bg-elevated);
    object-fit: contain;
    object-position: center;
    scroll-snap-align: start;
    box-shadow: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.gallery-nav svg {
    width: 22px;
    height: 22px;
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1.06);
    border-color: var(--purple);
    color: var(--purple);
    background: var(--bg-elevated);
}

.gallery-nav:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

.gallery-nav:disabled {
    opacity: 0.35;
    cursor: default;
    transform: translateY(-50%);
}

.gallery-nav-prev {
    left: 0.75rem;
}

.gallery-nav-next {
    right: 0.75rem;
}

/* Name Section */
.name-section {
    text-align: center;
    margin: 1.5rem 0 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Description Section */
.description-section {
    text-align: center;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Follower Section */
.follower-section {
    text-align: center;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.follower-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.follower-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
}

.follower-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Social Section */
.social-section {
    margin: 2.5rem 0 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--purple);
    background: var(--bg-elevated);
}

.social-link.instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
}

.social-link.website:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.social-link.email:hover {
    color: #D44638;
    border-color: #D44638;
}

.social-link.tiktok:hover {
    color: var(--white);
    border-color: var(--white);
    background: var(--bg);
}

.social-link.shop:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.social-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.logo-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

/* Legal pages */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin: 0 0 1.75rem;
}

.legal-content h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 0.7rem;
    scroll-margin-top: 1.5rem;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.6rem;
}

.legal-content p,
.legal-content address {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: normal;
    margin: 0 0 0.85rem;
}

.legal-content ul {
    margin: 0 0 1rem 1.15rem;
    padding: 0;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.4rem;
}

.legal-content ul.index {
    list-style: none;
    margin-left: 0;
}

.legal-content ul.index li {
    margin: 0 0 0.25rem;
}

.legal-content a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--purple);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: auto;
    /* border-top: 1px solid #e2e8f0; */
    animation: fadeInUp 1s ease-out 1s both;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--purple);
}

.footer-copy {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-subtle);
    font-size: 0.85rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-section {
        padding: 2rem 1rem 0.5rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .main-content {
        padding: 0 1rem 1.5rem;
    }

    .gallery-slider {
        padding: 0.5rem 2.75rem;
        scroll-padding-inline: 2.75rem;
    }

    .gallery-image {
        height: clamp(220px, 40vh, 360px);
        max-height: calc(100dvh - 200px);
    }

    .gallery-nav {
        width: 38px;
        height: 38px;
    }

    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }

    .gallery-nav-prev {
        left: 0.4rem;
    }

    .gallery-nav-next {
        right: 0.4rem;
    }

    .name {
        font-size: 1rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .social-container {
        gap: 1.25rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.6rem;
    }

    .gallery-slider {
        padding: 0.35rem 2.4rem;
        scroll-padding-inline: 2.4rem;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .gallery-image {
        height: clamp(200px, 36vh, 300px);
        max-height: calc(100dvh - 180px);
    }

    .name {
        font-size: 1rem;
    }

    .social-container {
        gap: 1rem;
    }

    .social-link {
        width: 46px;
        height: 46px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
