:root {
	--primary-glow: #ff0048;
	--secondary-glow: #ff00ae;
	--glass-bg: rgba(40, 0, 20, 0.65);
	--glass-border: rgba(255, 255, 255, 0.15);
	--text-main: #ffffff;
	--text-dim: #deb0d3;
}


body {
	font-family: "Segoe UI", "Frutiger", "Helvetica Neue", "Hiragino Sans", "Arial",　sans-serif;
	color: var(--text-main);
	background-color: #000;
	overflow-x: hidden;
	min-height: 100vh;
	background: linear-gradient(0deg, #b00e37 0%, #4a0718 25%, #000 75%);
	background-attachment: fixed;
)

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	margin-bottom: 40px;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
	text-shadow: 0 0 15px var(--primary-glow);
}

.logo i {
	font-size: 1.5rem;
	color: var(--primary-glow);
}

nav ul {
	display: flex;
	list-style: none;
	gap: 20px;
}

.hero {
	text-align: center;
	padding: 40px 20px;
	margin-bottom: 60px;
	position: relative;
}

.hero h1 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	background: linear-gradient(to bottom, #ffffff, #ffa3bc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 10px rgba(255, 0, 150, 0.5));
}

.hero p {
	font-size: 1rem;
	color: var(--text-dim);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.aero-btn {
	display: inline-block;
	padding: 15px 40px;
	font-size: 1rem;
	font-weight: bold;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	
	background: linear-gradient(180deg, 
		rgba(255, 0, 242, 0.4) 0%, 
		rgba(255, 0, 153, 0.2) 50%, 
		rgba(200, 0, 90, 0.6) 51%, 
		rgba(150, 0, 60, 0.8) 100%);
	
	box-shadow: 
		0 4px 15px rgba(255, 0, 242, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.aero-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
	border-radius: 30px 30px 100% 100% / 30px 30px 10px 10px;
}

.aero-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 0, 242, 0.6), inset 0 0 20px rgba(255,255,255,0.3);
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.grid a {
	text-decoration: none;
}

.glass-card {
	min-height: 240px;
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	padding: 30px;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
	pointer-events: none;
}

.glass-card:hover {
	background: rgba(70, 20, 40, 0.75);
	box-shadow: 0 15px 40px rgba(255, 0, 242, 0.2);
	transform: translateY(-5px);
	border-color: rgba(255, 0, 242, 0.5);
}

.icon-box {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff0048, #ff00ae);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
	border: 1px solid rgba(255,255,255,0.4);
}

.icon-box i {
	font-size: 1.5rem;
	color: #fff;
}

.glass-card h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	color: #fff;
}

.glass-card p {
	color: var(--text-dim);
	line-height: 1.6;
}

footer {
	text-align: center;
	padding: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-dim);
	font-size: 0.9rem;
	background: rgba(0,0,0,0.3);
	backdrop-filter: blur(5px);
}

footer a {
	color: #ff00ae;
}

@media (max-width: 600px) {
	
	.hero h1 {
		font-size: 2.5rem;
	}
	
	/*
	nav {
		display: none;
	}
	*/

	.header {
		justify-content: center;
	}
	
}