:root {
    /* 브랜드 컬러 */
    --primary-color: #6400ff;
    --primary-light: #a855f7;
    --primary-dark: #4c0099;
    
    /* 배경 색상 */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a0a2e;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-overlay: rgba(10, 10, 10, 0.95);
    --bg-header: rgba(10, 10, 10, 0.2);
    --bg-footer: rgba(10, 10, 10, 0.9);
    
    /* 텍스트 색상 */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-disabled: rgba(255, 255, 255, 0.5);
    --text-accent: var(--primary-color);
    
    /* 테두리 색상 */
    --border-primary: rgba(100, 0, 255, 0.2);
    --border-secondary: rgba(100, 0, 255, 0.1);
    --border-hover: var(--primary-color);
    
    /* 그라데이션 */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-text: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    --gradient-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-card: linear-gradient(135deg, rgba(100, 0, 255, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    --gradient-overlay: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    
    /* 그림자 */
    --shadow-small: 0 10px 30px rgba(100, 0, 255, 0.2);
    --shadow-medium: 0 12px 35px rgba(100, 0, 255, 0.25);
    --shadow-large: 0 10px 30px rgba(100, 0, 255, 0.3);
    
    /* 배지 색상 */
    --badge-new: #ff6b6b;
    --badge-rating: var(--primary-color);
    --badge-genre: var(--primary-light);
    
    /* 콘텐츠 배경 그라데이션 */
    --content-gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --content-gradient-2: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    --content-gradient-3: linear-gradient(135deg, #48cae4 0%, #023e8a 100%);

    --notice-bg: rgba(255, 200, 0, 0.1);
    --notice-border: rgba(255, 213, 0, 0.5);
}

::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}

.scroll-container {
  overflow: auto;
  scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}

@font-face {
    font-family: 'Gyeonggi_Title_Medium' !important;
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-3@1.0/Title_Light.woff') format('woff') !important;
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'GyeonggiTitle', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: none;
    padding-left: calc((100vw - 1280px) / 2);
    padding-right: calc((100vw - 1280px) / 2);
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-primary);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-primary);
    border-radius: 24px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.profile-btn {
    padding: 0.5rem 1rem;
    background: rgba(100, 0, 255, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(100, 0, 255, 0.15) 0%, transparent 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #6400ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-accent);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.featured-card {
    position: relative;
    width: 300px;
    height: 450px;
    background-image: url('./resources/developer_profile/profile.kumi.png');
    background: linear-gradient(135deg, rgba(100, 0, 255, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 0, 255, 0.3);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./resources/developer_profile/profile.kumi.png');
    background-size: cover;
    background-position: center;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content span {
    padding: 0.2rem 0.6rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-content .genre {
    background: rgba(168, 85, 247, 0.2);
    color: var(--badge-genre);
}

.notice-item {
    background: var(--notice-bg);
    border: 1px solid var(--notice-border);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.notice-item a {
    color: var(--text-primary);
    text-decoration: none;
}
.notice-item:hover {
    background: rgba(255, 180, 0, 0.2);
    border-color: rgba(255, 180, 0, 0.3);
    cursor: pointer;
    transform: translateY(-8px);
}

.categories {
    padding: 4rem 0;
    overflow: visible;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.category-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0.5rem 0;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: rgba(100, 0, 255, 0.1);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-accent);
}

.category-card p {
    color: var(--text-muted);
}

.content-sections {
    padding: 4rem 0;
    overflow: visible;
}

.content-section {
    margin-bottom: 6rem;
    overflow: visible;
}

.section-title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.section-description h3 {
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
}

.section-description hr {
    border: 0;
    height: 1px;
    background: var(--border-primary);
    margin: 2rem 0;
}

.new-badge {
    background: rgba(255, 107, 107, 0.2) !important;
    color: var(--badge-new) !important;
}

.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(100, 0, 255, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #6400ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6400ff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 0, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}