: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-footer: rgba(10, 10, 10, 0.9);
    --bg-hero-overlay: rgba(0, 0, 0, 0.7);
    
    /* 텍스트 색상 */
    --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);
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* 그라데이션 */
    --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-overlay: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    
    /* 그림자 */
    --shadow-small: 0 4px 20px rgba(100, 0, 255, 0.15);
    --shadow-medium: 0 8px 30px rgba(100, 0, 255, 0.2);
    --shadow-large: 0 12px 40px rgba(100, 0, 255, 0.25);
    
    /* 평점 색상 */
    --rating-gold: #ffd700;
    --rating-bg: rgba(255, 215, 0, 0.1);
}

::-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';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-3@1.0/Title_Medium.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gyeonggi_Title_Medium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-3@1.0/Title_Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gyeonggi_Title_Medium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-3@1.0/Title_Medium.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gyeonggi_Title_Medium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-3@1.0/Title_Medium.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gyeonggi_Title_Medium', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.signup-section {
    padding: 16rem 0 16rem;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(100, 0, 255, 0.15) 0%, transparent 60%);
}

.signup-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
}

.signup-form-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-large);
}

.signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.signup-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.signup-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-primary);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(100, 0, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-primary);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    color: var(--text-secondary);
}

.signup-btn {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 32px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-secondary);
}

.login-link p {
    color: var(--text-secondary);
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: var(--primary-light);
}

.signup-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    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: linear-gradient(135deg, transparent 0%, rgba(100, 0, 255, 0.2) 100%);
}

.visual-content {
    border: 2px solid var(--border-primary);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.visual-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}