html {
    scroll-behavior: smooth;
}

body {
    font-family: "Ubuntu", sans-serif;
    color: #E9EAEC;
    background: linear-gradient(135deg, #121629 0%, #232946 100%);
    user-select: none;
    margin: 0;
    padding: 0;
}

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 211, 94, 0.2), 0 6px 24px rgba(244, 211, 94, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(244, 211, 94, 0.4), 0 6px 24px rgba(244, 211, 94, 0.2);
    }
}

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

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

/* Hero section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(18, 22, 41, 0.8) 0%, rgba(35, 41, 70, 0.8) 100%);
    padding: 40px 20px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 211, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(184, 193, 236, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    color: #F4D35E;
    letter-spacing: -1px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #F4D35E 0%, #FFE66D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #B8C1EC;
    margin: 10px 0;
    animation: fadeInDown 1s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: #B8C1EC99;
    margin: 15px 0 30px 0;
    animation: fadeInDown 1s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 15px;
    animation: fadeInDown 1s ease-out 0.6s backwards;
}

.cta-button {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #F4D35E 0%, #FFE66D 100%);
    color: #232946;
    border-color: #F4D35E;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 211, 94, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #B8C1EC;
    border-color: #B8C1EC;
}

.cta-button.secondary:hover {
    background: rgba(184, 193, 236, 0.1);
    color: #F4D35E;
    border-color: #F4D35E;
    transform: translateY(-3px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.floating-card {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.hero-pfp {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(244, 211, 94, 0.2);
    border: 3px solid rgba(244, 211, 94, 0.3);
}

header {
    height: 80px;
    background: linear-gradient(135deg, #232946 0%, #2a3255 100%);
    margin-top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1001;
    padding: 0 20px;
    border-bottom: 1px solid rgba(244, 211, 94, 0.1);
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 211, 94, 0.3), transparent);
}

header:hover {
    box-shadow: 0 8px 30px rgba(244, 211, 94, 0.2);
    background: linear-gradient(135deg, #2a3255 0%, #313860 100%);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.sticky {
    /* Sticky header is now handled by CSS position: sticky */
}

.dhenias,
.subheader {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    cursor: pointer;
    position: relative;
}

.dhenias {
    margin: 0;
}

