/* === Gaya Dasar === */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #6d6d6d; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #464646; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2f2f2f; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: monospace;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #e9e9e9;
    background-color: #181818;
    scrollbar-color: #888 #f1f1f1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* === Header === */
.header {
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.2rem;
    color: #9d9d9d;
}

/* === Screenshot Section === */
.screenshot {
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.screenshot img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Fitur Section === */
.features {
    margin: 3rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li strong {
    color: #FF5E5B;
}

/* Ikon dengan Emoji */
.feature-list li::before {
    content: "✨"; /* Ganti dengan emoji lain: 🖋️ ✅ 🔒 */
    position: absolute;
    left: 0;
    top: 0;
}

/* === CTA Section === */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #1E3A8A 0%, #0F4C75 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta h2 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1E3A8A;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* === Footer === */
.footer {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
    font-size: 0.9rem;
    color: #718096;
}

.highlight {
    color: #FF5E5B;
    font-weight: bolder;
}

.sign-in {
    border: 1px solid gray;
    padding: 2px 5px 2px 5px;
}

.sign-in:hover {
    border-color: beige;
    color: white;
}

a {
    color: #e9e9e9;
    text-decoration: none;
}

.pointer {
    cursor: pointer;
}

.menu {
    display: flex;
    gap: 10px;
    padding: 5px;
    justify-content: end;
}