:root {
    --font-space-grotesk: "Space Grotesk", sans-serif;
    --font-space-mono: "Space Mono", monospace;
    --primary: #001bff;
    --primary-foreground: #fff;
    --card: #fff;
    --foreground: #282828;
    --muted-foreground: #282828;
    --radius-button: 30px;
    --radius-card: 15px;
    --background: #d5e1e1;
}

/* Ensure fonts are loaded */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap");

.nope-menu-overlay * {
    box-sizing: border-box;
    font-family: var(--font-space-grotesk);
}

.nope-menu-trigger {
    position: fixed;
    left: 30px;
    top: 30px;
    z-index: 2147483647;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.nope-menu-trigger:hover {
    opacity: 0.9;
}

.nope-menu-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-foreground);
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.nope-menu-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 2147483646;
    display: flex;
    flex-direction: column;
    padding: 107px 30px 30px 30px;
    gap: 23px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .nope-menu-panel {
        width: 250px;
    }
}

.nope-menu-panel.open {
    transform: translateX(0);
}

.nope-menu-header {
    color: var(--primary-foreground);
    margin-bottom: 16px;
}

.nope-menu-title {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-space-grotesk);
}

.nope-menu-subtitle {
    font-family: var(--font-space-mono);
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.8;
    margin: 0;
}

.nope-menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    height: 64px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
    background-color: var(--card);
    color: var(--foreground);
    box-shadow: -4px 4px 0px 0px var(--primary);
}

.nope-menu-item.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
}

.nope-menu-item:not(.active) {
    color: var(--foreground);
}

.nope-menu-item:not(.active) .nope-menu-label {
    color: var(--muted-foreground);
}

.nope-menu-item-icon-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.nope-menu-item svg {
    display: block;
}

.nope-menu-label {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    font-family: var(--font-space-grotesk);
}