.ci-gci-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin: 30px auto;
	max-width: 400px;
}

.ci-gci-card {
	width: 320px;
	max-width: 90vw;
	height: 420px;
	perspective: 1200px;
}

.ci-gci-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s cubic-bezier(.4, .2, .2, 1);
	transform-style: preserve-3d;
}

.ci-gci-card.ci-gci-flipped .ci-gci-card-inner {
	transform: rotateY(180deg);
}

.ci-gci-card-face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	text-align: center;
}

.ci-gci-card-back {
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	border: 2px solid #d4af37;
}

.ci-gci-card-back span {
	font-size: 64px;
	opacity: 0.85;
}

.ci-gci-card-front {
	background: linear-gradient(135deg, #fdf6e3, #f5e6c8);
	border: 2px solid #d4af37;
	transform: rotateY(180deg);
	gap: 20px;
}

.ci-gci-theme {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.3;
}

.ci-gci-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.ci-gci-pill {
	background: #1a1a2e;
	color: #d4af37;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.ci-gci-btn {
	background: #d4af37;
	color: #1a1a2e;
	border: none;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ci-gci-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

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