/* =========================================
   FUTURISTIC UI/UX REDESIGN
   Palet: Indigo, Cyan Neon, Glassmorphism
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

html, body {  
    background-image: url("https://goretanpena.com/images/motif.jpg");  
    font-family: 'Inter', sans-serif; /* Font futuristik yang clean */
}

/* --- STRUKTUR UTAMA & BACKGROUND KACA --- */
.pkp_structure_content {
    background: rgba(255, 255, 255, 0.85); /* Efek Glassmorphism (kaca buram) */
     backdrop-filter: blur(2px); /* Blur latar belakang agar futuristik */
    -webkit-backdrop-filter: blur(2px);
    border-radius: 20px; /* Siku sangat melengkung */
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 2.143rem;
}

.pkp_structure_sidebar.left {
    float: left;
    width: 280px;
    padding: 0px !important;
}

.pkp_structure_page {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
}

/* --- TIPOGRAFI & WARNAI LINK --- */
.page_title {
    color: #3F3D56; /* Gelap elegan, bukan biru tua menyilaukan */
    font-weight: 700;
    letter-spacing: -0.5px;
}

.name {
    color: #6C63FF; /* Indigo futuristik */
    font-weight: 600;
}

a {
    color: #6C63FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00F0FF; /* Cyan Neon saat hover */
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4); /* Efek glow */
}

/* --- BLOCK & SIDEBAR --- */
.pkp_block {
    padding: 0;
    font-size: 1rem;
    line-height: 1.43rem;
    border-radius: 16px; /* Lengkung siku block */
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Bayangan lembut */
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.pkp_block .title {
    display: block;
    padding: 15px;
    text-align: left;
    background: linear-gradient(135deg, #6C63FF 0%, #3F3D56 100%); /* Gradasi futuristik */
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    height: auto;
    border-bottom: none;
}

/* --- ABSTRACT & ARTIKEL --- */
.obj_article_details .abstract {
    text-align: justify;
    background: rgba(108, 99, 255, 0.05); /* Background sangat pudar */
    padding: 15px;
    border-radius: 12px; /* Lengkung siku */
    border-left: 4px solid #6C63FF; /* Aksen samping */
}

.obj_article_summary {
    border: 1px solid rgba(108, 99, 255, 0.2); /* Border transparan */
    padding: 15px;
    border-radius: 16px; /* Lengkung siku */
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.1); /* Shadow lembut indigo */
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.obj_article_summary:hover {
    transform: translateY(-3px); /* Efek melayang saat dihover */
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.2);
    border-color: #6C63FF;
}

/* --- TOMBOL (BUTTON) --- */
.cmp_button_wire,
.obj_galley_link {
    background: linear-gradient(135deg, #6C63FF, #00F0FF); /* Gradasi Neon */
    border: none;
    color: #fff;
    border-radius: 50px; /* Bentuk kapsul/pil (siku sangat melengkung) */
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
    transition: all 0.3s ease;
}

.cmp_button_wire:hover,
.obj_galley_link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.6); /* Glow cyan saat hover */
}

/* --- HEADER --- */

.pkp_structure_head {
    background-color: #02ab1f00;
    border-bottom: 1px solid #ddd;
}

.pkp_site_name {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background-color: aliceblue;
}

.pkp_site_name>a {
    padding-top: 0;
    padding-bottom: 0;
}

.pkp_site_name .is_img img {
    max-height: 200px !important;
    border-radius: 0 0 20px 20px; /* Lengkung siku bawah logo */
}

.pkp_site_name_wrapper {
    padding-left: 0;
    padding-right: 0;
    background: aqua;
}

.pkp_navigation_user_wrapper {
    top: 0;
    right: 0;
    padding-right: 30px;
}

.pkp_structure_main:before, .pkp_structure_main:after {
        background: #ffffff00 !important;
}

/* --- MENU SIDEBAR (FUTURISTIC NAVIGATION) --- */
.head-menu {
    border-bottom: none;
    height: auto;
    border-radius: 16px 16px 0 0; /* Lengkung siku atas */
    overflow: hidden;
}

.head-menu a {
    display: block;
    padding: 15px;
    text-align: left;
    background: linear-gradient(135deg, #6C63FF 0%, #3F3D56 100%);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-sidebar {
    font: 600 13px 'Inter', arial, verdana, sans-serif;
}

.menu-sidebar ul {
    list-style: none;
    padding: 0px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 16px 16px; /* Lengkung siku bawah */
    overflow: hidden;
}

.menu-sidebar li a {
    text-decoration: none;
    color: #3F3D56;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    margin-top: 0px;
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent; /* Persiapan aksen hover */
}

.menu-sidebar li a:hover {
    background-color: rgba(108, 99, 255, 0.1); /* Indigo sangat pudar */
    box-shadow: none; /* Hilangkan shadow lama */
    color: #6C63FF;
    border-left: 4px solid #00F0FF; /* Aksen cyan neon di kiri */
    padding-left: 20px; /* Efek meluncur ke kanan */
}

.menu-sidebar ul ul {
    position: absolute;
    top: 75px;
    left: 135px;
    visibility: hidden;
    border-radius: 12px !important; /* Lengkung siku submenu */
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.menu-sidebar ul li:hover ul {
    visibility: visible;
}

/* --- BADAN / MENU LAIN --- */
.badan {
    margin-top: 0px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px; /* Lengkung siku */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.badan a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.3s ease;
    color: #3F3D56;
}

.badan a:last-child {
    border-bottom: none; /* Hilangkan garis di item terakhir */
}

.badan a:hover {
    color: #6C63FF !important;
    font-weight: bold;
    background: rgba(108, 99, 255, 0.08); /* Latar pudar */
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.1); /* Glow dalam (Inset) */
    position: relative;
}