/* Nav button styles */
.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #111;
    text-decoration: none;
    font-size: 1.3em;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 8px 22px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    border: 2px solid #222;
    transition: background 0.2s, color 0.2s;
}
.nav-btn:hover {
    background: #d60000;
    color: #fff;
    border-color: #b30000;
}
/* Styles moved from curious.html */
.top-bar {
    position: fixed;
    top: 0;
    left: 80px;
    right: 0;
    height: 100px;
    background: #e8a412;
    z-index: 20;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

body {
    background: url('BG.avif');
    min-height: 100vh;
}

.orange-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    background: orange;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.black-box {
    width: 24px;
    height: 24px;
    background: black;
    margin: 10px 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.right-bar {
    left: auto;
    right: 0;
    z-index: 25;
}

.center-box {
    position: fixed;
    top: 140px;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(60vw - 160px);
    min-height: 300px;
    height: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 48px 56px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    scrollbar-width: thin;
}
.center-box::-webkit-scrollbar {
    width: 12px;
}
.center-box::-webkit-scrollbar-thumb {
    background: #e8a412;
    border-radius: 8px;
}

.nav-btn {
    position: relative;
    display: inline-block;
    overflow: visible;
}
.kitty-container {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    width: 48px;
    height: 48px;
    pointer-events: none;
    z-index: 2;
}
.kitty-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s;
}
.nav-btn:hover .kitty-img {
    opacity: 1;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8a412;
}
