@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

body {
    font-family: 'Inter', sans-serif;
    background: #1a0a2e;
    color: #e0e0e0;
    min-height: 100vh;
}

#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #7de4f5;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}
#cursor.click {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 36px;
    background: rgba(26,10,46,0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(125,228,245,0.1);
}
.nav-logo {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #7de4f5;
    text-decoration: none;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #7de4f5; }

.hero {
    padding: 60px 36px 80px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(125,228,245,0.08);
}
.hero-title .line {
    display: block;
    font-size: clamp(120px, 22vw, 200px);
    font-weight: 100;
    color: #7de4f5;
    letter-spacing: -0.05em;
    line-height: 0.88;
    text-shadow: 0 0 60px rgba(125,228,245,0.2);
}

.section {
    padding: 48px 36px;
    border-bottom: 1px solid rgba(125,228,245,0.08);
}
.sec-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
}
.sec-head h2 {
    font-size: 18px;
    font-weight: 700;
    color: #7de4f5;
}
.sec-head a {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.sec-head a:hover { color: #7de4f5; }

.filter-bar { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-bar a {
    font-size: 12px;
    font-weight: 300;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(125,228,245,0.2);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.2s;
}
.filter-bar a:hover,
.filter-bar a.active {
    background: #7de4f5;
    color: #1a0a2e;
    border-color: #7de4f5;
}

.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.art-card {
    border-radius: 10px;
    overflow: hidden;
    cursor: none;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.art-card:hover { transform: translateY(-2px); }
.art-thumb {
    aspect-ratio: 1;
    background: rgba(125,228,245,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.art-thumb img { width: 100%; height: 100%; object-fit: cover; }
.art-label { background: rgba(255,255,255,0.04); padding: 10px 12px; }
.art-label p { font-size: 12px; font-weight: 700; color: #7de4f5; margin-bottom: 2px; }
.art-label span { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.4); }

.goods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.goods-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(125,228,245,0.1);
    border-radius: 10px;
    overflow: hidden;
    cursor: none;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s;
}
.goods-card:hover { transform: translateY(-2px); border-color: rgba(125,228,245,0.3); }
.goods-img {
    aspect-ratio: 1;
    background: rgba(184,160,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.goods-img img { width: 100%; height: 100%; object-fit: cover; }
.goods-info { padding: 10px 12px 14px; }
.goods-info p { font-size: 12px; font-weight: 700; color: #e0e0e0; margin-bottom: 4px; }
.goods-price { font-size: 13px; font-weight: 700; color: #b8a0ff; }

.proj-list { display: flex; flex-direction: column; gap: 8px; }
.proj-row {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(125,228,245,0.1);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, border-color 0.2s;
}
.proj-row:hover { background: rgba(125,228,245,0.06); border-color: rgba(125,228,245,0.3); }
.proj-left { display: flex; align-items: center; gap: 14px; }
.proj-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.proj-name { font-size: 14px; font-weight: 700; color: #e0e0e0; margin-bottom: 2px; }
.proj-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); }
.proj-tag { font-size: 14px; color: #7de4f5; }

.about-inner { max-width: 560px; }
.about-text h3 { font-size: 20px; font-weight: 700; color: #7de4f5; margin-bottom: 12px; }
.about-text p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.atag {
    font-size: 11px;
    font-weight: 300;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(125,228,245,0.15);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

.empty-msg { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); padding: 40px 0; }

.footer {
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(125,228,245,0.08);
}
.footer-logo { font-size: 13px; font-weight: 700; color: #7de4f5; letter-spacing: 0.08em; }
.footer span { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav-links { gap: 18px; }
    .hero { padding: 40px 20px 60px; }
    .section { padding: 36px 20px; }
    .art-grid { grid-template-columns: repeat(2, 1fr); }
    .goods-grid { grid-template-columns: repeat(2, 1fr); }
    .footer { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
}
.hero {
    position: relative;
    overflow: hidden;
}

.coin {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(125,228,245,0.25);
    animation: coinSpin linear infinite;
    pointer-events: none;
}

.coin::after {
    content: '₩';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(125,228,245,0.3);
    font-weight: 300;
}

@keyframes coinSpin {
    0%   { transform: rotateY(0deg) translateY(0px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: rotateY(720deg) translateY(-40px); opacity: 0; }
}