/* CSS Document */
@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
}
.txt-center {
    text-align: center;
}
/* 네비게이션 */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 25px 40px;
	background: transparent;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
}

nav.scrolled {
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 40px;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	background: linear-gradient(135deg, #f19797 0%, #eb313b 50%, #e83a14 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}
.logo a {
	padding-left: 50px;
background: url(../img/yeon-eo-ent96.png) no-repeat left;
background-size: contain;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
}

.nav-toggle span {
	width: 28px;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
	display: flex;
	gap: 45px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
}

.nav-links a:hover {
	color: #ff6b6b;
}

.audition-btn {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	padding: 12px 30px !important;
	border-radius: 30px;
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
	50% { box-shadow: 0 10px 40px rgba(255, 107, 107, 0.6); }
}

.audition-btn:hover {
	color: #fff !important;
	transform: scale(1.05);
}
		
/* 히어로 섹션 - 유튜브 배경 */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.youtube-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.youtube-bg iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	transform: translate(-50%, -50%);
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(196,69,105,0.3) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 0 20px;
}

.hero h1 {
	font-size: clamp(50px, 12vw, 100px);
	font-weight: 900;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #fff 0%, #ff6b6b 50%, #ee5a6f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1.2s ease;
	text-shadow: 0 0 80px rgba(255, 107, 107, 0.5);
	letter-spacing: -2px;
}

.hero-subtitle {
	font-size: clamp(20px, 4vw, 32px);
	margin-bottom: 20px;
	animation: fadeInUp 1.2s ease 0.3s backwards;
	font-weight: 300;
	letter-spacing: 2px;
}

.hero-description {
	font-size: clamp(16px, 3vw, 20px);
	color: #ddd;
	margin-bottom: 50px;
	animation: fadeInUp 1.2s ease 0.6s backwards;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

.hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1.2s ease 0.9s backwards;
}

.cta-button {
	padding: 18px 45px;
	font-size: 18px;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.cta-primary {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	color: #fff;
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(255, 107, 107, 0.7);
}

.cta-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.cta-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	animation: bounce 2s infinite;
}

.scroll-indicator::before {
	content: '↓';
	font-size: 30px;
	color: #fff;
	opacity: 0.7;
}

@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-20px); }
}

/* 비디오 쇼케이스 섹션 */
.video-showcase {
	padding: 100px 20px;
	background: linear-gradient(180deg, #000 0%, #1a0a0f 100%);
}

.section-title {
	font-size: clamp(36px, 7vw, 56px);
	text-align: center;
	margin-bottom: 20px;
	font-weight: 900;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	font-size: clamp(16px, 3vw, 20px);
	color: #aaa;
	margin-bottom: 60px;
}

.video-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}

.video-card {
	background: rgba(255, 107, 107, 0.05);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 107, 107, 0.2);
	transition: all 0.4s ease;
	cursor: pointer;
}

