
/* Global Styles & Overrides */
body {
    background-color: #050505;
    color: white;
    overflow-x: hidden;
}

/* 텍스트 그라데이션 */
.text-gradient {
    background: linear-gradient(90deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 글래스모피즘 */
.glass {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 카드 그라데이션 테두리 애니메이션 */
.card-container {
    position: relative;
    background: #111111;
    border-radius: 1rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.card-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 1.1rem;
    background: linear-gradient(45deg, rgba(20, 241, 149, 0.3), rgba(153, 69, 255, 0.3));
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.card-container:hover {
    transform: translateY(-5px);
}

.card-container:hover::before {
    background: linear-gradient(45deg, #14F195, #9945FF);
    opacity: 1;
    filter: blur(4px);
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #9945FF; }

/* Disqus Dark Mode Support */
#disqus_thread {
    color-scheme: dark;
}
