:root {
	--bg: #070b18;
	--bg-2: #0b1020;
	--card: rgba(17, 24, 39, 0.82);
	--card-soft: rgba(23, 32, 51, 0.85);
	--line: rgba(255,255,255,.1);
	--text: #f8fafc;
	--muted: #94a3b8;
	--cyan: #00d1ff;
	--purple: #7c4dff;
	--green: #22c55e;
	--yellow: #f59e0b;
	--danger: #fb7185;
	--shadow: 0 30px 80px rgba(0,0,0,.35);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
	background:
	radial-gradient(circle at top left, rgba(0,209,255,.22), transparent 32%),
	radial-gradient(circle at top right, rgba(124,77,255,.20), transparent 30%),
	radial-gradient(circle at 50% 20%, rgba(34,197,94,.08), transparent 28%),
	var(--bg);
	color: var(--text);
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
	linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
	linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 80%);
	z-index: -1;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.site-wrap {
	width: min(1240px, calc(100% - 32px));
	margin: 0 auto;
}

.header {
	position: sticky;
	top: 16px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	padding: 14px 18px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(7, 11, 24, .72);
	backdrop-filter: blur(18px);
	box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	letter-spacing: .08em;
	white-space: nowrap;
}

.logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	box-shadow: 0 0 26px rgba(0,209,255,.45);
	position: relative;
}

.logo-mark::after {
	content: "";
	position: absolute;
	inset: 9px;
	border: 2px solid rgba(255,255,255,.78);
	border-radius: 50%;
	border-left-color: transparent;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.nav a {
	transition: color .2s ease;
}

.nav a:hover {
	color: var(--text);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-btn,
.ghost-btn,
.primary-btn,
.search-box button {
	border: 0;
	cursor: pointer;
	font-family: inherit;
}

.header-btn {
	border-radius: 999px;
	padding: 10px 18px;
	color: #001018;
	background: linear-gradient(135deg, var(--cyan), var(--green));
	font-weight: 900;
	white-space: nowrap;
}

.menu-btn {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
	color: var(--text);
	font-size: 22px;
	cursor: pointer;
}

.mobile-nav {
	display: none;
	margin-top: 10px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: rgba(7, 11, 24, .92);
}

.mobile-nav a {
	display: block;
	padding: 12px;
	color: var(--muted);
	font-weight: 800;
}

.mobile-nav.is-open {
	display: block;
}

.hero {
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	align-items: center;
	gap: 50px;
	padding: 0px 0px 80px 0px;
}

.eyebrow,
.section-head span {
	color: var(--cyan);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .18em;
}

.hero h1 {
	margin: 18px 0;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 1.05;
	letter-spacing: -0.06em;
}

.hero p {
	max-width: 600px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.75;
	margin: 0;
	word-break: keep-all;
}

.search-box {
	display: flex;
	margin-top: 32px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255,255,255,.06);
	box-shadow: 0 16px 50px rgba(0,0,0,.2);
}

.search-box input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	padding: 0 18px;
	color: var(--text);
	background: transparent;
	font-size: 16px;
}

.search-box input::placeholder {
	color: rgba(148,163,184,.78);
}

.search-box button {
	border-radius: 999px;
	padding: 14px 24px;
	background: var(--cyan);
	color: #001018;
	font-weight: 900;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.primary-btn,
.ghost-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 900;
}

.primary-btn {
	color: #001018;
	background: linear-gradient(135deg, var(--cyan), var(--green));
}

.ghost-btn {
	border: 1px solid var(--line);
	color: var(--muted);
	background: rgba(255,255,255,.04);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 30px;
	max-width: 620px;
}

.stat-box {
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: rgba(255,255,255,.045);
}

.stat-box b {
	display: block;
	font-size: 22px;
}

.stat-box span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px;
}

.hero-visual {
	min-height: 460px;
	border: 1px solid var(--line);
	border-radius: 38px;
	background:
	linear-gradient(135deg, rgba(0,209,255,.18), rgba(124,77,255,.16)),
	rgba(255,255,255,.04);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,209,255,.36), transparent 62%);
	filter: blur(12px);
	animation: pulseGlow 4.5s ease-in-out infinite;
}

.hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
	linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
	linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 38px 38px;
	opacity: .32;
	transform: perspective(500px) rotateX(60deg) scale(1.4) translateY(90px);
}

@keyframes pulseGlow {
	0%, 100% { transform: scale(1); opacity: .8; }
	50% { transform: scale(1.08); opacity: 1; }
}

