* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4faf0;
    color: #1a3a1a;
    padding-top: 90px;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    z-index: 999;
    border-bottom: 1px solid rgba(139, 195, 74, 0.15);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    color: #558b2f;
    margin-right: 8px;
    -webkit-text-fill-color: #558b2f;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a3a1a;
    font-weight: 500;
    position: relative;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8bc34a, #cddc39);
    transition: .3s;
    border-radius: 10px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #558b2f;
}

#dark {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #1a3a1a;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dark:hover {
    background: rgba(139, 195, 74, 0.15);
    color: #558b2f;
    transform: rotate(20deg);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.dark {
    background: #0d1a0d;
    color: #d8e8d0;
}

.dark header {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 195, 74, 0.15);
}

.dark .nav-links a {
    color: #d8e8d0;
}

.dark .nav-links a:hover {
    color: #aed581;
}

.dark #dark {
    color: #d8e8d0;
}

.dark #dark:hover {
    background: rgba(139, 195, 74, 0.15);
    color: #aed581;
}

.dark footer {
    background: #080f08;
}

.sup-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    animation: fadeInUp 0.8s ease;
}

/* ===== TOMBOL KEMBALI ===== */
.btn-back-sup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 40px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.3);
    letter-spacing: 0.5px;
}

.btn-back-sup:hover {
    background: linear-gradient(135deg, #33691e, #689f38);
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 6px 30px rgba(139, 195, 74, 0.4);
}

.btn-back-sup i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-back-sup:hover i {
    transform: translateX(-5px);
}

.sup-header-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 35px 40px;
    background: linear-gradient(135deg, #ffffff, #f4faf0);
    border-radius: 30px;
    border: 1px solid rgba(139, 195, 74, 0.12);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sup-header-split::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.06), transparent 70%);
    border-radius: 50%;
}

.sup-header-split::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(205, 220, 57, 0.04), transparent 70%);
    border-radius: 50%;
}

.sup-header-left {
    position: relative;
    z-index: 1;
}

.sup-header-left .emoji-badge {
    font-size: 55px;
    display: inline-block;
    margin-bottom: 8px;
    animation: floatSup 3.5s ease-in-out infinite;
}

@keyframes floatSup {
    0%, 100% { 
        transform: translateY(0px) rotate(-2deg) scale(1); 
    }
    50% { 
        transform: translateY(-12px) rotate(2deg) scale(1.03); 
    }
}

.sup-header-left h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.sup-header-left h1 .highlight-sup {
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sup-header-left .subtitle-sup {
    font-size: 16px;
    color: #7a9a6a;
    margin-bottom: 15px;
}

.sup-header-left .divider-sup {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8bc34a, #cddc39, #dcedc8);
    border-radius: 10px;
    margin-bottom: 18px;
}

.sup-meta {
    display: flex;
    gap: 15px;
    color: #5a7a4a;
    font-size: 15px;
    flex-wrap: wrap;
}

.sup-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    font-weight: 500;
    border: 1px solid rgba(139, 195, 74, 0.08);
    transition: all 0.3s ease;
}

.sup-meta span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.1);
}

.sup-meta i {
    color: #558b2f;
    font-size: 16px;
}

.sup-meta .meta-category-sup {
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
}

.sup-meta .meta-category-sup i {
    color: white;
}

.sup-meta .meta-rating-sup {
    background: linear-gradient(135deg, #f4faf0, #f1f8e9);
    border-color: #dcedc8;
}

.sup-meta .meta-rating-sup i {
    color: #f5a623;
}

.sup-header-right {
    position: relative;
    z-index: 1;
}

.sup-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.sup-image-card:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 12px 45px rgba(139, 195, 74, 0.2);
}

.sup-image-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.sup-image-card:hover img {
    transform: scale(1.05);
}

.sup-image-card .image-badge-sup {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sup-image-card .image-badge-sup i {
    font-size: 12px;
}

.sup-info-badge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.badge-item-sup {
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(139, 195, 74, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.badge-item-sup:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 195, 74, 0.08);
    border-color: rgba(139, 195, 74, 0.2);
}

.badge-item-sup i {
    font-size: 28px;
    color: #558b2f;
    display: block;
    margin-bottom: 8px;
}

.badge-item-sup .label-sup {
    font-size: 12px;
    color: #7a9a6a;
    display: block;
}

.badge-item-sup .value-sup {
    font-size: 16px;
    font-weight: 600;
    color: #1a3a1a;
}

.sup-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 10px;
}

.sup-ingredients {
    background: white;
    padding: 35px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 195, 74, 0.08);
    position: sticky;
    top: 100px;
    height: fit-content;
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #ffffff, #f4faf0);
}

