:root {
    --cursor-size: 20px;
}
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none;
    word-break: keep-all;
    overflow-wrap: break-word;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00ffff;
}
.font-display {
    font-family: 'Syncopate', sans-serif;
}
.font-connect {
    font-family: 'Funnel Sans', sans-serif;
}
.font-kr {
    font-family: 'Noto Sans KR', sans-serif;
}
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}
#cursor.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 255, 255, 0.2);
    border-color: transparent;
}
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.8;
}
.text-neon-cyan {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.text-neon-purple {
    color: #d946ef;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}
.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chart-line {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.bento-card {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.glow-transition {
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    border-bottom-color: transparent !important;
}
.glow-active {
    color: #fff !important;
    text-shadow:
        0 0 5px #d946ef,
        0 0 10px #d946ef,
        0 0 20px #d946ef,
        0 0 40px #d946ef,
        0 0 80px #d946ef;
}
#contact-modal {
    backdrop-filter: blur(5px);
    cursor: auto;
    z-index: 100000;
}
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    #cursor {
        display: none;
    }
}
#toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    z-index: 200000;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
}
#toast-container.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast-content {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.toast-icon {
    color: #00ffff;
}
