@media (max-width: 600px) {
    body > *:not(#mobile-message) {
        display: none !important;
    }
    #mobile-message {
        display: flex !important;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100vw;
        color: white;
        background: #151515;
        font-size: 28px;
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }
}

body,html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #151515;
}

body {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

#preloader.preloader-hide {
    transform: translateY(100%);
}

.preloader-content {
    text-align: center;
}

#preloader-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: white;
    margin: 0;
    letter-spacing: 0.05em;
}

html{
    scrollbar-color: #2e2e2e #181818;
    scrollbar-width: thin;
}

body::-webkit-scrollbar {
    width: 12px;
    background: #181818;
}
body::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 0;
}
body::-webkit-scrollbar-track {
    background: #181818;
    border-radius: 0;
}

.hero{
    width: 100%;
    height: 100vh;
    background-image: url(Media/images/1_PostProcessing__FullHD.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.darkMask{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.hero > *:not(.darkMask):not(.background) {
    position: relative;
    z-index: 2;
}

svg{
    color: white;
    fill: currentColor;
    size: 64px;
}

h1, h2 {
    color: white;
}

header{
    padding-top: 48px;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}

header > * {
    pointer-events: auto;
}

.languageButton,
.menu {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    z-index: 10000;
}

.languageButton {
    top: 48px;
    left: 64px;
    right: auto;
    position: fixed;
    z-index: 10000;
}

.language-panel {
    position: absolute;
    top: 56px;
    left: 0;
    min-width: 260px;
    background: rgba(32,31,31,0.97);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.28), 0 1.5px 8px 0 rgba(0,0,0,0.18);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.65,0,0.35,1), transform 0.3s cubic-bezier(0.65,0,0.35,1);
}

.language-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.lang-option {
    background: none;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    padding: 8px 24px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    outline: none;
    transition: box-shadow 0.2s;
    display: flex;
    align-items: center;
}

.lang-option:hover {
    cursor: pointer;
}

.lang-option.selected {
    box-shadow: 0 0 0 2px #FF893A;
    color: #FF893A;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    vertical-align: middle;
}

.menu {
    top: 48px;
    right: 64px;
    left: auto;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: rgba(21, 21, 21, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    overflow-y: auto;
    box-shadow: -4px 0 32px rgba(0,0,0,0.18);
}

.menu-panel.menu-open {
    transform: translateX(0);
}

.menu-content {
    padding: 120px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.menu-sections h2,
.menu-social h2 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 24px 0;
}

.menu-sections ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-sections ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.menu-sections ul li a:hover {
    color: #FF893A;
    transform: translateX(8px);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.social-links a {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.social-links a img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
    background: none;
    filter: none;
}

.social-links a:hover img {
    filter: none;
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 40;
    font-size: 32px;
    color: white;
    position: absolute;
    transition: opacity 0.3s ease;
    user-select: none;
}

.languageButton .material-symbols-outlined,
.menu .material-symbols-outlined {
    position: absolute;
    cursor: pointer;
}

.material-symbols-outlined.fade-out {
    opacity: 0;
}

.material-symbols-outlined.fade-in {
    opacity: 1;
}

header h1 {
    pointer-events: none;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 400px;
    position: static;
}

.logo h1, h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.logo h1{
    display: block;
    font-size: 128px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    z-index: 5;
    line-height: 1;
}

.logo h2{
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1vw;
    margin-top: 40px;
}

header h1{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 32px;
    font-weight: 200;
    text-align: center;
    text-transform: uppercase;
    line-height: 0;
}

.software {
    padding: 64px;
    color:white;
    text-align: center;
    font-size: 32px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.cardsHolder{
    display: flex;
    flex-direction: row;
    gap: 28px;
    padding-left: 64px;
    padding-right: 64px;
    width: 100%;
    box-sizing: border-box;
}

.cardsHolder img{
    width: 42px;
    height: auto;
}

.cardsHolder h2{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 36px;
    font-weight: 300;
}

.textBox{
    width: 368px;
    height: 61px;
    backdrop-filter: blur(10px) brightness(1.25);
    -webkit-backdrop-filter: blur(10px) brightness(1.25);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.textBox h1{
    font-size: 32px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
}

.appName{
    display: flex;
    flex-direction: row;
    padding-top: 8px;
}

.appName h2{
    padding-left: 16px;
    text-transform: none;
}

.card{
    min-width: 400px;
    min-height: 600px;
    width: 400px;
    height: 600px;
    background-color: white;
    border-radius: 25px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modeling{
    background-image: url(Media/images/MaskGroup1.png);
}

#texturing{
    background-image: url(Media/images/MaskGroup2.png);
}

#engines{
    background-image: url(Media/images/MaskGroup3.png);
}

#editing{
    background-image: url(Media/images/MaskGroup4.png);
}

.comingSoon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
}

.comingSoon img {
    max-width: 812px;
    height: 156px;
}

.comingSoon p{
    text-align: left;
    margin-left: 32px;
    font-size: 32px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
}

.aboutMe{
    width: 100%;
    height: 1030px;
    margin-top: 64px;
    color: white;
}

.information{
    height: 705px;
}

.language img{
    width: 42px;
    height: auto;
}

.title__text h1, h2{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0;
    text-align: left;
}

.title__text h1{
    font-size: 48px;
}

.title__text h2{
    font-size: 32px;
    color: #8B8B8B;
}

.title_button{
    margin-right: 64px;
}

.title_button button{
    background-color: transparent;
    border: solid 2px white;
    border-radius: 25px;
    width: 280px;
    height: 72px;
    font-family: "Inter", sans-serif;
    color: white;
    font-size: 32px;
    font-weight: 400;
    transition: 0.2s ease-in-out;
}

.title_button button:hover{
    background-color: white;
    color: black;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.information__photo img{
    width: 386px;
    height: 514px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.20);
}

.information__photo{
    width: 450px;
    height: 600px;
    background-color: #201F1F;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
}

.languages__box{
    width: 600px;
    height: 300px;
    background-color: #201F1F;
    border-radius: 25px;
    display: flex;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    justify-content: center;
    align-self: center;
    margin-left: 64px;
}

.language{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 550px;
    padding-left: 24px;
}

.language h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 24px;
}

#german{
    display: flex;
    flex-direction: row;
    align-items: start;
}