.orbit {
	position: absolute;
	inset: 76px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 50%;
	z-index: 2;
	animation: spin 18s linear infinite;
}

.orbit::before,
.orbit::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 22px rgba(0,209,255,.9);
}

.orbit::before { left: 8%; top: 18%; }
.orbit::after { right: 12%; bottom: 16%; background: var(--green); }

@keyframes spin {
	to { transform: rotate(360deg); }
}

.hologram-card {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	z-index: 3;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: rgba(7,11,24,.24);
	backdrop-filter: blur(18px);
}

.status-dot {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	font-size: 13px;
	font-weight: 900;
}

.status-dot::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 16px rgba(34,197,94,.9);
}

.hologram-card strong {
	display: block;
	margin-top: 10px;
	font-size: 28px;
	letter-spacing: -0.04em;
}

.hologram-card p {
	margin-top: 8px;
	color: var(--muted);
	line-height: 1.6;
}

.ticker {
	display: flex;
	gap: 28px;
	margin: 10px 0 20px;
	padding: 12px 0;
	overflow: hidden;
	color: rgba(248,250,252,.72);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	white-space: nowrap;
}

.ticker-track {
	display: flex;
	gap: 28px;
	min-width: max-content;
	animation: tickerMove 24s linear infinite;
	animation-direction: alternate;
    animation-iteration-count: infinite;
}

.ticker span {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .12em;
}

@keyframes tickerMove {
	from { transform: translateX(5%); }
	to { transform: translateX(-20%); }
}

.section {
	padding: 92px 0;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.section-head h2 {
	margin: 12px 0 0;
	font-size: clamp(30px, 4vw, 44px);
	letter-spacing: -0.05em;
}

.section-head p {
	max-width: 620px;
	margin: 12px 0 0;
	color: var(--muted);
	line-height: 1.7;
	word-break: keep-all;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.site-card {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: var(--card);
	transition: .25s ease;
	position: relative;
	overflow: hidden;
}

.site-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	background: linear-gradient(135deg, rgba(0,209,255,.18), transparent 45%, rgba(124,77,255,.18));
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}

.site-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0,209,255,.45);
	box-shadow: 0 22px 60px rgba(0,209,255,.10);
}

.site-card:hover::before {
	opacity: 1;
}

.thumb {
	height: 160px;
	border-radius: 24px;
	background:
	radial-gradient(circle at 25% 20%, rgba(0,209,255,.44), transparent 28%),
	radial-gradient(circle at 80% 60%, rgba(124,77,255,.45), transparent 30%),
	linear-gradient(135deg, rgba(0,209,255,.16), rgba(124,77,255,.16)),
	#111827;
	position: relative;
	overflow: hidden;
}

.thumb::after {
	content: "";
	position: absolute;
	inset: 28px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 18px;
	transform: skewY(-6deg);
}

.site-card h3 {
	margin: 18px 0 8px;
	font-size: 21px;
	position: relative;
}

.site-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
	position: relative;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	position: relative;
}

.online { color: var(--green); }
.updated { color: var(--cyan); }
.warning { color: var(--yellow); }

.update-layout {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 22px;
	align-items: stretch;
}

.update-panel,
.benefit-card,
.compare-card {
	border: 1px solid var(--line);
	border-radius: 30px;
	background: var(--card-soft);
	box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.update-panel {
	padding: 26px;
}

.update-panel h3 {
	margin: 0 0 12px;
	font-size: 26px;
}

.update-panel p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
	word-break: keep-all;
}

.live-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	padding: 8px 12px;
	border: 1px solid rgba(34,197,94,.26);
	border-radius: 999px;
	color: var(--green);
	background: rgba(34,197,94,.08);
	font-size: 12px;
	font-weight: 900;
}

.live-badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
	0%, 100% { opacity: .35; }
	50% { opacity: 1; }
}

.update-feed {
	border: 1px solid var(--line);
	border-radius: 30px;
	background: var(--card-soft);
	overflow: hidden;
}

.feed-item {
	display: grid;
	grid-template-columns: 140px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--line);
}

.feed-item:last-child {
	border-bottom: 0;
}

.feed-item b {
	color: var(--cyan);
}

.feed-item span {
	color: var(--text);
	font-size: 0.8em;
}

