/* ============================================
   ムービープラス - ダークパターン教育用デモ
   スタイルシート
   ============================================ */

/* リセットと基本スタイル */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #333;
	line-height: 1.6;
	min-height: 100vh;
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
	background: linear-gradient(90deg, #6a0dad 0%, #4a0dad 50%, #2a0dad 100%);
	padding: 15px 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	background: linear-gradient(135deg, #ff6b35 0%, #f7c242 100%);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
}

.logo-text {
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 1px;
}

.nav-links {
	display: flex;
	gap: 25px;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #f7c242;
}

/* ============================================
   メインコンテンツ
   ============================================ */
.main-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

/* ヒーローセクション */
.hero-section {
	text-align: center;
	padding: 40px 20px;
	color: white;
}

/* ダークパターン5: Fake Urgency (偽の緊急性) */
.urgency-banner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg, #ff4757 0%, #ff6b81 100%);
	color: white;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: bold;
	margin-bottom: 25px;
	animation: pulse 1.5s infinite;
	box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
	}
	50% {
		transform: scale(1.02);
		box-shadow: 0 6px 20px rgba(255, 71, 87, 0.7);
	}
}

.urgency-icon {
	font-size: 1.2rem;
}

.countdown {
	background: rgba(0, 0, 0, 0.3);
	padding: 5px 15px;
	border-radius: 20px;
	font-family: 'Courier New', monospace;
	font-size: 1.1rem;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	line-height: 1.3;
}

.free-badge {
	background: linear-gradient(135deg, #f7c242 0%, #ff6b35 100%);
	color: #1a1a2e;
	padding: 5px 20px;
	border-radius: 5px;
	display: inline-block;
	font-size: 2.8rem;
	animation: glow 2s infinite;
}

@keyframes glow {
	0%, 100% {
		box-shadow: 0 0 10px rgba(247, 194, 66, 0.5);
	}
	50% {
		box-shadow: 0 0 30px rgba(247, 194, 66, 0.8);
	}
}

.hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
}

/* ダークパターン6: Fake Social Proof (偽の社会的証明) */
.social-proof {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.viewers {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.95rem;
}

.pulse-dot {
	width: 10px;
	height: 10px;
	background: #4cd964;
	border-radius: 50%;
	animation: pulseDot 1s infinite;
}

@keyframes pulseDot {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

.friend-activity {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.friend-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #4cd964;
}

/* ============================================
   フォームセクション
   ============================================ */
.form-section {
	padding: 0 20px 40px;
}

.form-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.form-header {
	background: linear-gradient(135deg, #6a0dad 0%, #4a0dad 100%);
	color: white;
	padding: 25px;
	text-align: center;
}

.form-header h2 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

/* ダークパターン2: Hidden Costs (隠れコスト) */
.trial-note {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 5px;
}

.hidden-fee {
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 3px;
}

/* フォーム本体 */
form {
	padding: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: bold;
	margin-bottom: 8px;
	color: #333;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
	border-color: #6a0dad;
	outline: none;
	box-shadow: 0 0 0 4px rgba(106, 13, 173, 0.1);
}

.card-note {
	display: block;
	font-size: 0.75rem;
	color: #4cd964;
	margin-top: 5px;
}

/* ダークパターン4: Sneak into Basket (こっそりカゴに追加) */
.hidden-options {
	margin: 20px 0;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #eee;
}

.hidden-options .option-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.7rem;
	color: #888;
}

.hidden-options .option-item:last-child {
	margin-bottom: 0;
}

.hidden-options input[type="checkbox"] {
	width: 12px;
	height: 12px;
	opacity: 0.6;
}

.hidden-options label {
	font-weight: normal;
	color: #999;
}

/* ダークパターン8: Preselection (事前選択) */
.preselected-options {
	margin: 15px 0;
	padding: 10px 0;
}

.preselected-options .option-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 0.8rem;
	color: #666;
}

.preselected-options input[type="checkbox"] {
	width: 14px;
	height: 14px;
}

.preselected-options label {
	font-weight: normal;
}

/* ダークパターン7: Visual Interference (視覚的干渉) */
.terms-section {
	margin: 20px 0;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
}

.terms-scroll {
	max-height: 100px;
	overflow-y: scroll;
	padding: 15px;
	font-size: 0.65rem;
	color: #aaa;
	line-height: 1.5;
	background: #fafafa;
}

.terms-scroll h4 {
	font-size: 0.7rem;
	color: #999;
	margin-bottom: 10px;
}

.terms-scroll p {
	margin-bottom: 8px;
}

.terms-agree {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
	background: white;
	font-size: 0.75rem;
	color: #666;
}

.terms-agree input[type="checkbox"] {
	width: 14px;
	height: 14px;
}

.terms-agree label {
	font-weight: normal;
}

/* ダークパターン3: Forced Continuity (強制継続) */
.auto-charge-note {
	font-size: 0.6rem;
	color: #bbb;
	text-align: center;
	margin: 15px 0 5px;
}

.cancel-note {
	font-size: 0.55rem;
	color: #ccc;
	text-align: center;
	margin-bottom: 20px;
}

/* ダークパターン1: Confirmshaming (コンファームシェイミング) */
.button-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 25px;
}

.btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, #ff6b35 0%, #f7c242 100%);
	color: #1a1a2e;
	border: none;
	border-radius: 15px;
	font-size: 1.3rem;
	font-weight: bold;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-icon {
	font-size: 1rem;
}

.btn-secondary {
	width: 100%;
	padding: 10px;
	background: transparent;
	color: #aaa;
	border: none;
	font-size: 0.75rem;
	cursor: pointer;
	transition: color 0.3s;
}

.btn-secondary:hover {
	color: #666;
}

/* 信頼性バッジ */
.trust-badges {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 20px;
	background: #f9f9f9;
	border-top: 1px solid #eee;
}

.badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	font-size: 0.75rem;
	color: #666;
}

.badge span:first-child {
	font-size: 1.2rem;
}

/* ============================================
   フッター
   ============================================ */
.footer {
	text-align: center;
	padding: 30px 20px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 15px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.75rem;
}

.footer-links a:hover {
	color: white;
}

.copyright {
	margin-bottom: 10px;
}

.demo-notice {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   レスポンシブ対応
   ============================================ */
@media (max-width: 768px) {
	.header-inner {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		gap: 15px;
	}

	.nav-links a {
		font-size: 0.85rem;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.free-badge {
		font-size: 2rem;
		padding: 3px 15px;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.urgency-banner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 10px 15px;
		font-size: 0.9rem;
	}

	.form-container {
		border-radius: 15px;
	}

	form {
		padding: 20px;
	}

	.btn-primary {
		font-size: 1.1rem;
		padding: 15px 25px;
	}

	.trust-badges {
		gap: 15px;
	}

	.badge {
		font-size: 0.65rem;
	}

	.footer-links {
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.hero-section {
		padding: 30px 10px;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.free-badge {
		font-size: 1.6rem;
	}

	.social-proof {
		font-size: 0.85rem;
	}

	.form-header h2 {
		font-size: 1.2rem;
	}

	.hidden-options,
	.preselected-options {
		padding: 10px;
	}

	.btn-primary {
		font-size: 1rem;
		padding: 14px 20px;
	}
}
