@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pangolin', cursive;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    height: 100vh;
}

.sidebar {
    max-width: 160px;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.tab {
    padding: 16px 20px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background 0.2s;
}

.tab:hover {
    background: #ffc0cb22;
}

.tab.active {
    background: #ffc0cb;
    border-left: 3px solid #ff69b4;
}

.content {
    flex: 1;
    padding: 40px;
}

.container {
    display: none;
}

.container.active {
    display: block;
}

.hidden {
  display: none;
}

#cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 3px solid #ff69b4;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
}

#cursor::before,
#cursor::after {
    content: '';
    position: absolute;
    background: #ff69b4;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#cursor::before {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

#cursor::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#cursor.clicked {
    transform: translate(-50%, -50%) scale(1.2);
}

#cursor.clicked::before,
#cursor.clicked::after {
    opacity: 1;
}