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

body {
	background: #0f0f0f;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	width: 100%;
	max-width: 420px;
	padding: 20px;
}

.card {
	background: #1a1a1a;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	border: 1px solid #2a2a2a;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gift-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

.title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #fff;
}

.item-name {
	font-size: 18px;
	color: #a0a0a0;
	margin-bottom: 12px;
}

.amount {
	font-size: 32px;
	font-weight: 800;
	color: #0088cc;
	margin-bottom: 8px;
}

.date {
	font-size: 13px;
	color: #555;
	margin-bottom: 30px;
}

.claim-btn {
	width: 100%;
	padding: 16px;
	background: #0088cc;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.claim-btn:hover {
	background: #006aaa;
}

#tonconnect-root {
	margin-bottom: 16px;
}