.german-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 0;
}

.german-text h1{
    margin: 0;
    padding-left: 24px;
}

.german-text p{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #8B8B8B;
    margin: 0;
    padding-left: 24px;
}

.information{
    width: 1800px;
    height: 705px;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-left: 64px;
}

.informationLeft{
    width: 450px;
    height: 680px;
}

.informationLeft h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.informationRight{
    width: 1280px;
    height: 705px;
}

.languages{
    width: 1800px;
    height: 300px;
    display: flex;
    margin-top: 64px;
}

.information__text{
    width: 1280px;
    height: 575px;
    background-color: #201F1F;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 52px;
    margin-left: 64px;
}

.information__text p{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-left: 64px;
    margin-top: 8px;
    width: 1182px;
}

.languages__text p{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    width: 1080px;
    height: auto;
    margin-left: 64px;
}

.information__title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 64px;
}

.contact img{
    width: 42px;
    height: 42px;
    margin-right: 16px;
}

.contact{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
}

.contactLeft{
    width: 800px;
    height: 952px;
    margin-left: 64px;
}

.contactLeft h2{
    text-align: center;
    margin-top: 32px;
    text-transform: none;
    font-weight: 300;
}

.contactLeft h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.contactRight{
    width: 928px;
    height: 970px;
    margin-left: 64px;
    background-color: #201F1F;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
}

.googleMaps{
    width: 800px;
    height: 250px;
}

.googleMaps iframe{
    border-radius: 25px;
}