.sup-ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #558b2f, #8bc34a, #cddc39);
    border-radius: 30px 30px 0 0;
}

.sup-ingredients:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.12);
}

.sup-ingredients h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #f4faf0;
}

.sup-ingredients h3 i {
    color: #558b2f;
    font-size: 24px;
    background: linear-gradient(135deg, #f4faf0, #f1f8e9);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.1);
}

.sup-ingredients .total-items-sup {
    font-size: 13px;
    color: #7a9a6a;
    font-weight: 400;
    margin-left: auto;
    background: #f4faf0;
    padding: 4px 14px;
    border-radius: 20px;
}

.sup-ingredients ul {
    list-style: none;
    padding: 0;
}

.sup-ingredients ul li {
    padding: 14px 0 14px 10px;
    border-bottom: 1px solid #f4faf0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #2a4a2a;
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: default;
}

.sup-ingredients ul li:hover {
    background: #f4faf0;
    padding-left: 18px;
    transform: translateX(5px);
}

.sup-ingredients ul li::before {
    content: "◆";
    color: #558b2f;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #f4faf0, #f1f8e9);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(139, 195, 74, 0.1);
}

.sup-ingredients ul li:hover::before {
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    color: white;
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.3);
}

.sup-ingredients ul li:last-child {
    border-bottom: none;
}

.sup-steps {
    background: white;
    padding: 35px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 195, 74, 0.08);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #ffffff, #f4faf0);
    position: relative;
    overflow: hidden;
}

.sup-steps::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.03), transparent 70%);
    border-radius: 50%;
}

.sup-steps:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.08);
}

.sup-steps h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #f4faf0;
}

.sup-steps h3 i {
    color: #558b2f;
    font-size: 24px;
    background: linear-gradient(135deg, #f4faf0, #f1f8e9);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.1);
}

.sup-steps ol {
    padding: 0;
    list-style: none;
    counter-reset: step-counter;
    position: relative;
    z-index: 1;
}

.sup-steps ol li {
    padding: 18px 20px 18px 65px;
    border-bottom: 1px solid #f4faf0;
    line-height: 1.7;
    font-size: 15px;
    color: #2a4a2a;
    position: relative;
    border-radius: 14px;
    transition: all 0.4s ease;
    margin-bottom: 5px;
    counter-increment: step-counter;
}

.sup-steps ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(139, 195, 74, 0.3);
    transition: all 0.4s ease;
}

