/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Global */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    color: #e2e8f0;
}

/* Card efek hover */
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
    border: 2px solid transparent;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    border-color: #3b82f6;
}

/* Button hover effect */
.btn {
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}
.btn:hover {
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.mobile-menu-open {
    display: block;
}

/* Hilangkan scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* List style untuk tutorial / numbering */
.tutorial-list {
    counter-reset: tutorial-counter;
    list-style: none;
    padding-left: 0;
}
.tutorial-list li {
    position: relative;
    padding-left: 2.5rem;
    counter-increment: tutorial-counter;
}
.tutorial-list li::before {
    content: counter(tutorial-counter);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: #3b82f6;
    color: #fff;
    font-weight: bold;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}