.abD{
    background-color: #201F1F;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    height: 262px;
    margin-top: 16px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gmail, .phone{
    font-size: 24px;
}

.gmail{
    margin-left: 32px;
}

.phone{
    margin-right: 32px;
}

.gmail a, .phone a{
    color: white;
    text-decoration: none;
    line-height: 1.4;
}

.adressBlock{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 736px;
}

.adressBlock p{
    margin: 0;
}

#viaText{
    width: 736px;
    font-size: 24px;
    text-align: center;
    font-style: italic;
    color: #8B8B8B;
    line-height: 1.2;
    margin-top: 32px;
}

.socialMedia{
    background-color: #201F1F;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    height: 246px;
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socialMedia a{
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    transition: 0.2s ease-in-out;
}

.socialMedia a:hover{
    color: #FF893A;
    transition: 0.2s ease-in-out;
}

.messangers, .business{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.messangersCard, .businessCard{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.businessCard{
    margin-left: 32px;
}

#imgSpace{
    margin-top: 16px;
    margin-bottom: 16px;
}

.contactInformation{
    margin-top: 32px;
}

.contactForm{
    display: flex;
    flex-direction: column;
    height: 952px;
}

.formPage{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.formPage input{
    width: 390px;
    height: 50px;
    border-radius: 25px;
    border: none;
    color: white;
    background-color: #272626;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.45);
    text-align: left;
    padding-left: 25px;
    font-family: 'montserrat', sans-serif;
    font-size: 24px;
}

.formPage input::placeholder {
    color: #8B8B8B;
    opacity: 1;
}

.formPage p{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 6px;
    margin-left: 25px;
}

.firstRow, .secondRow {
    display: flex;
}

.thirdRow, .fourthRow {
    display: flex;
    flex-direction: column;
}

.thirdRow textarea{
    width: 832px;
    height: 189px;
    border-radius: 25px;
    background-color: #272626;
    border: none;
    resize: none;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.45);
    font-family: 'montserrat', sans-serif;
    font-size: 24px;
    color: white;
    padding-top: 25px;
    padding-left: 25px;
}

.thirdRow textarea::placeholder {
    color: #8B8B8B;
    opacity: 1;
}

.r3b label{
    width: 832px;
    height: 145px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed white;
    border-radius: 25px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.45);
}

#choose{
    color: #FF893A;
}

#allowedFiles{
    font-size: 14px;
    text-align: center;
    color: #8B8B8B;
    transition: .2s ease-in-out;
}

#allowedFiles:hover{
    color: white;
    text-decoration: underline;
    transition: .2s ease-in-out;
}

.fourthRow{
    display: flex;
    align-items: center;
}

.FormTitle{
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.FormTitle h1{
    text-transform: uppercase;
    font-size: 36px;
}

.FormTitle h2{
    text-transform: none;
    font-family: 'montserrat', sans-serif;
    text-align: center;
    font-size: 32px;
}

#rightInput{
    margin-left: 32px;
}

.comingSoon p{
    color: white;
}

#submitButton{
    margin-top: 24px;
}

#submitButton button{
    width: 600px;
}


#Relocation{
    color: #ff802b;
}

/* ============================================
   ARTWORK SECTION STYLES
   ============================================ */

/* Section Container */
.artworkSection {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 64px;
}

.artworkSection h1 {
    font-family: 'inter', sans-serif;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-top: 64px;
    margin-bottom: 64px;
    font-weight: 500;
    text-transform: uppercase;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 411px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
    background: #201F1F;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
}

.gallery-nav {
    position: absolute;
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(255, 137, 58, 0.9);
    transform: scale(1.1);
}

.gallery-nav.left {
    left: 32px;
}

.gallery-nav.right {
    right: 32px;
}

.artworksShowreel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 128px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.artworksShowreel::-webkit-scrollbar {
    display: none;
}

.artwork {
    min-width: 642px;
    height: 360px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    filter: brightness(0.25);
}

.artwork.active {
    filter: brightness(1) !important;
    transform: scale(1.05);
    box-shadow: none;
}

.artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artwork:hover .artwork-overlay {
    transform: translateY(0);
}

.artwork-overlay h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.artwork-detail {
    display: flex;
    gap: 42px;
    width: 1792px;
    height: 953px;
    margin: 0 auto;
    background: #201F1F;
    padding: 42px;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    align-items: center;
}

.detail-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.detail-left-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.detail-left-title h1 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin: 0;
    text-align: center;
}

.detail-images-container {
    width: 1329px;
    height: 813px;
    background: #151515;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
}

.detail-images-container::-webkit-scrollbar {
    width: 16px;
}

.detail-images-container::-webkit-scrollbar-track {
    background: #201F1F;
}

.detail-images-container::-webkit-scrollbar-thumb {
    background: #3D3B3B;
    width: 8px;
    border-radius: 0;
    border: 4px solid #201F1F;
}

.detail-images-container::-webkit-scrollbar-thumb:hover {
    background: #4D4B4B;
}

.detail-images {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
    padding: 32px 25px 32px 32px;
}

.detail-images img {
    max-width: 1180px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 0px 5px 5px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
}

.detail-images video {
    max-width: 1180px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 0px 5px 5px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
}

.artworkSection img,
.artworkSection video {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.artwork .artwork-overlay img,
.artwork img,
.detail-images img,
.detail-images video {
    pointer-events: none;
}

.detail-right {
    width: 357px;
    min-width: 357px;
    max-width: 357px;
    height: 889px;
    background-color: #151515;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 25px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    justify-content: flex-start;
}

.detail-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.artist-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
    margin-top: 32px;
}

.artist-name {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: none;
}

.artist-name h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.artist-name p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    color: #8B8B8B;
}

.view-artstation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #201F1F;
    border: none;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 80%;
    margin: 0 auto;
}

.view-artstation:hover {
    background: #2a2929;
}

.view-artstation svg {
    width: 24px;
    height: 24px;
}

.detail-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: none;
    text-align: left;
}

.detail-description {
    margin-bottom: 32px;
    margin-top: 28px;
    position: relative;
}

.detail-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    line-height: 1.6;
    margin-bottom: 12px;
}

.detail-description.collapsed p:not(.show-more) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-description.collapsed p:nth-child(n+2):not(.show-more) {
    display: none;
}

.detail-description .show-more {
    color: #8B8B8B;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.3s ease;
    margin-top: 8px;
}

.detail-description .show-more:hover {
    color: #ffffff;
}

.detail-software h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 16px;
}

.software-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.software-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    background: #201F1F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.software-tag::before {
    content: '';
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.software-tag.cinema4d::before {
    background-image: url('Media/icons/cinema4d.png');
}

.software-tag.redshift::before {
    background-image: url('Media/icons/Redshift.png');
}

.software-tag.substance::before {
    background-image: url('Media/icons/SubstancePainter.png');
}

.software-tag.photoshop::before {
    background-image: url('Media/icons/Photoshop.png');
}

.software-tag.blender::before {
    background-image: url('Media/icons/Blender.png');
}

.software-tag.marmoset::before {
    background-image: url('Media/icons/Marmoset.png');
}

.software-tag.zbrush::before {
    background-image: url('Media/icons/Zbrush.png');
}

.software-tag.unreal::before {
    background-image: url('Media/icons/UnrealEngine.png');
}

.software-tag.rizomuv::before {
    background-image: url('Media/icons/RizomUV.png');
}

.detail-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.detail-nav h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.nav-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #201F1F;
    border-radius: 25px;
    border: none;
}

.nav-icon svg {
    width: 24px;
    height: 24px;
}

footer {
    width: 100%;
    height: 125px;
    background-color: #201F1F;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
    border-radius: 25px 25px 0 0;
}

footer p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #8B8B8B;
    margin-top: 16px;
}

.orangeLine {
    width: 100%;
    height: 5px;
    background-color: #FF893A;
}

@media (max-width: 600px) {
    section > * {
        display: none !important;
    }
}