/* wavelucle Interactive Styles */
.wl-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.wl-modal-backdrop.wl-open {
    opacity: 1;
    visibility: visible;
}
.wl-modal {
    position: relative;
    width: 100%;
    max-width: 470px;
    background: #121215;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(14, 165, 233, 0.25);
    overflow: hidden;
    transform: scale(0.95) translateY(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: system-ui, -apple-system, sans-serif;
    color: #fafafa;
}
.wl-modal-backdrop.wl-open .wl-modal {
    transform: scale(1) translateY(0);
}
.wl-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wl-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.wl-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: #a1a1aa;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.15s;
}
.wl-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.wl-modal-body {
    padding: 22px 24px;
    max-height: 80vh;
    overflow-y: auto;
}
.wl-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000000;
    background: #18181b;
    border: 1px solid rgba(14, 165, 233, 0.4);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.25s ease;
    pointer-events: none;
    font-family: system-ui, sans-serif;
}
.wl-toast.wl-show {
    opacity: 1;
    transform: translateY(0);
}
.wl-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.15s;
    margin-bottom: 8px;
    font-size: 13px;
    color: #e4e4e7;
}
.wl-method-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}
.wl-method-item.wl-selected {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    color: #fff;
    font-weight: 500;
}
.wl-input {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 0 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.wl-input:focus {
    border-color: #38bdf8;
}
.wl-btn-primary {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    background: #0ea5e9;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}
.wl-btn-primary:hover {
    background: #0284c7;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
}
.wl-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}
.wl-mobile-menu.wl-open {
    opacity: 1;
    pointer-events: auto;
}
.wl-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #e4e4e7;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.15s;
}
.wl-mobile-link:hover, .wl-mobile-link.active {
    background: rgba(14, 165, 233, 0.15);
    color: #bae6fd;
}

/* wavelucle Logo & Brand Styling */
a[href="/"] img[src*="logo.png"],
img[alt="wavelucle"],
.wl-brand-logo {
    width: 34px !important;
    height: 34px !important;
    max-width: none !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.45));
    transition: transform 0.2s ease, filter 0.2s ease;
    vertical-align: middle;
}

a[href="/"]:hover img[src*="logo.png"] {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.7));
}

/* Brand text: icy gradient */
a[href="/"] span,
.wl-brand-text {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #BAE6FD 55%, #7DD3FC 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1) !important;
    display: inline-block;
    vertical-align: middle;
}

/* Navigation items white-gray styling */
nav a, 
header nav a,
[data-nav-link] a {
    color: #A1A1AA !important;
    transition: color 0.2s ease, background-color 0.2s ease;
}

nav a:hover,
header nav a:hover,
[data-nav-link] a:hover {
    color: #FAFAFA !important;
}

/* Navbar container polish */
nav[class*="rounded-full"] {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}
