/* 스타일 1: 모던 네온 (Modern Neon) */
:root {
    --primary-color: #4d79ff; /* Electric Blue */
    --secondary-color: #9d00ff; /* Neon Purple */
    --glow-color: rgba(77, 121, 255, 0.7);
    --bg-color: #0f0c29;
    --surface-color: #1c1642;
    --text-color: #e0e0e0;
    --text-muted-color: #a0a0a0;
    --border-color: #3d346b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans KR', sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: var(--primary-color); transition: all 0.3s ease; }
a:hover { color: #fff; text-shadow: 0 0 5px var(--glow-color); }
h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 700; }

/* 헤더 & 네비게이션 */
header { background-color: rgba(15, 12, 41, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-size: 28px; color: #fff; text-shadow: 0 0 8px var(--primary-color); }
.logo h1 i { color: var(--primary-color); }
.logo .highlight { color: var(--primary-color); }
nav ul { list-style: none; display: flex; gap: 30px; }
nav a { color: var(--text-muted-color); font-weight: 700; font-size: 16px; }
nav a.nav-contact { color: #fff; background-color: var(--primary-color); padding: 8px 18px; border-radius: 5px; box-shadow: 0 0 10px var(--glow-color); }
nav a.nav-contact:hover { transform: scale(1.05); }

/* 히어로 섹션 */
.hero { text-align: center; padding: 90px 0 70px; background: linear-gradient(rgba(15, 12, 41, 0.9), var(--bg-color)), url('https://www.transparenttextures.com/patterns/circuit-board.png'); }
.hero h2 { font-size: 44px; margin-bottom: 15px; color: #fff; }
.hero h2 span { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 15px var(--glow-color); }
.hero p { font-size: 18px; color: var(--text-muted-color); max-width: 600px; margin: 0 auto; }

/* 사이트 그리드 */
#sites-grid { padding: 60px 0; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.site-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.site-card:hover { transform: translateY(-12px); box-shadow: 0 0 25px var(--glow-color); border-color: var(--primary-color); }
.site-card img { width: 100%; height: auto; display: block; filter: brightness(1.1); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h3 { font-size: 20px; margin-bottom: 10px; color: #fff; }
.card-content p { color: var(--text-muted-color); font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.tags { margin-bottom: 20px; }
.tag { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-right: 8px; color: #fff; }
.tag.guaranteed { background-color: #27ae60; }
.tag.new { background-color: var(--secondary-color); }
.tag.event { background-color: var(--primary-color); }
.btn-go { display: block; width: 100%; text-align: center; padding: 12px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); color: #fff; font-weight: 900; border-radius: 5px; transition: all 0.2s ease; }
.btn-go:hover { transform: scale(1.03); box-shadow: 0 0 15px var(--glow-color); color: #fff; }

/* 배너 문의 섹션 */
#banner-inquiry { background: var(--surface-color); padding: 70px 0; text-align: center; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
#banner-inquiry h2 { font-size: 34px; margin-bottom: 15px; color: #fff; }
#banner-inquiry h2 i { color: var(--primary-color); margin-right: 15px; }
#banner-inquiry p { color: var(--text-muted-color); max-width: 600px; margin: 0 auto 30px; }
.contact-info { margin-bottom: 30px; }
.contact-info p { font-size: 18px; margin-bottom: 10px; }
.contact-info i { margin-right: 10px; color: var(--primary-color); }
.btn-contact { display: inline-block; padding: 15px 45px; font-size: 18px; font-weight: 700; color: #fff; background: linear-gradient(90deg, var(--secondary-color), var(--primary-color)); border-radius: 50px; transition: all 0.3s ease; }
.btn-contact:hover { transform: scale(1.05); box-shadow: 0 0 25px var(--glow-color); }

/* 푸터 */
footer { padding: 40px 0; text-align: center; background-color: #0c0c0c; }
footer p { font-size: 14px; color: #666; margin-bottom: 5px; }
@media (max-width: 768px) { header .container { flex-direction: column; gap: 20px; } nav ul { gap: 15px; flex-wrap: wrap; } .hero h2 { font-size: 34px; } .grid-container { grid-template-columns: 1fr; } }