.video-card:hover {
	transform: translateY(-10px);
	border-color: #ff6b6b;
	box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.video-info {
	padding: 25px;
}

.video-category {
	display: inline-block;
	padding: 6px 15px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	border-radius: 20px;
	font-size: 12px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.video-info h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #fff;
}

.video-info p {
	font-size: 14px;
	color: #aaa;
	line-height: 1.6;
}

.img-container {
    height: 300px;
    border: 1px solid gray;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

/* 아티스트 쇼케이스 */
.artists-showcase {
	padding: 100px 20px;
	background: #000;
}

.artists-grid {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.artist-spotlight {
	position: relative;
	height: 450px;
	border-radius: 25px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.5s ease;
}

.artist-spotlight:hover {
	transform: scale(1.05) translateY(-10px);
	z-index: 10;
}

.artist-bg {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	transition: transform 0.5s ease;	
    -webkit-text-stroke: 1.2px #ffb6aa;     
    -webkit-text-fill-color: white;   
    color: white; 
	text-shadow: 
        -1px 0 #fb676c, 
        0 1px #fb676c,  
        1px 0 #fb676c, 
        0 -1px #fb676c; 
}

.artist-spotlight:hover .artist-bg {
	transform: scale(1.2);
}

.artist-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
	padding: 40px 25px;
	transform: translateY(70%);
	transition: transform 0.5s ease;
}

.artist-spotlight:hover .artist-info {
	transform: translateY(0);
}

.artist-category {
	display: inline-block;
	padding: 6px 15px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	border-radius: 20px;
	font-size: 12px;
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.artist-info h3 {
	font-size: 28px;
	margin-bottom: 10px;
}

.artist-achievements {
	font-size: 14px;
	color: #ccc;
	line-height: 1.6;
}

.artist-singer {
	background: url(../img/yeoneo-ent_co_ltd-singer.jpg) no-repeat center;
	background-size: cover;
}
.artist-actor {
	background: url(../img/yeoneo-ent_co_ltd-actor.jpg) no-repeat center;
	background-size: cover;
}
.artist-model {
	background: url(../img/proj_06_1.png) no-repeat center;
	background-size: cover;
}
.artist-musician {
	background: url(../img/proj_05.jpg) no-repeat center;
	background-size: cover;
}
.artist-dancer {
	background: url(../img/proj_09.png) no-repeat center;
	background-size: cover;
}
.artist-songwriter {
	background: url(../img/proj_01.jpg) no-repeat center;
	background-size: cover;
}

/* 오디션 CTA 섹션 */
.audition-cta {
	padding: 120px 20px;
	background: linear-gradient(135deg, #1a0a0f 0%, #2a0a1f 100%);
	position: relative;
	overflow: hidden;
}

.audition-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ff6b6b" opacity="0.1"/></svg>');
	animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
	from { transform: translateY(0); }
	to { transform: translateY(-100px); }
}

.audition-content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.audition-content h2 {
	font-size: clamp(40px, 8vw, 70px);
	margin-bottom: 30px;
	font-weight: 900;
	background: linear-gradient(135deg, #fff 0%, #ff6b6b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.audition-content p {
	font-size: clamp(18px, 3vw, 24px);
	color: #ddd;
	margin-bottom: 50px;
	line-height: 1.8;
}

.audition-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 25px;
	margin-bottom: 50px;
}

.option-card {
	background: rgba(255, 107, 107, 0.1);
	border: 2px solid rgba(255, 107, 107, 0.3);
	border-radius: 20px;
	padding: 35px 25px;
	transition: all 0.3s;
}

.option-card:hover {
	background: rgba(255, 107, 107, 0.2);
	border-color: #ff6b6b;
	transform: translateY(-5px);
}

.option-icon {
	font-size: 50px;
	margin-bottom: 15px;
}

.option-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #ff6b6b;
}

.option-card p {
	font-size: 15px;
	color: #aaa;
	margin: 0;
}

/* 푸터 */
footer {
	background: #000;
	padding: 60px 20px 30px;
	border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 15px;
}

.footer-links a:hover {
	color: #ff6b6b;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.social-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 107, 107, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s;
	border: 1px solid rgba(255, 107, 107, 0.3);
}

.social-icon:hover {
	background: #ff6b6b;
	transform: translateY(-3px);
}
.social-icon img {
    width: 60%;
    height: auto;
}

.copyright {
	color: #666;
	font-size: 14px;
}

/* 회사소개 섹션 */
.about-section {
	padding: 100px 20px;
	background: linear-gradient(180deg, #1a0a0f 0%, #0a0a0a 100%);
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px;
	align-items: center;
}

.about-text h3 {
	font-size: clamp(28px, 5vw, 36px);
	margin-bottom: 25px;
	color: #ff6b6b;
}

.about-text p {
	font-size: clamp(15px, 2.5vw, 18px);
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 20px;
}

.about-image {
	height: 400px;	
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.about-img-biz {
	background: url(../img/about-img.jpg) no-repeat bottom;
background-size: cover;
}
.about-img-philosophy {
	background: url(../img/proj_03.jpg) no-repeat bottom;
background-size: cover;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.stat-card {
	text-align: center;
	padding: 30px;
	background: rgba(255, 107, 107, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 107, 107, 0.2);
	transition: all 0.3s;
}

.stat-card:hover {
	background: rgba(255, 107, 107, 0.1);
	transform: translateY(-5px);
}

.stat-number {
	font-size: clamp(36px, 6vw, 48px);
	font-weight: 900;
	color: #ff6b6b;
	margin-bottom: 10px;
}

.stat-label {
	font-size: clamp(14px, 2vw, 16px);
	color: #aaa;
}

/* 오디션 안내 섹션 */
.audition-guide {
	padding: 100px 20px;
	background: #000;
}
.audition-cta-box {
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 111, 0.1) 100%);
	border: 2px solid rgba(255, 107, 107, 0.3);
	border-radius: 25px;
	padding: 60px;
	text-align: center;
	margin-bottom: 80px;
}

.audition-cta-box h3 {
	font-size: clamp(32px, 6vw, 48px);
	margin-bottom: 20px;
	color: #ff6b6b;
}

.audition-cta-box p {
	font-size: clamp(16px, 3vw, 20px);
	color: #ccc;
	margin-bottom: 30px;
	line-height: 1.8;
}
.guide-container {
	max-width: 1200px;
	margin: 0 auto;
}

.guide-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.guide-intro p {
	font-size: clamp(16px, 3vw, 20px);
	color: #ccc;
	line-height: 1.8;
	margin-bottom: 20px;
}

.process-timeline {
	position: relative;
	padding: 40px 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a6f 100%);
	transform: translateX(-50%);
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
	position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
	grid-column: 1;
	text-align: right;
}

.timeline-item:nth-child(even) .timeline-number {
	grid-column: 2;
	order: -1;
}

.timeline-content {
	padding: 30px;
	background: rgba(255, 107, 107, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 107, 107, 0.2);
}

.timeline-content h4 {
	font-size: clamp(20px, 4vw, 24px);
	color: #ff6b6b;
	margin-bottom: 15px;
}

.timeline-content p {
	font-size: clamp(14px, 2.5vw, 16px);
	color: #aaa;
	line-height: 1.6;
}

.timeline-number {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(40px, 6vw, 60px);
	font-weight: 900;
	color: #ff6b6b;
}

.requirements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.requirement-card {
	padding: 35px;
	background: rgba(255, 107, 107, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 107, 107, 0.2);
	transition: all 0.3s;
}

.requirement-card:hover {
	background: rgba(255, 107, 107, 0.1);
	border-color: #ff6b6b;
	transform: translateY(-5px);
}

.requirement-card h4 {
	font-size: clamp(18px, 3vw, 22px);
	color: #ff6b6b;
	margin-bottom: 15px;
}

.requirement-card ul {
	list-style: none;
}

.requirement-card li {
	font-size: clamp(14px, 2.5vw, 16px);
	color: #ccc;
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.requirement-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ff6b6b;
}

/* 개인정보처리방침 모달 */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: #1a1a1a;
	padding: 50px;
	border-radius: 25px;
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	border: 1px solid rgba(255, 107, 107, 0.3);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	cursor: pointer;
	color: #fff;
	transition: color 0.3s;
}

.modal-close:hover {
	color: #ff6b6b;
}

.modal-content h2 {
	font-size: clamp(28px, 5vw, 36px);
	margin-bottom: 30px;
	color: #ff6b6b;
}

.modal-content h3 {
	font-size: clamp(20px, 4vw, 24px);
	margin-top: 30px;
	margin-bottom: 15px;
	color: #fff;
}

.modal-content p {
	font-size: clamp(14px, 2.5vw, 16px);
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 20px;
}

.modal-content ul {
	margin-left: 20px;
	margin-bottom: 20px;
}

.modal-content li {
	font-size: clamp(14px, 2.5vw, 16px);
	color: #ccc;
	line-height: 1.8;
	margin-bottom: 10px;
}

/* 스크롤바 스타일 */
.modal-content::-webkit-scrollbar {
	width: 10px;
}

.modal-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
	background: #ff6b6b;
	border-radius: 10px;
}