.sup-steps ol li:hover {
    background: linear-gradient(135deg, #f4faf0, #fafff8);
    transform: translateX(8px) scale(1.01);
    border-radius: 14px;
}

.sup-steps ol li:hover::before {
    transform: translateY(-50%) scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 30px rgba(139, 195, 74, 0.4);
}

.sup-steps ol li:last-child {
    border-bottom: none;
}

.sup-tips {
    margin-top: 30px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f4faf0, #f1f8e9);
    border-radius: 20px;
    border-left: 6px solid #558b2f;
    box-shadow: 0 4px 25px rgba(139, 195, 74, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sup-tips::before {
    content: '🥬';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 50px;
    opacity: 0.08;
}

.sup-tips:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px rgba(139, 195, 74, 0.15);
}

.sup-tips h4 {
    color: #558b2f;
    margin-bottom: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sup-tips h4 i {
    font-size: 22px;
    background: white;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    color: #558b2f;
}

.sup-tips p {
    color: #3a5a3a;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding-left: 10px;
}

.dark .sup-header-split {
    background: linear-gradient(135deg, #111f11, #1a2f1a);
    border-color: rgba(139, 195, 74, 0.15);
}

.dark .sup-header-left h1 {
    color: #d8e8d0;
}

.dark .sup-header-left .subtitle-sup {
    color: #8aaa7a;
}

.dark .sup-meta span {
    background: #1a2f1a;
    color: #b8d0b0;
    border-color: rgba(139, 195, 74, 0.12);
}

.dark .sup-meta .meta-category-sup {
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    color: white;
}

.dark .sup-meta .meta-rating-sup {
    background: rgba(139, 195, 74, 0.15);
    border-color: rgba(139, 195, 74, 0.2);
}

.dark .sup-image-card .image-badge-sup {
    background: rgba(0, 0, 0, 0.7);
}

.dark .sup-ingredients {
    background: linear-gradient(145deg, #111f11, #1a2f1a);
    border-color: rgba(139, 195, 74, 0.1);
}

.dark .sup-ingredients h3 {
    color: #d8e8d0;
    border-bottom-color: rgba(139, 195, 74, 0.15);
}

.dark .sup-ingredients h3 i {
    background: rgba(139, 195, 74, 0.15);
    color: #aed581;
}

.dark .sup-ingredients .total-items-sup {
    background: #1a2f1a;
    color: #8aaa7a;
}

.dark .sup-ingredients ul li {
    color: #b8d0b0;
    border-bottom-color: rgba(255,255,255,0.04);
}

.dark .sup-ingredients ul li:hover {
    background: rgba(139, 195, 74, 0.05);
}

.dark .sup-ingredients ul li::before {
    background: rgba(139, 195, 74, 0.15);
    color: #aed581;
}

.dark .sup-ingredients ul li:hover::before {
    background: linear-gradient(135deg, #558b2f, #8bc34a);
    color: white;
}

.dark .sup-steps {
    background: linear-gradient(145deg, #111f11, #1a2f1a);
    border-color: rgba(139, 195, 74, 0.1);
}

.dark .sup-steps h3 {
    color: #d8e8d0;
    border-bottom-color: rgba(139, 195, 74, 0.15);
}

.dark .sup-steps h3 i {
    background: rgba(139, 195, 74, 0.15);
    color: #aed581;
}

.dark .sup-steps ol li {
    color: #b8d0b0;
    border-bottom-color: rgba(255,255,255,0.04);
}

.dark .sup-steps ol li:hover {
    background: rgba(139, 195, 74, 0.05);
}

.dark .sup-tips {
    background: linear-gradient(135deg, #111f11, #1a2f1a);
}

.dark .sup-tips h4 {
    color: #aed581;
}

.dark .sup-tips p {
    color: #b8d0b0;
}

.dark .sup-tips h4 i {
    background: #1a2f1a;
    color: #aed581;
}

.dark .badge-item-sup {
    background: #111f11;
    border-color: rgba(139, 195, 74, 0.1);
}

.dark .badge-item-sup .value-sup {
    color: #d8e8d0;
}

.dark .badge-item-sup .label-sup {
    color: #8aaa7a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSup {
    0%, 100% { 
        transform: translateY(0px) rotate(-2deg) scale(1); 
    }
    50% { 
        transform: translateY(-12px) rotate(2deg) scale(1.03); 
    }
}

@media(max-width: 992px) {
    .sup-header-split {
        grid-template-columns: 1fr 0.9fr;
        gap: 30px;
        padding: 30px 30px;
    }
    
    .sup-header-left h1 {
        font-size: 34px;
    }
    
    .sup-image-card img {
        height: 200px;
    }
}

@media(max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 26px;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: .4s;
        gap: 25px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .dark .nav-links {
        background: #111f11;
    }

    .sup-header-split {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .sup-header-left h1 {
        font-size: 28px;
    }
    
    .sup-header-left .emoji-badge {
        font-size: 45px;
    }
    
    .sup-image-card img {
        height: 180px;
    }
    
    .sup-image-card .image-badge-sup {
        font-size: 11px;
        padding: 5px 12px;
        bottom: 10px;
        left: 10px;
    }
    
    .sup-header-left .divider-sup {
        width: 60px;
    }
    
    .sup-meta {
        gap: 10px;
    }
    
    .sup-meta span {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .sup-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sup-ingredients {
        position: static;
    }
    
    .sup-steps {
        padding: 25px 20px;
    }
    
    .sup-steps ol li {
        padding: 15px 15px 15px 55px;
        font-size: 14px;
    }
    
    .sup-steps ol li::before {
        width: 34px;
        height: 34px;
        font-size: 13px;
        left: 6px;
    }
    
    .sup-ingredients {
        padding: 25px 20px;
    }
    
    .sup-ingredients ul li {
        font-size: 14px;
        padding: 12px 0 12px 10px;
    }
    
    .sup-ingredients ul li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .btn-back-sup {
        padding: 12px 28px;
        font-size: 14px;
        margin-bottom: 25px;
        width: 100%;
        justify-content: center;
    }
    
    .sup-tips {
        padding: 20px;
    }
    
    .sup-tips p {
        font-size: 14px;
    }
    
    .sup-info-badge {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media(max-width: 480px) {
    header {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .sup-header-left h1 {
        font-size: 22px;
    }
    
    .sup-header-left .subtitle-sup {
        font-size: 14px;
    }
    
    .sup-header-split {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .sup-image-card img {
        height: 140px;
    }
    
    .sup-header-left .divider-sup {
        width: 50px;
        height: 3px;
    }
    
    .sup-meta {
        flex-direction: column;
        gap: 6px;
    }
    
    .sup-meta span {
        width: fit-content;
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .btn-back-sup {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .sup-container {
        padding: 15px 12px 40px;
    }
    
    .sup-info-badge {
        grid-template-columns: 1fr 1fr;
    }
}