Spaces:
Running
Running
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>๋ ๊ฒ ๋ง์คํฐ ํด๋์ค | ๋ ํธ๋ก ๊ฒ์ ๋ณด์กด ๊ธฐ์ </title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+KR:wght@300;400;500;700&display=swap" rel="stylesheet"> | |
<style> | |
:root { | |
--neon-blue: #00f0ff; | |
--neon-pink: #ff00f5; | |
--deep-purple: #2a0057; | |
--neon-green: #00ff57; | |
--dark-bg: #0a0a12; | |
} | |
body { | |
font-family: 'Noto Sans KR', sans-serif; | |
background-color: var(--dark-bg); | |
color: white; | |
overflow-x: hidden; | |
} | |
.pixel-font { | |
font-family: 'DotGothic16', sans-serif; | |
letter-spacing: 1px; | |
} | |
.logo-text { | |
background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue)); | |
-webkit-background-clip: text; | |
background-clip: text; | |
color: transparent; | |
text-shadow: 0 0 15px rgba(255, 0, 245, 0.5); | |
} | |
.neon-border { | |
border: 2px solid var(--neon-blue); | |
box-shadow: 0 0 15px var(--neon-blue), | |
inset 0 0 10px var(--neon-blue); | |
} | |
.glow-btn { | |
background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue)); | |
box-shadow: 0 0 15px var(--neon-pink); | |
transition: all 0.3s ease; | |
position: relative; | |
overflow: hidden; | |
} | |
.glow-btn:hover { | |
transform: translateY(-3px); | |
box-shadow: 0 0 25px var(--neon-pink); | |
} | |
.glow-btn::after { | |
content: ''; | |
position: absolute; | |
top: -50%; | |
left: -50%; | |
width: 200%; | |
height: 200%; | |
background: linear-gradient( | |
to bottom right, | |
rgba(255,255,255,0.3) 0%, | |
rgba(255,255,255,0) 50% | |
); | |
transform: rotate(30deg); | |
} | |
.glow-btn:hover::after { | |
animation: shine 1.5s infinite; | |
} | |
@keyframes shine { | |
0% { transform: rotate(30deg) translate(-30%, -30%); } | |
100% { transform: rotate(30deg) translate(30%, 30%); } | |
} | |
.hero-section { | |
background: radial-gradient( | |
circle at 70% 30%, | |
var(--deep-purple) 0%, | |
var(--dark-bg) 60% | |
); | |
} | |
.pixel-corners { | |
clip-path: polygon( | |
0% 5px, 5px 5px, 5px 0%, calc(100% - 5px) 0%, | |
calc(100% - 5px) 5px, 100% 5px, 100% calc(100% - 5px), | |
calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%, | |
5px 100%, 5px calc(100% - 5px), 0% calc(100% - 5px) | |
); | |
} | |
.pixel-card { | |
background: rgba(20, 20, 30, 0.8); | |
backdrop-filter: blur(10px); | |
border: 1px solid rgba(0, 240, 255, 0.2); | |
transition: all 0.3s ease; | |
} | |
.pixel-card:hover { | |
transform: translateY(-5px); | |
border-color: var(--neon-blue); | |
box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1); | |
} | |
.hover-glow:hover { | |
text-shadow: 0 0 10px var(--neon-blue); | |
} | |
.form-input { | |
background: rgba(10, 10, 20, 0.8); | |
border: 1px solid rgba(0, 240, 255, 0.3); | |
transition: all 0.3s ease; | |
} | |
.form-input:focus { | |
outline: none; | |
border-color: var(--neon-blue); | |
box-shadow: 0 0 10px var(--neon-blue); | |
} | |
/* ๋ชจ๋ฐ์ผ ๋ฉ๋ด */ | |
.mobile-menu { | |
transform: translateX(100%); | |
transition: transform 0.3s ease; | |
background: rgba(10, 10, 20, 0.95); | |
backdrop-filter: blur(10px); | |
} | |
.mobile-menu.open { | |
transform: translateX(0); | |
} | |
/* ํ์ด๋จธ */ | |
.timer-block { | |
background: rgba(255, 0, 245, 0.1); | |
border: 1px solid var(--neon-pink); | |
} | |
/* ๋ฐ์คํฌํ ์ฌ์ด๋ CTA */ | |
.side-cta { | |
right: -180px; | |
transition: right 0.3s ease; | |
} | |
.side-cta:hover { | |
right: -10px; | |
} | |
@media (max-width: 768px) { | |
.pixel-font { | |
font-size: 1.5rem; | |
} | |
.hero-heading { | |
font-size: 2.5rem; | |
line-height: 1.2; | |
} | |
.side-cta { | |
display: none; | |
} | |
} | |
/* Game Controller Logo */ | |
.game-controller-logo { | |
display: inline-flex; | |
align-items: center; | |
justify-content: center; | |
width: 40px; | |
height: 40px; | |
border-radius: 50%; | |
background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue)); | |
margin-right: 10px; | |
position: relative; | |
overflow: hidden; | |
} | |
.game-controller-logo i { | |
color: #000; | |
font-size: 20px; | |
z-index: 2; | |
} | |
.game-controller-logo::after { | |
content: ''; | |
position: absolute; | |
top: -50%; | |
left: -50%; | |
width: 200%; | |
height: 200%; | |
background: linear-gradient( | |
to bottom right, | |
rgba(255,255,255,0.3) 0%, | |
rgba(255,255,255,0) 50% | |
); | |
transform: rotate(30deg); | |
} | |
</style> | |
</head> | |
<body class="min-h-screen"> | |
<!-- ์๋จ ์๋ฆผ ๋ฐฐ๋ --> | |
<div class="bg-gradient-to-r from-purple-900 to-pink-800 text-white text-center py-2 px-4 flex items-center justify-center sticky top-0 z-50"> | |
<span class="font-bold mr-2 animate-pulse">๐ฎ 30๋ช ํ์ !</span> | |
<span>์ง๊ธ ๋ฑ๋ก์ ํฌ๊ท ๊ฒ์ ์๋ฎฌ๋ ์ด์ ๊ฐ์ด๋๋ถ ๋ฌด๋ฃ ์ฆ์ </span> | |
</div> | |
<!-- ๋ค๋น๊ฒ์ด์ --> | |
<nav class="bg-black bg-opacity-80 backdrop-blur-md sticky top-8 z-40 border-b border-purple-900"> | |
<div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
<div class="flex items-center"> | |
<div class="game-controller-logo"> | |
<i class="fas fa-gamepad"></i> | |
</div> | |
<div class="pixel-font logo-text text-3xl">๋ ๊ฒ</div> | |
<div class="ml-4 hidden md:flex space-x-8"> | |
<a href="#about" class="text-white hover:text-cyan-400 transition hover-glow">์๊ฐ</a> | |
<a href="#curriculum" class="text-white hover:text-cyan-400 transition hover-glow">์ปค๋ฆฌํ๋ผ</a> | |
<a href="#instructor" class="text-white hover:text-cyan-400 transition hover-glow">๊ฐ์ฌ์ง</a> | |
<a href="#pricing" class="text-white hover:text-cyan-400 transition hover-glow">๊ฐ๊ฒฉ</a> | |
</div> | |
</div> | |
<div class="hidden md:block"> | |
<button class="glow-btn text-black font-bold py-2 px-6 rounded-full"> | |
๋ฑ๋กํ๊ธฐ <i class="fas fa-arrow-right ml-2"></i> | |
</button> | |
</div> | |
<button id="mobile-menu-button" class="md:hidden text-white focus:outline-none"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
<!-- ๋ชจ๋ฐ์ผ ๋ฉ๋ด --> | |
<div id="mobile-menu" class="mobile-menu fixed inset-y-0 right-0 w-64 p-6 z-50"> | |
<div class="flex justify-between items-center mb-8"> | |
<div class="game-controller-logo"> | |
<i class="fas fa-gamepad"></i> | |
</div> | |
<div class="pixel-font logo-text text-2xl">๋ ๊ฒ</div> | |
<button id="close-menu" class="text-white focus:outline-none"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
</div> | |
<div class="flex flex-col space-y-6"> | |
<a href="#about" class="text-white text-lg hover:text-cyan-400 transition">์๊ฐ</a> | |
<a href="#curriculum" class="text-white text-lg hover:text-cyan-400 transition">์ปค๋ฆฌํ๋ผ</a> | |
<a href="#instructor" class="text-white text-lg hover:text-cyan-400 transition">๊ฐ์ฌ์ง</a> | |
<a href="#pricing" class="text-white text-lg hover:text-cyan-400 transition"> ๊ฐ๊ฒฉ</a> | |
<button class="glow-btn text-black font-bold py-3 px-6 rounded-full mt-4"> | |
๋ฑ๋กํ๊ธฐ <i class="fas fa-arrow-right ml-2"></i> | |
</button> | |
</div> | |
</div> | |
</nav> | |
<!-- ํ์ด๋ก ์น์ --> | |
<section class="hero-section min-h-screen flex items-center relative overflow-hidden"> | |
<div class="absolute inset-0 opacity-20" style="background-image: url('https://grainy-gradients.vercel.app/noise.svg');"></div> | |
<!-- ๋ฐฐ๊ฒฝ ์์ --> | |
<div class="absolute -bottom-20 -left-40 w-80 h-80 bg-purple-900 rounded-full filter blur-3xl opacity-40"></div> | |
<div class="absolute -top-20 -right-40 w-80 h-80 bg-cyan-900 rounded-full filter blur-3xl opacity-40"></div> | |
<div class="container mx-auto px-4 z-10 py-20"> | |
<div class="flex flex-col lg:flex-row items-center gap-12"> | |
<div class="lg:w-1/2"> | |
<div class="inline-block mb-6 px-4 py-2 bg-black bg-opacity-50 rounded-full border border-cyan-400"> | |
<span class="text-cyan-400 text-sm font-bold">30๋ช ํ์ ํน๋ณ ํํ</span> | |
</div> | |
<h1 class="pixel-font text-4xl md:text-5xl font-bold mb-6 text-white hero-heading"> | |
<span class="logo-text">๋ ํธ๋ก ๊ฒ์</span><br> | |
<span class="text-cyan-400">๋์งํธ ๋ณด์กด์ ๋ชจ๋ ๊ฒ</span> | |
</h1> | |
<p class="text-lg md:text-xl text-gray-300 mb-8 leading-relaxed"> | |
์ ํ์ฅ๊ณผ ํจ๊ป 30๋ ๋ ๊ฒ์๋ค์ ํ๋ ๊ธฐ์ ๋ก ๋ณด์กดํ๊ณ ,<br> ์ด๋์๋ ์ฆ๊ธธ ์ ์๋ | |
์ค์ฉ์ ์ธ ์ ํ ๊ธฐ์ ์ ๋จ 6์ฃผ ๋ง์ ๋ง์คํฐํ์ธ์. | |
</p> | |
<!-- ํ์ด๋จธ --> | |
<div class="mb-8"> | |
<div class="text-gray-400 mb-2">์ผ๋ฆฌ๋ฒ๋ ํ ์ธ ์ข ๋ฃ๊น์ง:</div> | |
<div class="flex gap-2"> | |
<div class="timer-block px-4 py-2 rounded"> | |
<div id="hours" class="text-2xl font-bold text-pink-500">03</div> | |
<div class="text-xs text-gray-400">์๊ฐ</div> | |
</div> | |
<div class="timer-block px-4 py-2 rounded"> | |
<div id="minutes" class="text-2xl font-bold text-pink-500">00</div> | |
<div class="text-xs text-gray-400">๋ถ</div> | |
</div> | |
<div class="timer-block px-4 py-2 rounded"> | |
<div id="seconds" class="text-2xl font-bold text-pink-500">00</div> | |
<div class="text-xs text-gray-400">์ด</div> | |
</div> | |
</div> | |
</div> | |
<!-- ์ด๋ฉ์ผ ์์ง ํผ --> | |
<div class="max-w-md"> | |
<form id="lead-form" class="mb-4"> | |
<div class="flex flex-col sm:flex-row gap-2"> | |
<input type="email" required placeholder="์ด๋ฉ์ผ ์ฃผ์๋ฅผ ์ ๋ ฅํ์ธ์" | |
class="form-input flex-grow px-4 py-3 rounded-full text-white"> | |
<button type="submit" class="glow-btn text-black font-bold px-6 py-3 rounded-full whitespace-nowrap"> | |
๋ฌด๋ฃ ๊ฐ์ด๋ ๋ฐ๊ธฐ | |
</button> | |
</div> | |
</form> | |
<p class="text-xs text-gray-500">๋ฑ๋ก ์ ๋ฌด๋ฃ ๊ฐ์ ์ํ๊ณผ ์ฒดํฌ๋ฆฌ์คํธ๋ฅผ ๋ณด๋ด๋๋ฆฝ๋๋ค.</p> | |
</div> | |
</div> | |
<div class="lg:w-1/2 relative"> | |
<div class="pixel-card rounded-2xl overflow-hidden border border-cyan-400/30 shadow-xl shadow-cyan-400/10"> | |
<img src="https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="๋ ํธ๋ก ๊ฒ์ ์ฝ์" | |
class="w-full h-auto object-cover"> | |
<div class="absolute inset-0 flex items-center justify-center"> | |
<button class="w-16 h-16 bg-pink-500 rounded-full flex items-center justify-center shadow-lg hover:scale-110 transition"> | |
<i class="fas fa-play text-white text-xl"></i> | |
</button> | |
</div> | |
</div> | |
<!-- ํฝ์ ์์ --> | |
<div class="absolute -top-5 -left-5 w-12 h-12 bg-cyan-400 pixel-corners z-10"></div> | |
<div class="absolute -bottom-5 -right-5 w-16 h-16 bg-pink-500 pixel-corners z-10"></div> | |
</div> | |
</div> | |
</div> | |
<!-- ์๋จ ์ด๋ ๋ฒํผ --> | |
<a href="#" class="fixed bottom-8 right-8 w-12 h-12 bg-black bg-opacity-70 border border-cyan-400 rounded-full flex items-center justify-center text-cyan-400 z-40 hover:bg-cyan-400 hover:text-black transition"> | |
<i class="fas fa-arrow-up"></i> | |
</a> | |
</section> | |
<!-- ๋ฌธ์ ํด๊ฒฐ ์น์ --> | |
<section id="about" class="py-20 bg-gradient-to-b from-black to-gray-900 relative"> | |
<div class="absolute inset-0 opacity-10" style="background-image: url('https://grainy-gradients.vercel.app/noise.svg');"></div> | |
<div class="container mx-auto px-4 relative"> | |
<div class="text-center mb-16"> | |
<h2 class="pixel-font text-3xl md:text-4xl mb-6 text-cyan-400"> | |
๋ ํธ๋ก ๊ฒ์ ์ ํธ๊ฐ๋ผ๋ฉด<br>์ด๋ฐ ๋ฌธ์ ๋ฅผ ๊ฒช์ด๋ณด์ จ์ฃ ? | |
</h2> | |
<p class="text-lg text-gray-400 max-w-2xl mx-auto"> | |
์นดํธ๋ฆฌ์ง๊ฐ ๋ ธํํ๋๋ฉด์ ์์คํ ์ถ์ต์ด ์ฌ๋ผ์ง๊น ๋ด ๊ฑฑ์ ์ด์ ๊ฐ์? | |
์ ํฌ๊ฐ ๋ชจ๋ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํด๋๋ฆฝ๋๋ค. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
<!-- ์นด๋ 1 --> | |
<div class="pixel-card p-6 rounded-xl"> | |
<div class="text-pink-500 text-3xl mb-4"> | |
<i class="fas fa-microchip"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-4">๊ธฐ์ ์ ๋ณต์ก์ฑ</h3> | |
<p class="text-gray-400 mb-4"> | |
๋ก์ ํ๋์จ์ด์์ ๋ฐ์ดํฐ๋ฅผ ์ถ์ถํ๋ ๊ณผ์ ์ด ๋๋ฌด ๋ณต์กํ๊ณ ์ด๋ ต์ต๋๋ค. | |
</p> | |
<div class="h-1 bg-gradient-to-r from-pink-500 to-transparent rounded-full mb-4"></div> | |
<div class="text-sm text-cyan-400">"๋์ ํ ํผ์ ํ๊ธฐ ํ๋ค์์ด์"</div> | |
</div> | |
<!-- ์นด๋ 2 --> | |
<div class="pixel-card p-6 rounded-xl"> | |
<div class="text-cyan-400 text-3xl mb-4"> | |
<i class="fas fa-unlink"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-4">ํธํ์ฑ ๋ฌธ์ </h3> | |
<p class="text-gray-400 mb-4"> | |
ํ๋ ๊ธฐ๊ธฐ์์ ์ด๋ป๊ฒ ์คํํด์ผ ํ ์ง ๋ชฐ๋ผ์ ํฌ๊ธฐํ ์ ์ด ๋ง์ต๋๋ค. | |
</p> | |
<div class="h-1 bg-gradient-to-r from-cyan-400 to-transparent rounded-full mb-4"></div> | |
<div class="text-sm text-pink-500">"์ ์ปดํจํฐ์์ ์ ๋์๊ฐ์ ๋๊ฐํ์ด์"</div> | |
</div> | |
<!-- ์นด๋ 3 --> | |
<div class="pixel-card p-6 rounded-xl"> | |
<div class="text-yellow-400 text-3xl mb-4"> | |
<i class="fas fa-balance-scale"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-4">๋ฒ์ ์ฐ๋ ค</h3> | |
<p class="text-gray-400 mb-4"> | |
๊ฒ์ ๋ฐ์ดํฐ๋ฅผ ๋ณด์กดํ๊ณ ๊ณต์ ํ๋๊ฒ ๋ฒ์ ์ผ๋ก ๋ฌธ์ ๊ฐ ๋ ๊น ๋ด ๊ฑฑ์ ๋ฉ๋๋ค. | |
</p> | |
<div class="h-1 bg-gradient-to-r from-yellow-400 to-transparent rounded-full mb-4"></div> | |
<div class="text-sm text-cyan-400">"๋ฒ์ ๋ฌธ์ ๊ฐ ์๊ธธ๊น ํญ์ ๋ถ์ํ์ด์"</div> | |
</div> | |
<!-- ์นด๋ 4 --> | |
<div class="pixel-card p-6 rounded-xl"> | |
<div class="text-green-400 text-3xl mb-4"> | |
<i class="fas fa-share-alt"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-4">๊ณต์ ์ด๋ ค์</h3> | |
<p class="text-gray-400 mb-4"> | |
์์คํ ์ปฌ๋ ์ ์ ๋ค๋ฅธ ํฌ๋ค๊ณผ ์์ ํ๊ฒ ๊ณต์ ํ ๋ฐฉ๋ฒ์ด ๋ง๋ ์น ์์ต๋๋ค. | |
</p> | |
<div class="h-1 bg-gradient-to-r from-green-400 to-transparent rounded-full mb-4"></div> | |
<div class="text-sm text-pink-500">"์ ๋ณด๋ฌผ์ ๋๊ตฌ์ ๋๋ ์ ์์์ด์"</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- ํด๊ฒฐ์ฑ ์น์ --> | |
<section class="py-20 relative" style="background-color: #0f0f1a;"> | |
<div class="absolute inset-0 opacity-20" style="background-image: url('https://grainy-gradients.vercel.app/noise.svg');"></div> | |
<div class="container mx-auto px-4 relative"> | |
<div class="flex flex-col lg:flex-row items-center gap-12 mb-20"> | |
<div class="lg:w-1/2"> | |
<h2 class="pixel-font text-3xl md:text-4xl mb-6 text-pink-500"> | |
๋ ๊ฒ ๋ง์คํฐ ํด๋์ค๋ก<br>์๋ฒฝํ ํด๊ฒฐ์ฑ ์ ์ป์ผ์ธ์ | |
</h2> | |
<p class="text-lg text-gray-300 mb-8 leading-relaxed"> | |
๋จ์ํ ์ด๋ก ๋ง์ด ์๋, ์ค์ ๋ก ์ ์ฉ ๊ฐ๋ฅํ ์ค์ฉ์ ์ธ ๊ธฐ์ ์ ๋จ๊ณ๋ณ๋ก ๋ฐฐ์๋๋ค. | |
๋ณต์กํ ๊ธฐ์ ์ ์ฝ๊ฒ ์ค๋ช ํ์ฌ ์ด๋ณด์๋ ์ฝ๊ฒ ๋ฐ๋ผํ ์ ์์ต๋๋ค. | |
</p> | |
<div class="space-y-4 mb-8"> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-cyan-400 rounded-full flex items-center justify-center mr-4 flex-shrink-0"> | |
<i class="fas fa-check text-black"></i> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">๊ธฐ์ ์ ์ฅ๋ฒฝ ์๋ ์ฌ์ด ๋ฐฉ๋ฒ</h4> | |
<p class="text-gray-400">์ด๋ณด์๋ ์ดํดํ ์ ์๋ ๋ช ํํ ๊ฐ์ด๋</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-cyan-400 rounded-full flex items-center justify-center mr-4 flex-shrink-0"> | |
<i class="fas fa-check text-black"></i> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">๋ชจ๋ ๊ธฐ๊ธฐ ํธํ์ฑ ๋ณด์ฅ</h4> | |
<p class="text-gray-400">PC, ๋ชจ๋ฐ์ผ, ๋ชจ๋ ์ฝ์์์ ์๋</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-cyan-400 rounded-full flex items-center justify-center mr-4 flex-shrink-0"> | |
<i class="fas fa-check text-black"></i> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">๋ฒ์ ๋ฌธ์ ์๋ฒฝ ๊ฐ์ด๋</h4> | |
<p class="text-gray-400">ํฉ๋ฒ์ ์ธ ๋ฒ์์์์ ๋ณด์กด ๊ธฐ์ </p> | |
</div> | |
</div> | |
</div> | |
<button class="glow-btn text-black font-bold py-3 px-8 rounded-full flex items-center"> | |
์ปค๋ฆฌํ๋ผ ๋ณด๊ธฐ <i class="fas fa-arrow-down ml-2"></i> | |
</button> | |
</div> | |
<div class="lg:w-1/2 relative"> | |
<div class="pixel-card rounded-2xl overflow-hidden border border-pink-500/30 shadow-xl shadow-pink-500/10"> | |
<video poster="https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" class="w-full h-auto"> | |
<source src="#" type="video/mp4"> | |
</video> | |
</div> | |
</div> | |
</div> | |
<!-- ์ฑ๊ณต ์คํ ๋ฆฌ --> | |
<div class="bg-gradient-to-r from-purple-900/50 to-cyan-900/50 border border-cyan-400/20 rounded-2xl p-8 md:p-12 mt-12"> | |
<div class="flex flex-col md:flex-row items-center gap-8"> | |
<div class="md:w-1/4 flex justify-center"> | |
<img src="https://images.unsplash.com/photo-1603415526960-f7e0328c63b1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="์๊ฐ์" | |
class="w-32 h-32 rounded-full object-cover border-4 border-cyan-400"> | |
</div> | |
<div class="md:w-3/4 text-center md:text-left"> | |
<p class="text-lg italic text-white mb-4"> | |
"๋ ๊ฒ ๋ง์คํฐ ํด๋์ค๋ฅผ ํตํด 200๊ฐ๊ฐ ๋๋ ๊ฒ์ ์ฝ๋ ์ ์ ๋์งํธํํ ์ ์์์ต๋๋ค. | |
์ด์ ์ด๋์๋ ์ ์์คํ ์ถ์ต์ ์ฆ๊ธธ ์ ์์ด์. ์ ๋ง ๊ฐ์ฌํฉ๋๋ค!" | |
</p> | |
<div class="flex flex-col md:flex-row md:items-center justify-center md:justify-between"> | |
<div"> | |
<h4 class="font-bold text-cyan-400">๋ฐ๋ณด์กด</h4> | |
<p class="text-sm text-gray-400">300๊ฐ ์ด์์ ๋ ํธ๋ก ๊ฒ์ ์์ฅ</p> | |
</div> | |
<div class="flex mt-4 md:mt-0 justify-center"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<span class="ml-2 text-white">5.0</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- ์ปค๋ฆฌํ๋ผ ์น์ --> | |
<section id="curriculum" class="py-20 bg-black bg-opacity-60 relative"> | |
<div class="container mx-auto px-4 relative"> | |
<div class="text-center mb-16"> | |
<h2 class="pixel-font text-3xl md:text-4xl mb-6 text-pink-500"> | |
์ฒด๊ณ์ ์ธ 6์ฃผ ์ปค๋ฆฌํ๋ผ | |
</h2> | |
<p class="text-lg text-gray-400 max-w-2xl mx-auto"> | |
๋ ํธ๋ก ๊ฒ์ ๋ณด์กด๋ถํฐ ๊ณต์ ๊น์ง, ๋จ๊ณ๋ณ๋ก ์ฒด๊ณ์ ์ผ๋ก ๋ฐฐ์๋๋ค. | |
</p> | |
</div> | |
<div class="max-w-4xl mx-auto"> | |
<!-- ๋ชจ๋ 1 --> | |
<div class="pixel-card mb-6 rounded-xl overflow-hidden"> | |
<div class="flex items-center justify-between p-6 cursor-pointer module-toggle"> | |
<div class="flex items-center"> | |
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center mr-4 font-bold text-black">1</div> | |
<h3 class="text-xl font-bold">๊ธฐ์ด: ๋ ํธ๋ก ๊ฒ์ ๋ฐ์ดํฐ ๊ตฌ์กฐ ์ดํด</h3> | |
</div> | |
<i class="fas fa-chevron-down text-gray-400 transition-transform duration-300 module-arrow"></i> | |
</div> | |
<div class="accordion-content px-6 pb-6 hidden"> | |
<p class="text-gray-300 mb-4"> | |
๊ฒ์ ๋ฐ์ดํฐ๊ฐ ์ด๋ป๊ฒ ์ ์ฅ๋๊ณ ๊ตฌ์ฑ๋๋์ง ์ดํดํ๋ ๊ฒ์ด ๋ณด์กด์ ์ฒซ๊ฑธ์์ ๋๋ค. | |
</p> | |
<ul class="list-disc list-inside text-gray-400 space-y-2 pl-4"> | |
<li>๊ฒ์ ์นดํธ๋ฆฌ์ง์ ๋ฌผ๋ฆฌ์ ๊ตฌ์ฑ ๋ถ์</li> | |
<li>ROM๊ณผ ๋ฐ์ดํฐ ๊ตฌ์กฐ์ ์ดํด</li> | |
<li>๋ฐ์ดํฐ ์์ ์ง๋จ ๋ฐฉ๋ฒ</li> | |
<li>๋ณด์กด ๊ฐ์น ํ๋จ ๊ธฐ์ค</li> | |
</ul> | |
</div> | |
</div> | |
<!-- ๋ชจ๋ 2 --> | |
<div class="pixel-card mb-6 rounded-xl overflow-hidden"> | |
<div class="flex items-center justify-between p-6 cursor-pointer module-toggle"> | |
<div class="flex items-center"> | |
<div class="w-8 h-8 bg-pink-500 rounded-full flex items-center justify-center mr-4 font-bold text-black">2</div> | |
<h3 class="text-xl font-bold">๋ฐ์ดํฐ ์ถ์ถ: ํ๋์จ์ด & ์ํํธ์จ์ด</h3> | |
</div> | |
<i class="fas fa-chevron-down text-gray-400 transition-transform duration-300 module-arrow"></i> | |
</div> | |
<div class="accordion-content px-6 pb-6 hidden"> | |
<p class="text-gray-300 mb-4"> | |
์์ ํ๊ฒ ๊ฒ์ ๋ฐ์ดํฐ๋ฅผ ์ถ์ถํ๋ ๋ชจ๋ ๋ฐฉ๋ฒ์ ํ์ตํฉ๋๋ค. | |
</p> | |
<ul class="list-disc list-inside text-gray-400 space-y-2 pl-4"> | |
<li>ํ์ํ ์ฅ๋น ๋ฐ ๋๊ตฌ ์๊ฐ</li> | |
<li>ํ๋์จ์ด ์ฐ๊ฒฐ๊ณผ ์ค์ </li> | |
<li>์ถ์ถ ์ํํธ์จ์ด ์ฌ์ฉ ๋ฐฉ๋ฒ</li> | |
<li>๋ฐ์ดํฐ ๋ฌด๊ฒฐ์ฑ ๊ฒ์ฆ</li> | |
</ul> | |
</div> | |
</div> | |
<!-- ๋ชจ๋ 3 --> | |
<div class="pixel-card mb-6 rounded-xl overflow-hidden"> | |
<div class="flex items-center justify-between p-6 cursor-pointer module-toggle"> | |
<div class="flex items-center"> | |
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center mr-4 font-bold text-black">3</div> | |
<h3 class="text-xl font-bold">์๋ฎฌ๋ ์ด์ ํ๊ฒฝ ์ต์ ํ</h3> | |
</div> | |
<i class="fas fa-chevron-down text-gray-400 transition-transform duration-300 module-arrow"></i> | |
</div> | |
<div class="accordion-content px-6 pb-6 hidden"> | |
<p class="text-gray-300 mb-4"> | |
๋ค์ํ ๊ธฐ๊ธฐ์์ ์ต์ ์ ๊ฒ์ ํ๊ฒฝ์ ๊ตฌ์ถํ๋ ๋ฐฉ๋ฒ์ ๋ฐฐ์๋๋ค. | |
</p> | |
<ul class="list-disc list-inside text-gray-400 space-y-2 pl-4"> | |
<li>์ฃผ์ ์๋ฎฌ๋ ์ดํฐ ๋น๊ต</li> | |
<li>์ค์ ์ต์ ํ ๋ฐฉ๋ฒ</li> | |
<li>์ปจํธ๋กค๋ฌ ๋งคํ</li> | |
<li>ํ์ง ๊ฐ์ ๊ธฐ์ </li> | |
</ul> | |
</div> | |
</div> | |
<!-- ๋ชจ๋ 4 --> | |
<div class="pixel-card mb-6 rounded-xl overflow-hidden"> | |
<div class="flex items-center justify-between p-6 cursor-pointer module-toggle"> | |
<div class="flex items-center"> | |
<div class="w-8 h-8 bg-pink-500 rounded-full flex items-center justify-center mr-4 font-bold text-black">4</div> | |
<h3 class="text-xl font-bold">๋ฐ์ดํฐ ๊ด๋ฆฌ ๋ฐ ํ๋ ์ด์ </h3> | |
</div> | |
<i class="fas fa-chevron-down text-gray-400 transition-transform duration-300 module-arrow"></i> | |
</div> | |
<div class="accordion-content px-6 pb-6 hidden"> | |
<p class="text-gray-300 mb-4"> | |
์ถ์ถํ ๊ฒ์ ๋ฐ์ดํฐ๋ฅผ ์ฒด๊ณ์ ์ผ๋ก ๊ด๋ฆฌํ๊ณ ํธ์งํ๋ ๋ฐฉ๋ฒ์ ํ์ตํฉ๋๋ค. | |
</p> | |
<ul class="list-disc list-inside text-gray-400 space-y-2 pl-4"> | |
<li>๋ฉํ๋ฐ์ดํฐ ์ถ๊ฐ ๋ฐ ๊ด๋ฆฌ</li> | |
<li>์ฌ์ฉ์ ์ธํฐํ์ด์ค ์ปค์คํฐ๋ง์ด์ง</li> | |
<li>๋ฐฑ์ ๋ฐ ๋ฒ์ ๊ด๋ฆฌ</li> | |
<li>๊ฒ์๋ณ ํน์ ์ค์ ์ ์ฅ</li> | |
</ul> | |
</div> | |
</div> | |
<!-- ๋ชจ๋ 5 --> | |
<div class="pixel-card mb-6 rounded-xl overflow-hidden"> | |
<div class="flex items-center justify-between p-6 cursor-pointer module-toggle"> | |
<div class="flex items-center"> | |
<div class="w-8 h-8 bg-cyan-400 rounded-full flex items-center justify-center mr-4 font-bold text-black">5</div> | |
<h3 class="text-xl font-bold">๊ณต์ ์ ์ปค๋ฎค๋ํฐ</h3> | |
</div> | |
<i class="fas fa-chevron-down text-gray-400 transition-transform duration-300 module-arrow"></i> | |
</div> | |
<div class="accordion-content px-6 pb-6 hidden"> | |
<p class="text-gray-300 mb-4"> | |
ํฉ๋ฒ์ ์ด๊ณ ์์ ํ๊ฒ ๊ฒ์์ ๊ณต์ ํ๋ ๋ฐฉ๋ฒ์ ๋ฐฐ์๋๋ค. | |
</p> | |
<ul class="list-disc list-inside text-gray-400 space-y-2 pl-4"> | |
<li>๋ฒ์ ๋ฌธ์ ํํผ ๋ฐฉ๋ฒ</li> | |
<li>๊ฐ์ธ์ฉ ์๋ฒ ๊ตฌ์ถ</li> | |
<li>์ปค๋ฎค๋ํฐ์ ๊ธฐ์ฌํ๋ ๋ฐฉ๋ฒ</li> | |
<li>ํจ์น ๋ฐ ๋ฒ์ญ ํ๋ก์ ํธ ์ฐธ์ฌ</li> | |
</ul> | |
</div> | |
</div> | |
<!-- ๋ชจ๋ 6 --> | |
<div class="pixel-card rounded-xl overflow-hidden"> | |
<div class="flex items-center justify-between p-6 cursor-pointer module-toggle"> | |
<div class="flex items-center"> | |
<div class="w-8 h-8 bg-pink-500 rounded-full flex items-center justify-center mr-4 font-bold text-black">6</div> | |
<h3 class="text-xl font-bold">๊ณ ๊ธ ํ๋์จ์ด ์๋ฃจ์ </h3> | |
</div> | |
<i class="fas fa-chevron-down text-gray-400 transition-transform duration-300 module-arrow"></i> | |
</div> | |
<div class="accordion-content px-6 pb-6 hidden"> | |
<p class="text-gray-300 mb-4"> | |
ํน์ํ ๊ฒฝ์ฐ์ ํ์ํ ๊ณ ๊ธ ๊ธฐ์ ์ ํ์ตํฉ๋๋ค. | |
</p> | |
<ul class="list-disc list-inside text-gray-400 space-y-2 pl-4"> | |
<li>์ปค์คํ ํ๋์จ์ด ์๋ฃจ์ </li> | |
<li>๋ฐ์ดํฐ ๋ณต๊ตฌ ๊ธฐ์ </li> | |
<li>ํฌ๊ท ํ๋์จ์ด ์ฒ๋ฆฌ</li> | |
<li>๋ฒ๊ทธ ์์ ๋ฐ ํจ์นญ</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- ๊ฐ์ฌ ์๊ฐ ์น์ --> | |
<section id="instructor" class="py-20 bg-black bg-opacity-80 relative"> | |
<div class="absolute inset-0 opacity-10" style="background-image: url('https://grainy-gradients.vercel.app/noise.svg');"></div> | |
<div class="container mx-auto px-4 relative"> | |
<div class="flex flex-col lg:flex-row items-center gap-12 max-w-6xl mx-auto"> | |
<div class="lg:w-2/5 relative"> | |
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=987&q=80" | |
alt="๊ฐ์ฌ ํ๋กํ" | |
class="w-full rounded-2xl border-4 border-cyan-400 shadow-xl"> | |
<div class="absolute -bottom-4 -right-4 bg-black px-4 py-2 rounded-full border border-pink-500 shadow-lg"> | |
<span class="text-pink-500 font-bold">10๋ ๊ฒฝ๋ ฅ</span> | |
</div> | |
</div> | |
<div class="lg:w-3/5"> | |
<h2 class="pixel-font text-3xl md:text-4xl mb-6 text-cyan-400"> | |
์ ๋ฌธ ๊ฐ์ฌ์ ํจ๊ป ๋ฐฐ์ฐ๋<br>๋ ํธ๋ก ๊ฒ์ ๋ณด์กด ๊ธฐ์ | |
</h2> | |
<h3 class="text-2xl font-bold mb-2">๊น๋ ํธ๋ก</h3> | |
<div class="text-gray-400 mb-6">๊ฒ์ ๋ณด์กด ๊ธฐ์ ์ ๋ฌธ๊ฐ</div> | |
<p class="text-gray-300 mb-6 leading-relaxed"> | |
10๋ ์ด ๋๋๋ก ๋ ํธ๋ก ๊ฒ์ ๋ณด์กด ๊ธฐ์ ์ ์ฐ๊ตฌํด ์จ ์ ๋ฌธ๊ฐ๋ก, ๊ตญ๋ด์ธ์์ 500๊ฐ๊ฐ ๋๋ ํฌ๊ท ๊ฒ์ ๋ฐ์ดํฐ ๋ณต์ ํ๋ก์ ํธ๋ฅผ ์๋ฃํ์ต๋๋ค. | |
๋ณต์กํ ๊ธฐ์ ์ ์ด๋ณด์๋ ์ดํดํ๊ธฐ ์ฝ๊ฒ ์ค๋ช ํ๋ ๋ฅ๋ ฅ์ผ๋ก ์ ๋ช ํ๋ฉฐ, | |
๋ง์ ์๊ฐ์๋ค์ด ๊ทธ์ ๊ฐ์๋ฅผ ํตํด ์ฑ๊ณต์ ์ผ๋ก ๊ฒ์ ๋ณด์กด ๊ธฐ์ ์ ์ต๋ํ์ต๋๋ค. | |
</p> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8"> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-pink-500 rounded-full flex items-center justify-center mr-4 text-black"> | |
<i class="fas fa-gamepad"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">500+ ๊ฒ์ ๋ณต์</h4> | |
<p class="text-sm text-gray-400">๊ตญ๋ด์ธ ํฌ๊ท ๊ฒ์ ๋ฐ์ดํฐ ๋ณด์กด</p> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-cyan-400 rounded-full flex items-center justify-center mr-4 text-black"> | |
<i class="fas fa-users"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">10๋ + ๊ฒฝ๋ ฅ</h4> | |
<p class="text-sm text-gray-400">๊ฒ์ ๋ณด์กด ๊ธฐ์ ์ฐ๊ตฌ</p> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-purple-500 rounded-full flex items-center justify-center mr-4 text-black"> | |
<i class="fas fa-award"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">๊ตญ์ ์ธ์ฆ</h4> | |
<p class="text-sm text-gray-400">๊ฒ์ ๋ณด์กด ํํ ์ธ์ฆ ์ ๋ฌธ๊ฐ</p> | |
</div> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-yellow-400 rounded-full flex items-center justify-center mr-4 text-black"> | |
<i class="fas fa-graduation-cap"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">1,000+ ์๊ฐ์</h4> | |
<p class="text-sm text-gray-400">์ฑ๊ณต์ ์ธ ๊ธฐ์ ์ ์</p> | |
</div> | |
</div> | |
</div> | |
<button class="glow-btn text-black font-bold py-3 px-8 rounded-full inline-flex items-center"> | |
๊ฐ์ฌ ์์ธ ํ๋กํ ๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- ๊ฐ๊ฒฉ ์น์ --> | |
<section id="pricing" class="py-20 bg-gradient-to-b from-black to-purple-900 relative"> | |
<div class="absolute inset-0 opacity-10" style="background-image: url('https://grainy-gradients.vercel.app/noise.svg');"></div> | |
<div class="container mx-auto px-4 relative"> | |
<div class="text-center mb-16"> | |
<h2 class="pixel-font text-3xl md:text-4xl mb-6 text-pink-500"> | |
๋น์ ์ ๋ ํธ๋ก ๊ฒ์ ์ฌํ์<br>์ง๊ธ ์์ํ์ธ์ | |
</h2> | |
<p class="text-lg text-gray-400 max-w-2xl mx-auto"> | |
๋ ํธ๋ก ๊ฒ์ ๋ณด์กด ๊ธฐ์ ์ ์๊ฐ์ด ๊ฐ์๋ก ๊ฐ์น๊ฐ ์ฌ๋ผ๊ฐ๋๋ค. ์ง๊ธ ํฌ์ํ์ธ์! | |
</p> | |
</div> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 max-w-6xl mx-auto"> | |
<!-- ๊ฐ๊ฒฉ ์นด๋ --> | |
<div class="pixel-card rounded-2xl overflow-hidden bg-gradient-to-b from-gray-900 to-black border border-cyan-400/30 relative"> | |
<div class="absolute top-4 right-4 bg-yellow-400 text-black text-xs font-bold px-3 py-1 rounded-full"> | |
๋ฒ ์คํธ ์ด์ด์ค | |
</div> | |
<div class="p-8"> | |
<h3 class="text-2xl font-bold mb-2 text-cyan-400">์ผ๋ฆฌ๋ฒ๋ ํ ์ธ</h3> | |
<div class="flex items-end mb-4"> | |
<span class="text-4xl md:text-5xl font-bold">299,000</span> | |
<span class="text-lg ml-1 text-gray-400">์</span> | |
</div> | |
<div class="flex items-center text-gray-400 mb-6"> | |
<span class="line-through mr-2">์ ๊ฐ 399,000์</span> | |
<span class="bg-green-900 text-green-400 text-xs px-2 py-1 rounded">25% ํ ์ธ</span> | |
</div> | |
<div class="mb-8"> | |
<div class="flex items-center mb-3"> | |
<i class="fas fa-check-circle text-cyan-400 mr-2"></i> | |
<span class="text-gray-300">6์ฃผ ์์ฑ ํ ํจํค์ง</span> | |
</div> | |
<div class="flex items-center mb-3"> | |
<i class="fas fa-check-circle text-cyan-400 mr-2"></i> | |
<span class="text-gray-300">ํ์ ์ ๋ฐ์ดํธ ์ง์</span> | |
</div> | |
<div class="flex items-center mb-3"> | |
<i class="fas fa-check-circle text-cyan-400 mr-2"></i> | |
<span class="text-gray-300">์ ์ฉ ํดํท ์ ๊ณต</span> | |
</div> | |
<div class="flex items-center mb-3"> | |
<i class="fas fa-check-circle text-cyan-400 mr-2"></i> | |
<span class="text-gray-300">์ปค๋ฎค๋ํฐ ๋ฉค๋ฒ์ญ</span> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-check-circle text-cyan-400 mr-2"></i> | |
<span class="text-gray-300">1:1 ๋ฉํ ๋ง 2ํ</span> | |
</div> | |
</div> | |
<button class="glow-btn text-black font-bold py-4 px-6 rounded-full w-full"> | |
์ง๊ธ ํ ์ธ๊ฐ๋ก ๋ฑ๋กํ๊ธฐ | |
</button> | |
</div> | |
</div> | |
<!-- ํ ์ธ ํํ --> | |
<div> | |
<div class="pixel-card p-8 rounded-2xl mb-6"> | |
<h3 class="text-xl font-bold mb-6 text-pink-500">์ง๊ธ ๋ฑ๋ก์ ํน๋ณ ํํ</h3> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-pink-500 rounded-full flex items-center justify-center mr-4 mt-1 text-black"> | |
<i class="fas fa-gift"></i> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">๋ฌด๋ฃ ๋ณด๋์ค 1</h4> | |
<p class="text-gray-400 text-sm">๋ ํธ๋ก ๊ฒ์ ์๋ฎฌ๋ ์ด์ ๊ฐ์ด๋๋ถ (๊ฐ์น: 59,000์)</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-cyan-400 rounded-full flex items-center justify-center mr-4 mt-1 text-black"> | |
<i class="fas fa-tools"></i> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">๋ฌด๋ฃ ๋ณด๋์ค 2</h4> | |
<p class="text-gray-400 text-sm">์ ์ฉ ๋ฐ์ดํฐ ์ถ์ถ ๋๊ตฌ ์ธํธ (๊ฐ์น: 89,000์)</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-purple-500 rounded-full flex items-center justify-center mr-4 mt-1 text-black"> | |
<i class="fas fa-users"></i> | |
</div> | |
<div> | |
<h4 class="font-bold mb-1">๋ฌด๋ฃ ๋ณด๋์ค 3</h4> | |
<p class="text-gray-400 text-sm">VIP ์ปค๋ฎค๋ํฐ ์ด๋๊ถ (๊ฐ์น: 49,000์)</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- ํ์ด๋จธ --> | |
<div class="pixel-card p-6 rounded-2xl text-center"> | |
<div class="text-gray-300 mb-3">ํ ์ธ ๋ง๊ฐ๊น์ง:</div> | |
<div class="flex justify-center gap-3 mb-4"> | |
<div class="timer-block px-4 py-2 rounded-lg"> | |
<div id="hours2" class="text-3xl font-bold text-pink-500">03</div> | |
<div class="text-xs text-gray-400">์๊ฐ</div> | |
</div> | |
<div class="timer-block px-4 py-2 rounded-lg"> | |
<div id="minutes2" class="text-3xl font-bold text-pink-500">00</div> | |
<div class="text-xs text-gray-400">๋ถ</div> | |
</div> | |
<div class="timer-block px-4 py-2 rounded-lg"> | |
<div id="seconds2" class="text-3xl font-bold text-pink-500">00</div> | |
<div class="text-xs text-gray-400">์ด</div> | |
</div> | |
</div> | |
<p class="text-sm text-gray-400">์ง๊ธ ๋ฑ๋กํ๋ฉด ์ด <span class="text-cyan-400 font-bold">197,000์</span> ์๋น์ ํํ์ ๋ฐ์ ์ ์์ต๋๋ค</p> | |
</div> | |
</div> | |
</div> | |
<!-- ํ๋ถ ๋ณด์ฅ --> | |
<div class="mt-16 max-w-4xl mx-auto"> | |
<div class="pixel-card p-8 rounded-2xl text-center"> | |
<div class="flex flex-col md:flex-row items-center justify-center gap-4"> | |
<div class="w-16 h-16 bg-green-900 rounded-full flex items-center justify-center text-green-400"> | |
<i class="fas fa-shield-alt text-2xl"></i> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold mb-2">30์ผ ํ๋ถ ๋ณด์ฅ</h3> | |
<p class="text-gray-400"> | |
๊ฐ์๊ฐ ๋ง์์ ๋ค์ง ์์ผ๋ฉด 30์ผ ์ด๋ด์ ์ ์ก ํ๋ถํด ๋๋ฆฝ๋๋ค. | |
๋ฆฌ์คํฌ ์์ด ์์ํ์ค ์ ์์ต๋๋ค. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- ์ต์ข CTA ์น์ --> | |
<section class="py-20 bg-gradient-to-r from-purple-900/70 to-black/70 relative"> | |
<div class="container mx-auto px-4 relative"> | |
<div class="max-w-4xl mx-auto text-center"> | |
<h2 class="pixel-font text-3xl md:text-4xl mb-6 text-white"> | |
์์คํ ๊ฒ์ ์ปฌ๋ ์ ์ด<br>์ฌ๋ผ์ง๊ธฐ ์ ์ ๋ณด์กดํ์ธ์! | |
</h2> | |
<p class="text-lg text-gray-300 mb-10 max-w-2xl mx-auto leading-relaxed"> | |
์๊ฐ์ด ๊ฐ์๋ก ์นดํธ๋ฆฌ์ง์ ๋์คํฌ๊ฐ ์์๋ฉ๋๋ค. ์ง๊ธ์ด ๋ณด์กด ๊ธฐ์ ์ ๋ฐฐ์ฐ๊ธฐ์ ๊ฐ์ฅ ์ข์ ์๊ธฐ์ ๋๋ค. | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4 max-w-sm mx-auto"> | |
<button class="glow-btn text-black font-bold py-4 px-8 rounded-full text-lg"> | |
์ง๊ธ ๋ฑ๋กํ๊ธฐ | |
</button> | |
</div> | |
<div class="mt-6 text-sm text-gray-500"> | |
<div class="flex items-center justify-center gap-2"> | |
<i class="fas fa-lock"></i> | |
<span>์์ ํ ๊ฒฐ์ </span> | |
<i class="fas fa-shield-alt ml-2"></i> | |
<span>๊ฐ์ธ์ ๋ณด ๋ณดํธ</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- ํธํฐ --> | |
<footer class="bg-black bg-opacity-90 py-12 border-t border-gray-800"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<div class="mb-6 md:mb-0"> | |
<div class="flex items-center"> | |
<div class="game-controller-logo"> | |
<i class="fas fa-gamepad"></i> | |
</div> | |
<div class="pixel-font logo-text text-2xl ml-2">๋ ๊ฒ</div> | |
</div> | |
<p class="text-gray-400 text-sm mt-4"> | |
๋ ํธ๋ก ๊ฒ์ ๋ณด์กด ๊ธฐ์ ์ ๋ชจ๋ ๊ฒ<br> | |
© 2025 ๋ ๊ฒ ๋ง์คํฐ ํด๋์ค. All rights reserved. | |
</p> | |
</div> | |
<div class="flex flex-col md:flex-row gap-8"> | |
<div> | |
<h4 class="text-gray-300 font-bold mb-3">์ ๋ณด</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition text-sm">์ด์ฉ์ฝ๊ด</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition text-sm">๊ฐ์ธ์ ๋ณด ์ฒ๋ฆฌ๋ฐฉ์นจ</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition text-sm">ํ๋ถ ์ ์ฑ </a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-gray-300 font-bold mb-3">๋ฌธ์ํ๊ธฐ</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition text-sm">๊ณ ๊ฐ ์ง์</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition text-sm">๊ฐ์ฌ ์ด๋น</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition text-sm">ํํธ๋์ญ</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-gray-300 font-bold mb-3">์์ ๋ฏธ๋์ด</h4> | |
<div class="flex gap-4"> | |
<a href="#" class="text-gray-400 hover:text-cyan-400 transition text-xl"><i class="fab fa-youtube"></i></a> | |
<a href="#" class="text-gray-400 hover:text-cyan-400 transition text-xl"><i class="fab fa-discord"></i></a> | |
<a href="#" class="text-gray-400 hover:text-cyan-400 transition text-xl"><i class="fab fa-twitter"></i></a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<!-- ์ฌ์ด๋ ํ๋กํ CTA --> | |
<div class="side-cta fixed top-1/2 transform -translate-y-1/2 z-30"> | |
<div class="bg-gradient-to-r from-pink-600 to-purple-600 text-white p-3 rounded-l-lg shadow-lg flex items-center cursor-pointer" id="side-cta"> | |
<span class="whitespace-nowrap font-bold mr-2">ํ ์ธ ๋ง๊ฐ ์๋ฐ!</span> | |
<i class="fas fa-arrow-right"></i> | |
</div> | |
</div> | |
<script> | |
// ๋ชจ๋ฐ์ผ ๋ฉ๋ด ํ ๊ธ | |
const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
const closeMenuButton = document.getElementById('close-menu'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
mobileMenuButton.addEventListener('click', () => { | |
mobileMenu.classList.add('open'); | |
document.body.style.overflow = 'hidden'; | |
}); | |
closeMenuButton.addEventListener('click', () => { | |
mobileMenu.classList.remove('open'); | |
document.body.style.overflow = ''; | |
}); | |
// FAQ ์์ฝ๋์ธ | |
const accordionItems = document.querySelectorAll('.module-toggle'); | |
accordionItems.forEach(item => { | |
item.addEventListener('click', () => { | |
const content = item.parentElement.querySelector('.accordion-content'); | |
const arrow = item.querySelector('.module-arrow'); | |
content.classList.toggle('hidden'); | |
content.classList.toggle('block'); | |
arrow.classList.toggle('rotate-180'); | |
}); | |
}); | |
// ์ฌ์ด๋ CTA | |
const sideCta = document.getElementById('side-cta'); | |
sideCta.addEventListener('click', () => { | |
document.getElementById('pricing').scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
// ์ด๋ฉ์ผ ํผ ์ ์ถ | |
const leadForm = document.getElementById('lead-form'); | |
leadForm.addEventListener('submit', (e) => { | |
e.preventDefault(); | |
const email = e.target.querySelector('input[type="email"]').value; | |
alert(`${email} ์ฃผ์๋ก ๋ฌด๋ฃ ๊ฐ์ด๋ ๋งํฌ๋ฅผ ๋ณด๋์ต๋๋ค!`); | |
e.target.reset(); | |
}); | |
// ์นด์ดํธ๋ค์ด ํ์ด๋จธ ์์ | |
function updateCountdown() { | |
// ์ข ๋ฃ ์๊ฐ ์ค์ (ํ์ฌ ์๊ฐ + 3์๊ฐ) | |
const now = new Date(); | |
const endTime = new Date(now.getTime() + 3 * 60 * 60 * 1000); | |
const timeLeft = endTime - now; | |
// ์๊ฐ, ๋ถ, ์ด ๊ณ์ฐ | |
const hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); | |
const minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60)); | |
const seconds = Math.floor((timeLeft % (1000 * 60)) / 1000); | |
// ๋ ํ์ด๋จธ ๋ชจ๋ ์ ๋ฐ์ดํธ | |
document.getElementById('hours').textContent = hours.toString().padStart(2, '0'); | |
document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0'); | |
document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0'); | |
document.getElementById('hours2').textContent = hours.toString().padStart(2, '0'); | |
document.getElementById('minutes2').textContent = minutes.toString().padStart(2, '0'); | |
document.getElementById('seconds2').textContent = seconds.toString().padStart(2, '0'); | |
if (timeLeft <= 0) { | |
clearInterval(countdownTimer); | |
document.querySelectorAll('.timer-block').forEach(el => { | |
el.innerHTML = '<div class="text-red-500 font-bold">ํ ์ธ ๊ธฐ๊ฐ์ด ์ข ๋ฃ๋์์ต๋๋ค</div>'; | |
}); | |
} | |
} | |
// ์ด๊ธฐ ํธ์ถ ๋ฐ ์ธํฐ๋ฒ ์ค์ | |
updateCountdown(); | |
const countdownTimer = setInterval(updateCountdown, 1000); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=dongil77/retro-game-master" style="color: #fff;text-decoration: underline;" target="_blank" >๐งฌ Remix</a></p></body> | |
</html> | |