/* 오디션 지원 폼 */
.application-form {
	max-width: 600px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #ff6b6b;
	font-weight: 600;
	font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 107, 107, 0.3);
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	transition: all 0.3s;
}

.form-group option {
	color: #fff;
	background-color: #2b1d1d;
	border: 1px solid rgba(255, 107, 107, 0.3);
	border-radius: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ff6b6b;
	background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 15px;
}

.form-checkbox input[type="checkbox"] {
	width: auto;
	cursor: pointer;
	margin-top: 4px;
}

.form-checkbox label {
	margin: 0;
	cursor: pointer;
	font-size: 14px;
	color: #ccc;
}

.form-buttons {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.form-buttons button {
	flex: 1;
	padding: 15px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-submit {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	color: #fff;
}

.btn-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

.btn-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-cancel {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.btn-cancel:hover {
	background: rgba(255, 255, 255, 0.15);
}

.form-note {
	color: #aaa;
	font-size: 13px;
	margin-top: 20px;
	line-height: 1.6;
	padding: 15px;
	background: rgba(255, 107, 107, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 107, 107, 0.2);
}

.btn {
	padding: 18px 45px;
	font-size: 18px;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	color: #fff;
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(255, 107, 107, 0.7);
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

.download-section {
	margin-bottom: 30px;
	padding: 25px;
	background: rgba(255, 107, 107, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 107, 107, 0.2);
}

.download-section h4 {
	color: #ff6b6b;
	margin-bottom: 10px;
	font-size: 18px;
}

.download-section p {
	color: #aaa;
	font-size: 14px;
	margin-bottom: 15px;
}

.download-links {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid rgba(255, 107, 107, 0.3);
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s;
}

.download-btn:hover {
	background: rgba(255, 107, 107, 0.2);
	border-color: #ff6b6b;
	transform: translateY(-2px);
}

.required {
	color: #ff6b6b;
}

/* 반응형 */
@media (max-width: 768px) {
	nav {
		padding: 20px 20px;
	}

	nav.scrolled {
		padding: 15px 20px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 75%;
		max-width: 320px;
		background: rgba(0, 0, 0, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 100px 30px 30px;
		gap: 30px;
		transition: right 0.3s ease;
		box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
		align-items: flex-start;
	}

	.nav-links.active {
		right: 0;
	}

	.audition-btn {
		width: 100%;
		text-align: center;
	}

	.hero-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-button {
		width: 100%;
	}

	.artists-grid {
		grid-template-columns: 1fr;
	}

	.video-grid {
		grid-template-columns: 1fr;
	}

	.audition-options {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

    .form-row {
		grid-template-columns: 1fr;
	}
	.timeline-item {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.timeline-line {
		display: none;
	}

	.timeline-item:nth-child(even) .timeline-content {
		text-align: left;
	}

	.modal-content {
		padding: 30px 20px;
		margin: 20px;
		max-height: 90vh;
	}

	.modal-close {
		top: 10px;
		right: 15px;
		font-size: 30px;
	}
	.form-checkbox input[type="checkbox"] {
		width: 26px;
		height: 26px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.artists-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.video-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