.dhenias a,
.subheader a,
.artsubhead {
    text-align: center;
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
    color: #B8C1EC;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.dhenias a {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F4D35E 0%, #FFE66D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheader a,
.artsubhead {
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
}

.subheader a::after,
.artsubhead::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: linear-gradient(90deg, #F4D35E, #FFE66D);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.subheader a:hover,
.artsubhead:hover {
    color: #F4D35E;
    background: rgba(244, 211, 94, 0.1);
}

.subheader a:hover::after,
.artsubhead:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.body {
    color: #B8C1EC;
    font-size: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.profile {
    margin: 12px 0 8px 0;
    padding: 16px 10px 8px 10px;
    top: 10;
    border-radius: 16px;
    background: #232946;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    font-size: 1.08rem;
    animation: fadeInUp 0.8s ease-out;
}

.profile-wrapper {
    padding: 20px;
}

.pcont {
    display: flex;
    background: #232946;
    margin-top: 10px;
}

.skill-cont {
    flex: 1 1 420px;
    align-self: flex-start;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(184, 193, 236, 0.1) 0%, rgba(244, 211, 94, 0.05) 100%);
    border-radius: 16px;
    padding: 16px 28px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    margin: 18px 24px 18px 0;
    height: auto;
    min-height: 0;
    border: 1px solid rgba(244, 211, 94, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.skills {
    text-align: right;
    border-radius: 16px;
    padding: 7px 12px 7px 0;
    padding-right: 12px;
    color: #232946;
    font-weight: bold;
    width: 0;
    overflow: hidden;
    margin-bottom: 10px;
    transition: width 1s cubic-bezier(0.4,0,0.2,1), background 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
}

.skills:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.15);
}

.skills:last-child {
    margin-bottom: 0;
}

.skills.draw {
    background: linear-gradient(90deg, #F4D35E 0%, #FFE66D 100%);
    transition-duration: 1.1s;
}

.skills.draw:hover {
    box-shadow: 0 6px 20px rgba(244, 211, 94, 0.4);
}

.skills.anim {
    background: linear-gradient(90deg, #B8C1EC 0%, #D4DEFC 100%);
    transition-duration: 1.2s;
}

.skills.anim:hover {
    box-shadow: 0 6px 20px rgba(184, 193, 236, 0.4);
}

.skills.html {
    background: linear-gradient(90deg, #E9EAEC 0%, #F5F6F8 100%);
    color: #232946;
    transition-duration: 1.3s;
}

.skills.html:hover {
    box-shadow: 0 6px 20px rgba(233, 234, 236, 0.6);
}

.skills.css {
    background: linear-gradient(90deg, #B8C1EC 0%, #D4DEFC 100%);
    transition-duration: 1.4s;
}

.skills.css:hover {
    box-shadow: 0 6px 20px rgba(184, 193, 236, 0.4);
}

.skills.active.draw {
    width: 70%;
}

.skills.active.anim {
    width: 82%;
}

.skills.active.html {
    width: 79%;
}

.skills.active.css {
    width: 76%;
}

#bio {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 16px;
    padding: 0;
}

.bio {
    display: flex;
    background: linear-gradient(135deg, #232946 0%, #2a3255 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.15);
    max-width: 100%;
    width: 100%;
    margin: 12px 0 8px 0;
    padding: 0;
    border: 1px solid rgba(244, 211, 94, 0.1);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    backdrop-filter: blur(10px);
}

.bio-content {
    flex: 2;
    margin: 18px 0 18px 18px;
    padding: 18px 24px;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
    color: #B8C1EC;
}

.bio-content b {
    color: #F4D35E;
    font-weight: 600;
}

.flex {
    display: flex;
    align-items: center;
}

.pfp {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    margin: 25px;
    opacity: 0.93;
    transition: border-radius 0.3s, transform 0.3s, opacity 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.2);
    background: #fff;
    border: 3px solid rgba(244, 211, 94, 0.2);
}

.pfp:hover {
    transform: scale(1.1) rotate(-3deg);
    opacity: 1;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(244,211,94,0.25);
    border-color: rgba(244, 211, 94, 0.5);
}

.pfpm {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.pfpm img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.25);
}

#den:target {
    display: flex;
}

.close {
    position: fixed;
    top: 5%;
    right: 4%;
    font-size: 50px;
    color: rgba(240,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    z-index: 10000;
}

.close:hover {
    color: #F4D35E;
}

.disprofile {
    margin-left: 24px;
    margin-bottom: 20px;
    animation: slideInRight 0.8s ease-out;
}

.name {
    display: flex;
    color: #F4D35E;
    margin-bottom: 2px;
    padding-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
    transition: font-size 0.2s, color 0.2s;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #F4D35E 0%, #FFE66D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency {
    color: #B8C1EC;
    margin-top: 0;
    padding-top: 0;
    font-size: 1.1rem;
    font-weight: 500;
    transition: font-size 0.2s, color 0.2s;
}

.name:hover,
.agency:hover {
    color: #F4D35E;
}

.name:hover {
    font-size: 2.4rem;
}

.agency:hover {
    font-size: 1.2rem;
}

.mobile-menu {
    display: none;
}

.footer {
    background: linear-gradient(135deg, #232946 0%, #2a3255 100%);
    color: #B8C1EC;
    text-align: center;
    padding: 40px 12px 24px 12px;
    margin-top: 60px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 -4px 16px 0 rgba(0,0,0,0.15);
    font-size: 1rem;
    border-top: 1px solid rgba(244, 211, 94, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.footer-content li {
    margin: 4px 0;
}

.footer-content a {
    color: #F4D35E;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-content a:hover {
    color: #FFE66D;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(244, 211, 94, 0.3);
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 18px;
    padding: 8px 0 24px 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: stretch;
}

.artwork-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    background: #232946;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: block;
    aspect-ratio: unset;
    min-height: 120px;
}

.artwork-grid img:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 6px 24px 0 rgba(244,211,94,0.18);
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.column {
    flex: 1 0 25%;
    max-width: 25%;
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.column img {
    margin-top: 8px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    background: linear-gradient(135deg, #232946 0%, #2a3255 100%);
    transition: transform 0.3s, box-shadow 0.3s, border-radius 0.3s;
    cursor: pointer;
    display: block;
    border: 1px solid rgba(244, 211, 94, 0.1);
}

.column img:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 12px 32px rgba(244, 211, 94, 0.25);
    border-radius: 8px;
    border-color: rgba(244, 211, 94, 0.3);
}

@media screen and (max-width: 800px) {
    .column {
        flex: 1 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .column {
        flex: 1 0 100%;
        max-width: 100%;
    }
}

.artwork-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 22, 41, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
    backdrop-filter: blur(10px);
}

.artwork-modal.show {
    display: flex;
}

.artwork-modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 8px 48px 0 rgba(244, 211, 94, 0.3);
    background: linear-gradient(135deg, #232946 0%, #2a3255 100%);
    animation: fadeInUp 0.4s ease-out;
}

#profile,
#digital,
#traditional {
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #F4D35E;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #F4D35E 0%, #FFE66D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #B8C1EC99;
    margin: 0;
    font-weight: 400;
}

.artworks {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 45px;
    padding: 0;
}

.artworks-dropdown-toggle {
    background: none;
    border: none;
    color: #B8C1EC;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s;
}

.artworks-dropdown-toggle:hover {
    color: #F4D35E;
}

.artworks-dropdown-content {
    display: none;
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    background: #232946f2;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.18);
    border-radius: 12px;
    margin-top: 8px;
    z-index: 1003;
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(.4,1.4,.6,1), transform 0.22s cubic-bezier(.4,1.4,.6,1);
}

.artworks-dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.22s cubic-bezier(.4,1.4,.6,1), transform 0.22s cubic-bezier(.4,1.4,.6,1);
}

.artworks-dropdown-content.animating-out {
    opacity: 0;
    transform: translateX(-50%) translateY(-16px);
    transition: opacity 0.18s cubic-bezier(.4,0,.6,1), transform 0.18s cubic-bezier(.4,0,.6,1);
    pointer-events: none;
}

.artworks-dropdown-content a {
    color: #B8C1EC;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    border-radius: 12px;
    transition: background 0.3s, color 0.2s;
    font-size: 0.97rem; /* sebelumnya 1.1rem */
    font-weight: 400;   /* sebelumnya default/bold, sekarang normal */
}

.artworks-dropdown-content a:hover {
    border-radius: 12px;
    background: #121629;
    color: #F4D35E;
}

.artworks-dropdown-content.show {
    display: block;
}

/* Hide desktop dropdown on mobile */
@media screen and (max-width: 1000px) {
    .artworks-dropdown-content {
        display: none !important;
    }
    
    .hero-section {
        padding: 30px 20px;
        min-height: 350px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-pfp {
        width: 200px;
        height: 200px;
        margin: 20px auto;
    }
}

/* Hide mobile dropdown on desktop */
@media screen and (min-width: 1001px) {
    .mobile-menu {
        display: none !important;
    }
}

@media screen and (max-width: 1000px) {
    .body {
        padding: 0 4px;
    }
    .disprofile {
        margin-left: 10px;
    }
    .disprofile .name {
        font-size: 28px !important;
        padding: 16px 10px 8px 10px !important;
    }
    .disprofile .agency {
        font-size: 17px !important;
        padding: 0 10px 16px 10px !important;
    }
    .subheader {
        display: none;
    }
    #bio {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .bio {
        flex-direction: column;
        border-radius: 12px !important;
        max-width: 100%;
        width: 100%;
        margin: 18px 0 10px 0;
        box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    }
    .bio-content {
        margin: 14px 0 0 0;
        padding: 14px 10px;
        font-size: 1rem;
    }
    .profile {
        font-size: 1rem;
        padding: 10px 2px 6px 2px;
    }
    .pfp {
        width: 110px;
        height: 110px;
        margin: 12px;
    }
    .bio div,
    .bio p {
        margin: 10px;
    }
    .skill-cont {
        margin: 10px auto 18px auto;
        max-width: 95vw;
        width: 100%;
        align-self: center;
        padding: 12px 16px;
        box-sizing: border-box;
        height: auto;
        min-height: 0;
    }
    .skills {
        padding: 5px 10px;
        width: 0;
        bottom: 0;
    }
    .mobile-menu {
        display: block;
        position: absolute;
        right: 0;
        bottom: 3px;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1002;
    }
    #menu-toggle {
        background: none;
        color: #B8C1EC;
        border: none;
        font-size: 2rem;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s;
    }
    #menu-toggle:active,
    #menu-toggle:focus {
        background: #23294655;
    }
    .mobile-dropdown-content {
        display: none !important;
        position: fixed;
        top: 80px; /* setinggi header */
        left: 0;
        width: 100vw;
        height: calc(100vh - 80px);
        background: rgba(35, 41, 70, 0.92); /* transparan, tetap terlihat situs di belakang */
        min-width: unset;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        overflow-y: auto;
        z-index: 2000;
        padding: 0;
        /* Default state (hidden) */
        transform: translateY(-30px);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(.4,1.4,.6,1), opacity 0.25s;
    }
    .mobile-dropdown-content.show {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(0);
        opacity: 1;
        transition: transform 0.35s cubic-bezier(.4,1.4,.6,1), opacity 0.25s;
    }
    .mobile-dropdown-content.show.animating-out {
        /* Slide out ke atas */
        transform: translateY(-40px);
        opacity: 0;
        transition: transform 0.25s cubic-bezier(.4,0,.6,1), opacity 0.18s;
        pointer-events: none;
    }
    .mobile-dropdown-content a {
        color: #B8C1EC;
        padding: 18px 24px;
        text-decoration: none;
        display: block;
        transition: background 0.3s, color 0.2s;
        font-size: 1.1rem;
        font-weight: 400;
        border-radius: 12px;
        margin: 8px 0;
        width: 80vw;
        text-align: center;
        background: none;
        border: none;
        outline: none;
        /* Hilangkan efek tombol biru */
        -webkit-appearance: none;
        appearance: none;
    }
    .mobile-dropdown-content a:active,
    .mobile-dropdown-content a:focus {
        background: #23294655;
        color: #F4D35E;
        outline: none;
    }
    .mobile-dropdown-content a:hover {
        background: #121629;
        color: #F4D35E;
    }
    .profile .name,
    .profile .agency {
        pointer-events: none !important;
        cursor: default !important;
        transition: none !important;
        color: #B8C1EC !important;
        transform: none !important;
    }
    .profile .name:hover,
    .profile .agency:hover {
        color: #B8C1EC !important;
        font-size: inherit !important;
        pointer-events: none !important;
        cursor: default !important;
        transition: none !important;
        transform: none !important;
    }
    .artwork-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
        padding: 4px 0 16px 0;
        max-width: 100vw;
        align-items: stretch;
    }
    .artwork-grid img {
        min-height: 80px;
        height: 100%;
        object-fit: cover;
    }
}

/* === MODE SWITCHER BUTTON === */
.mode-toggle {
    background: rgba(244, 211, 94, 0.1);
    border: 1px solid rgba(244, 211, 94, 0.2);
    cursor: pointer;
    padding: 8px;
    margin: 0 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #F4D35E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
    z-index: 1100;
}
.mode-toggle:hover,
.mode-toggle:focus {
    background: rgba(244, 211, 94, 0.2);
    border-color: rgba(244, 211, 94, 0.4);
    box-shadow: 0 0 15px rgba(244, 211, 94, 0.2);
    outline: none;
}

.mode-toggle:active {
    transform: rotate(20deg);
}
.mode-toggle .mode-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
    pointer-events: none;
}

/* Desktop: tombol di kanan header */
.desktop-only {
    display: flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-only {
    display: none !important;
}

/* Mobile: tombol di kiri header, kanan Portofolio */
@media screen and (max-width: 1000px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1101;
    }
    .dhenias {
        margin-left: 54px !important; /* beri ruang untuk tombol */
    }
}

/* === LIGHT MODE === */
body.light-mode {
    color: #1a1a2e;
    background: #f5f7fa;
}

body.light-mode .cta-button.primary {
    background: linear-gradient(135deg, #5b6fa8 0%, #7a8ec7 100%);
    color: #ffffff;
    border-color: #5b6fa8;
}

body.light-mode .cta-button.primary:hover {
    box-shadow: 0 8px 20px rgba(91, 111, 168, 0.3);
}

body.light-mode .cta-button.secondary {
    background: transparent;
    color: #5b6fa8;
    border-color: #5b6fa8;
}

body.light-mode .cta-button.secondary:hover {
    background: rgba(91, 111, 168, 0.1);
    color: #5b6fa8;
    border-color: #5b6fa8;
}

body.light-mode .hero-title {
    color: #5b6fa8;
    background: linear-gradient(135deg, #5b6fa8 0%, #7a8ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .hero-section {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.95) 0%, rgba(230, 235, 248, 0.95) 100%);
}

body.light-mode .hero-section::before {
    background: radial-gradient(circle at 20% 50%, rgba(159, 179, 123, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(159, 179, 123, 0.08) 0%, transparent 50%);
}

body.light-mode header {
    background: linear-gradient(135deg, #ffffff 0%, #f3f5fa 100%);
    border-bottom-color: rgba(91, 111, 168, 0.15);
    box-shadow: 0 4px 20px rgba(91, 111, 168, 0.1);
}

body.light-mode header:hover {
    box-shadow: 0 8px 30px rgba(91, 111, 168, 0.15);
}

body.light-mode .dhenias a {
    background: linear-gradient(135deg, #5b6fa8 0%, #7a8ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .subheader a:hover,
body.light-mode .artsubhead:hover {
    background: rgba(91, 111, 168, 0.1);
    color: #5b6fa8;
}

body.light-mode .subheader a:hover::after,
body.light-mode .artsubhead:hover::after {
    background: linear-gradient(90deg, #5b6fa8, #7a8ec7);
}

body.light-mode .mode-toggle {
    background: rgba(91, 111, 168, 0.1);
    border-color: rgba(91, 111, 168, 0.2);
    color: #5b6fa8;
}

body.light-mode .mode-toggle:hover,
body.light-mode .mode-toggle:focus {
    background: rgba(91, 111, 168, 0.2);
    border-color: rgba(91, 111, 168, 0.4);
    box-shadow: 0 0 15px rgba(91, 111, 168, 0.2);
}

body.light-mode .mode-toggle:active {
    transform: rotate(20deg);
}

body.light-mode .footer,
body.light-mode .profile,
body.light-mode .bio,
body.light-mode .skill-cont,
body.light-mode .artworks-dropdown-content,
body.light-mode .mobile-dropdown-content {
    background: #ffffff !important;
    color: #1a1a2e !important;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    border: 1px solid #e8ecf1;
}
body.light-mode .subheader a,
body.light-mode .artsubhead,
body.light-mode .artworks-dropdown-toggle {
    color: #1a1a2e;
    background: none;
    border: none;
    transition: all 0.3s ease;
}
body.light-mode .dhenias a:hover,
body.light-mode .subheader a:hover,
body.light-mode .artsubhead:hover,
body.light-mode .artworks-dropdown-toggle:hover {
    color: #5b6fa8;
    background: none;
}
body.light-mode .skills.draw {
    background: #6b8cdb;
    color: #ffffff;
}
body.light-mode .skills.anim,
body.light-mode .skills.css {
    background: #c9d4f0;
    color: #1a1a2e;
}
body.light-mode .skills.html {
    background: #a8bfe6;
    color: #ffffff;
}
body.light-mode .artworks-dropdown-content a,
body.light-mode .mobile-dropdown-content a {
    color: #1a1a2e;
}
body.light-mode .artworks-dropdown-content a:hover,
body.light-mode .mobile-dropdown-content a:hover {
    background: #e8ecf1;
    color: #5b6fa8;
}
body.light-mode .footer-content a {
    color: #1a1a2e;
}
body.light-mode .footer-content a:hover {
    color: #5b6fa8;
}
body.light-mode .bio-content b {
    color: #5b6fa8;
}
body.light-mode .section-header h2 {
    color: #5b6fa8;
    background: linear-gradient(135deg, #5b6fa8 0%, #7a8ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.light-mode .section-subtitle {
    color: #666666;
}
body.light-mode .disprofile .name,
body.light-mode .disprofile .agency {
    color: #1a1a2e;
}
body.light-mode .artwork-grid img,
body.light-mode .column img {
    background: #f3f5fa;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
body.light-mode .artwork-modal {
    background: rgba(230,235,245,0.96);
}
body.light-mode .artwork-modal img {
    background: #f3f5fa;
}
body.light-mode .close {
    color: #5b6fa8;
}
body.light-mode .close:hover {
    color: #5b6fa8;
}
body.light-mode .agency,
body.light-mode .name {
    color: #5b6fa8;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
body.light-mode .name:hover,
body.light-mode .agency:hover {
    color: #5b6fa8;
}
body.light-mode .mode-toggle {
    color: #5b6fa8;
}
body.light-mode .mode-toggle:hover,
body.light-mode .mode-toggle:focus {
    background: #5b6fa833;
}

/* Section titles and copyright: lebih gelap, tidak sama dengan link */
#digital > h2,
#traditional > h2,
.footer-content p:last-child,
.footer-content .footer-copyright {
    color: #7a88b8 !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}
body.light-mode #digital > h2,
body.light-mode #traditional > h2,
body.light-mode .footer-content p:last-child,
body.light-mode .footer-content .footer-copyright {
    color: #5a6480 !important;
}

/* === MOBILE OVERRIDES === */
@media screen and (max-width: 1000px) {
    /* ...existing code... */
    body.light-mode .body,
    body.light-mode .bio-content,
    body.light-mode .disprofile,
    body.light-mode .disprofile .name,
    body.light-mode .disprofile .agency,
    body.light-mode .profile,
    body.light-mode .bio,
    body.light-mode .footer,
    body.light-mode .footer-content,
    body.light-mode .skill-cont,
    body.light-mode .artworks-dropdown-content,
    body.light-mode .mobile-dropdown-content,
    body.light-mode .mobile-dropdown-content a,
    body.light-mode .mobile-menu,
    body.light-mode .column,
    body.light-mode .artwork-grid,
    body.light-mode .artwork-grid img,
    body.light-mode .column img {
        color: #232946 !important;
        background: #f3f5fa !important;
    }
    body.light-mode .mobile-dropdown-content a {
        color: #232946 !important;
    }
    body.light-mode .mobile-dropdown-content a:hover,
    body.light-mode .mobile-dropdown-content a:active,
    body.light-mode .mobile-dropdown-content a:focus {
        background: #e3e7f3 !important;
        color: #5b6fa8 !important;
    }
    body.light-mode .profile .name,
    body.light-mode .profile .agency {
        color: #232946 !important;
    }
    body.light-mode .profile .name:hover,
    body.light-mode .profile .agency:hover {
        color: #5b6fa8 !important;
    }
    body.light-mode .footer-content a {
        color: #232946 !important;
    }
    body.light-mode .footer-content a:hover {
        color: #5b6fa8 !important;
    }
    body.light-mode .skills {
        color: #232946 !important;
    }
    /* Section/copyright titles mobile */
    body.light-mode #digital > h2,
    body.light-mode #traditional > h2,
    body.light-mode .footer-content p:last-child,
    body.light-mode .footer-content .footer-copyright {
        color: #5a6480 !important;
    }
}