.iwara-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1.4rem 3.2rem;
    border-radius: 10rem;
    border: 0.15rem solid transparent;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
	text-decoration: none;
}

.iwara-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.18s;
}

.iwara-btn:hover::after {
    opacity: 1;
}

.iwara-btn-primary {
    background: linear-gradient(135deg, #D9B7AA 0%, #C89A8A 50%, #B8816A 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0.4rem 1.6rem rgba(200, 154, 138, 0.4);
}

.iwara-btn-primary:hover {
    box-shadow: 0 0.8rem 2.4rem rgba(200, 154, 138, 0.55);
    /* transform: translateY(-0.2rem); */
    color: #fff;
	background-color: #ead8d0;
}

.iwara-btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(0.8rem);
}

.iwara-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f9f0e6;
}

::-webkit-scrollbar-thumb {
    background: #bf8f7e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bf8f7e;
}