.feed-item em {
	font-style: normal;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.category-grid a {
	display: flex;
	min-height: 126px;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: rgba(255,255,255,.05);
	font-weight: 900;
	transition: .22s ease;
}

.category-grid a:hover {
	transform: translateY(-4px);
	border-color: rgba(0,209,255,.5);
	background: rgba(0,209,255,.08);
}

.category-grid small {
	display: block;
	color: var(--muted);
	font-weight: 700;
	margin-top: 10px;
	line-height: 1.5;
}

.icon {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(0,209,255,.18), rgba(124,77,255,.22));
	border: 1px solid var(--line);
	font-size: 20px;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.benefit-card {
	padding: 24px;
}

.benefit-card h3 {
	margin: 18px 0 10px;
	font-size: 20px;
}

.benefit-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
	word-break: keep-all;
}
.benefit-grid-3 {
	grid-template-columns:repeat(3, 1fr);
}
.benefit-grid-3 article.benefit-card div {
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
.benefit-grid-3 article.benefit-card div h3 {
	margin:0px 0px 0px 10px;
}
.benefit-grid-3 article.benefit-card p {
	margin-top:15px;
}
.compare-card {
	padding: 8px;
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 720px;
}

th,
td {
	padding: 20px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	line-height: 1.6;
}

th {
	color: var(--cyan);
	font-size: 14px;
	letter-spacing: .08em;
}

td {
	color: var(--muted);
}

td:first-child {
	color: var(--text);
	font-weight: 900;
}

tr:last-child td {
	border-bottom: 0;
}

.faq-list {
	display: grid;
	gap: 14px;
}

details {
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 20px;
	background: var(--card);
}

summary {
	cursor: pointer;
	font-weight: 900;
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: "+";
	float: right;
	color: var(--cyan);
}

details[open] summary::after {
	content: "-";
}

details p {
	margin: 14px 0 0;
	color: var(--muted);
	line-height: 1.8;
	word-break: keep-all;
}

.footer {
	margin: 70px 0 32px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: rgba(255,255,255,.04);
	color: var(--muted);
	line-height: 1.7;
}

.footer strong {
	display: block;
	margin-bottom: 8px;
	color: var(--text);
	letter-spacing: .08em;
}

.bottom-nav {
	display: none;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 980px) {
	.site-wrap {
	width: min(100% - 28px, 760px);
	}

	.nav,
	.header-btn {
	display: none;
	}

	.menu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	}

	.hero {
	grid-template-columns: 1fr;
	min-height: auto;
	padding: 0px 0px 80px 0px;
	}

	.hero h1 {
	font-size: 44px;
	}

	.hero p {
	font-size: 16px;
	}
	.hologram-card p {
		font-size:14px;
	}
	.hero-stats {
	grid-template-columns: 1fr;
	}

	.hero-visual {
	min-height: 360px;
	}

	.section-head {
	display: block;
	}

	.card-grid, .update-layout, .benefit-grid {
		grid-template-columns:1fr;
	}
	.benefit-grid-3 {
		grid-template-columns:1fr;
	}
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section {
	padding: 64px 0;
	}

	.bottom-nav {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 60;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(7, 11, 24, .86);
	backdrop-filter: blur(18px);
	box-shadow: 0 16px 50px rgba(0,0,0,.35);
	}

	.bottom-nav a {
	padding: 10px 4px;
	border-radius: 16px;
	text-align: center;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	}

	.bottom-nav a:hover {
	color: var(--text);
	background: rgba(255,255,255,.07);
	}

	body {
	padding-bottom: 82px;
	}
}

@media (max-width: 560px) {
	.header {
	top: 10px;
	border-radius: 20px;
	}

	.logo {
	font-size: 13px;
	}

	.logo-mark {
	width: 30px;
	height: 30px;
	}

	.hero h1 {
	font-size: 38px;
	}

	.search-box {
	display: grid;
	gap: 8px;
	border-radius: 24px;
	}

	.search-box input {
	min-height: 46px;
	}

	.search-box button {
	width: 100%;
	}

	.hero-actions {
	display: grid;
	grid-template-columns: 1fr;
	}

	.hero-visual {
	min-height: 310px;
	border-radius: 30px;
	}

	.hologram-card {
	left: 22px;
	right: 22px;
	bottom: 22px;
	padding: 22px;
	}

	.hologram-card strong {
	font-size: 22px;
	}

	.category-grid {
	grid-template-columns: 1fr;
	}

	.feed-item {
	grid-template-columns: 64px 1fr;
	}

	.feed-item em {
	grid-column: 2;
	}
}

/* 워드프레스 테마 기본 CSS 수정 */
.inside-header {
	background:rgb(7 11 24 / 44%) !important;
    box-shadow:0 18px 50px rgba(0, 0, 0, .25) !important;
}