* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

body {
    font-family: sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 720px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-img,
.icon-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.title-container {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1121px, 56vw);
    aspect-ratio: 1121 / 325;
    z-index: 20;
    pointer-events: none;
}

.price-card-container {
    position: relative;
    width: min(1139px, 53vw);
    aspect-ratio: 1139 / 983;
    z-index: 2;
}

.social-icon {
    position: absolute;
    display: block;
    z-index: 3;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.08);
}

.social-icon.twitter {
    width: 12.9%;
    aspect-ratio: 1 / 1;
    top: 36.5%;
    left: 64%;
}

.social-icon.vgen {
    width: 17%;
    aspect-ratio: 1 / 1;
    top: 39%;
    left: 81%;
}

.social-icon.bluesky {
    width: 15.2%;
    aspect-ratio: 1 / 1;
    top: 52.5%;
    left: 62%;
}

.social-icon.furaffinity {
    width: 16.5%;
    aspect-ratio: 1 / 1;
    top: 58.5%;
    left: 77%;
}

.portfolio-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(680px, 32vw);
    aspect-ratio: 680 / 1005;
    z-index: 2;
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}

.portfolio-container .hero-img {
    object-position: right center;
}

.portfolio-container:hover {
    transform: translateY(-50%) scale(1.06) rotate(1.5deg);
    filter: brightness(1.1) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.email-container {
    position: absolute;
    bottom: 3%;
    left: 47%;
    transform: translateX(-50%);
    width: min(533px, 32vw);
    aspect-ratio: 533 / 76;
    z-index: 20;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.email-container:hover {
    transform: translateX(-50%) scale(1.05);
    filter: brightness(1.1);
}

.email-popup {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 30;
}

.email-popup::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: #1a1a1a transparent transparent transparent;
}

.email-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        padding-top: 140px;
        padding-bottom: 100px;
        gap: 3rem;
    }

    .title-container {
        width: 90vw;
        left: 50%;
        top: 1rem;
    }

    .price-card-container {
        width: 100vw;
    }

    .portfolio-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100vw;
    }

    .portfolio-container:hover {
        transform: scale(1.06) rotate(1.5deg);
    }

    .email-container {
        width: 80vw;
        left: 50%;
        bottom: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

.price-card-main-link,
.price-card-main-link img {
    display: block;
    width: 100%;
    height: 100%;
    cursor: default;
    text-decoration: none;
}

html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html, body, *, *::before, *::after {
    cursor: url('../assets/core/cursor.png'), auto !important;
}

a, button, [role="button"],
.social-icon, .portfolio-container, .email-container,
.artworks-arrow-box, .main-image-box, .thumb-item, .grid-item,
.carousel-arrow, .carousel-dot, .about-arrow-box,
.contact-button, .contact-button *,
.lightbox-close, .lightbox-arrow, .lightbox-thumb-item {
    cursor: url('../assets/core/cursorpointer.png'), pointer !important;
}

.price-card-main-link,
.price-card-main-link * {
    cursor: url('../assets/core/cursor.png'), default !important;
}