/* AIX Custom Styles */

/* Fixed header menu — margin so background video (hero) shows around the bar */
.header-section {
	position: fixed;
	top: 12px;
	left: 16px;
	right: 16px;
	width: auto;
	max-width: none;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px) saturate(1.08);
	-webkit-backdrop-filter: blur(14px) saturate(1.08);
	padding: 12px 24px;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.header-section .menu-list li a {
	position: relative;
	color: #20509e;
	z-index: 1;
	transition: color 0.3s ease;
}

.header-section .menu-list li a::before {
	content: '';
	position: absolute;
	inset: -6px -10px;
	border-radius: 10px;
	background: linear-gradient(90deg, rgba(62, 43, 206, 0.14) 0%, rgba(45, 211, 170, 0.2) 50%, rgba(62, 43, 206, 0.12) 100%);
	background-size: 200% 100%;
	background-position: 100% 0;
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: -1;
	pointer-events: none;
}

.header-section .menu-list li a::after {
	content: '';
	position: absolute;
	left: 5px;
	right: 5px;
	bottom: 2px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, #3e2bce 0%, #2dd3aa 100%);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 0;
	pointer-events: none;
}

.header-section .menu-list li a:hover {
	color: #1a4a8a;
}

.header-section .menu-list li a:hover::before {
	opacity: 1;
	animation: headerMenuGradSweep 0.85s ease-in-out infinite alternate;
}

.header-section .menu-list li a:hover::after {
	transform: scaleX(1);
}

@keyframes headerMenuGradSweep {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

.header-section .user,
.header-section .responsive-bar {
	color: #20509e;
}

@media (prefers-reduced-motion: reduce) {
	.header-section .menu-list li a:hover::before {
		animation: none;
		background-position: 0 50%;
	}
}

@media only screen and (max-width: 767px) {
	.header-section {
		top: 10px;
		left: 10px;
		right: 10px;
		border-radius: 12px;
	}
}

/* Desktop/tablet: flex align + correct visual order */
@media only screen and (min-width: 768px) {
	.header-section .container-fluid {
		display: flex;
		align-items: center;
		width: 100%;
	}

	.header-section .site-logo {
		order: 1;
	}

	.header-section .main-menu {
		order: 2;
		float: none;
		margin-left: auto;
	}

	.header-section .site-btn {
		order: 3;
		float: none;
		margin-left: 16px;
	}
}

/* Header Get Started button: gradient + hover animation */
.header-section .site-btn {
	position: relative;
	overflow: hidden;
	border: none;
	background: linear-gradient(90deg, #4f35d8 0%, #2dd3aa 45%, #3e2bce 100%);
	background-size: 220% 100%;
	background-position: 0% 50%;
	color: #fff;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.header-section .site-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(62, 43, 206, 0.45), 0 4px 12px rgba(45, 211, 170, 0.35);
	animation: headerGetStartedGrad 0.95s ease-in-out infinite alternate;
}

@keyframes headerGetStartedGrad {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-section .site-btn:hover {
		animation: none;
		background-position: 50% 50%;
		transform: none;
	}
}

/* member/index.html — dummy recipient address */
.member-recipient-address {
	font-family: "Courier New", Courier, monospace;
	font-size: clamp(14px, 2.5vw, 18px);
	color: #20509e;
	background: rgba(255, 255, 255, 0.9);
	padding: 18px 22px;
	border-radius: 10px;
	word-break: break-all;
	margin-top: 28px;
	margin-bottom: 0;
	line-height: 1.5;
	border: 1px solid rgba(32, 80, 158, 0.2);
	box-shadow: 0 4px 20px rgba(32, 80, 158, 0.08);
}

/* First view: hero + ticker fills viewport height */
.first-view-stack {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	height: 100vh;
	box-sizing: border-box;
}

.first-view-stack > .hero-section {
	flex: 1 1 0;
	min-height: 0;
	height: auto !important;
}

.first-view-stack > .price-ticker-section {
	flex: 0 0 auto;
}

/* Hero video background */
.hero-section--video {
	background-image: none;
	background-color: transparent;
}

.hero-section {
	height: 80vh;
}

.hero-section--video .hero-content {
	position: relative;
	z-index: 2;
}

.hero-section--video .hero-content {
	display: none;
}

.hero-bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

.hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: 1;
	pointer-events: none;
}

.hero-video-loader {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	z-index: 3;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	pointer-events: none;
}

.hero-section--video.is-video-ready .hero-video-loader {
	opacity: 0;
	visibility: hidden;
}

.hero-video-loader__ring {
	width: 68px;
	height: 68px;
	border-radius: 999px;
	background:
		conic-gradient(from 90deg,
			rgba(45, 211, 170, 0.0) 0%,
			rgba(45, 211, 170, 0.95) 22%,
			rgba(62, 43, 206, 0.95) 60%,
			rgba(62, 43, 206, 0.0) 100%);
	filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
	animation: heroLoaderSpin 1.05s linear infinite;
	position: relative;
}

.hero-video-loader__ring:after {
	content: '';
	position: absolute;
	inset: 7px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero-video-loader__label {
	font-family: "Futura", sans-serif;
	letter-spacing: 0.22em;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.82);
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

@keyframes heroLoaderSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Price ticker */
.price-ticker-section {
	position: relative;
	padding: 14px 0;
	overflow: hidden;
	background: linear-gradient(90deg, #3e2bce 0%, #2dd3aa 32%, #5a4be8 58%, #2dd3aa 100%);
	background-size: 200% 100%;
	animation: priceTickerBannerShift 20s ease-in-out infinite alternate;
	border-top: none;
	border-bottom: none;
}

@keyframes priceTickerBannerShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

.price-ticker {
	position: relative;
	width: 100%;
}

.price-ticker__viewport {
	overflow: hidden;
	padding: 6px 0;
}

.price-ticker__track {
	display: flex;
	width: max-content;
	gap: 0;
	animation: priceTickerScroll 28s linear infinite;
	will-change: transform;
}

.price-ticker__list {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0 18px;
}

.price-ticker__item {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: none;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.price-ticker__item:hover {
	transform: translateY(-2px) scale(1.02);
	background: rgba(255, 255, 255, 0.26);
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.price-ticker__icon {
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
	flex: 0 0 auto;
}

/* Inline SVG icons (data URI) */
.price-ticker__item[data-symbol="BTC"] .price-ticker__icon {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Cdefs/%3E%3Ccircle%20cx='10'%20cy='10'%20r='10'%20fill='%23F7931A'/%3E%3Cpath%20d='M11.4%205.0c1.2.2%202.0.9%202.0%202.0%200%200.9-.5%201.6-1.4%201.9%201.2.3%201.9%201.1%201.9%202.3%200%201.5-1.1%202.5-3.0%202.7v1.1h-1.2v-1.0H8.6v1.0H7.4v-1.1H6.3V7.0h1.1V5.9h1.2V7.0h1.1V5.9h1.2V5.0h0.6zm-2.7%203.1h1.4c.9%200%201.5-.4%201.5-1.1%200-.7-.5-1.0-1.4-1.0H8.7v2.1zm0%206.0h1.6c1.1%200%201.8-.4%201.8-1.3%200-.8-.6-1.2-1.7-1.2H8.7v2.5z'%20fill='white'%20opacity='0.92'/%3E%3C/svg%3E");
}

.price-ticker__item[data-symbol="ETH"] .price-ticker__icon {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Ccircle%20cx='10'%20cy='10'%20r='10'%20fill='%232B2B2B'/%3E%3Cpath%20d='M10%203l3.3%207L10%209.2%206.7%2010%2010%203z'%20fill='%23E6E6E6'/%3E%3Cpath%20d='M10%2017l3.3-6.2L10%2012%206.7%2010.8%2010%2017z'%20fill='%23BDBDBD'/%3E%3C/svg%3E");
}

.price-ticker__item[data-symbol="ETC"] .price-ticker__icon {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Ccircle%20cx='10'%20cy='10'%20r='10'%20fill='%2328A745'/%3E%3Cpath%20d='M10%203l3.6%207L10%209.2%206.4%2010%2010%203z'%20fill='white'%20opacity='0.92'/%3E%3Cpath%20d='M10%2017l3.6-6.3L10%2012%206.4%2010.7%2010%2017z'%20fill='%23DFF6E6'/%3E%3C/svg%3E");
}

.price-ticker__item[data-symbol="SOL"] .price-ticker__icon {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Ccircle%20cx='10'%20cy='10'%20r='10'%20fill='%230B0B10'/%3E%3Cdefs%3E%3ClinearGradient%20id='g'%20x1='0'%20y1='0'%20x2='1'%20y2='1'%3E%3Cstop%20offset='0'%20stop-color='%2300FFA3'/%3E%3Cstop%20offset='1'%20stop-color='%23DC1FFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath%20d='M5%206.2c.3-.3.6-.4%201.0-.4h9c.4%200%20.6.5.3.8l-1.0%201.0c-.3.3-.6.4-1.0.4H4.3c-.4%200-.6-.5-.3-.8l1.0-1.0z'%20fill='url(%23g)'/%3E%3Cpath%20d='M5%209.8c.3-.3.6-.4%201.0-.4h9c.4%200%20.6.5.3.8l-1.0%201.0c-.3.3-.6.4-1.0.4H4.3c-.4%200-.6-.5-.3-.8l1.0-1.0z'%20fill='url(%23g)'/%3E%3Cpath%20d='M5%2013.4c.3-.3.6-.4%201.0-.4h9c.4%200%20.6.5.3.8l-1.0%201.0c-.3.3-.6.4-1.0.4H4.3c-.4%200-.6-.5-.3-.8l1.0-1.0z'%20fill='url(%23g)'/%3E%3C/svg%3E");
}

.price-ticker__item[data-symbol="XRP"] .price-ticker__icon {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Ccircle%20cx='10'%20cy='10'%20r='10'%20fill='%231F2937'/%3E%3Cpath%20d='M6%206c1.8%201.8%206.2%201.8%208%200l.8.8c-2.3%202.3-7.3%202.3-9.6%200L6%206z'%20fill='white'%20opacity='0.9'/%3E%3Cpath%20d='M14%2014c-1.8-1.8-6.2-1.8-8%200l-.8-.8c2.3-2.3%207.3-2.3%209.6%200L14%2014z'%20fill='white'%20opacity='0.9'/%3E%3C/svg%3E");
}

.price-ticker__item[data-symbol="DOGE"] .price-ticker__icon {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2020'%3E%3Ccircle%20cx='10'%20cy='10'%20r='10'%20fill='%23C2A633'/%3E%3Cpath%20d='M7%205.2h3.5c2.7%200%204.5%201.7%204.5%204.8s-1.8%204.8-4.5%204.8H7V5.2zm2.0%201.6v6.4h1.5c1.6%200%202.6-1.1%202.6-3.2%200-2.1-1.0-3.2-2.6-3.2H9z'%20fill='%23FFF7D1'/%3E%3C/svg%3E");
}

.price-ticker__sym {
	font-family: "Futura", sans-serif;
	letter-spacing: 0.1em;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
}

.price-ticker__val {
	font-family: "Futura", sans-serif;
	font-size: 14px;
	color: #fff;
}

.price-ticker__fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 110px;
	z-index: 2;
	pointer-events: none;
}

.price-ticker__fade--left {
	left: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.0) 100%);
}

.price-ticker__fade--right {
	right: 0;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.0) 100%);
}

.price-ticker:hover .price-ticker__track {
	animation-play-state: paused;
}

/* JS-driven scroll: disables CSS keyframes to avoid long-run subpixel drift */
.price-ticker__track.price-ticker__track--js {
	animation: none;
}

@keyframes priceTickerScroll {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(calc(-1 * var(--priceTickerShift, 0px)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.price-ticker-section {
		animation: none;
		background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%);
	}

	.price-ticker__track {
		animation: none;
	}

	.price-ticker__item:hover {
		transform: none;
	}
}

/* Muted looping background video blocks */
.video-bg-section {
	position: relative;
	overflow: hidden;
	min-height: 42vh;
}

.video-bg-section--move1 {
	min-height: 38vh;
}

.video-bg-section--move2 {
	min-height: 44vh;
}

.video-bg-fill {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(32, 80, 158, 0.55) 0%, rgba(22, 208, 197, 0.35) 100%);
	pointer-events: none;
}

.video-audio-toggle {
	position: absolute;
	right: 18px;
	bottom: 18px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.28);
	color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px) saturate(1.08);
	-webkit-backdrop-filter: blur(10px) saturate(1.08);
	font-family: "Futura", sans-serif;
	letter-spacing: 0.12em;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.video-audio-toggle:hover {
	transform: translateY(-1px);
	background: rgba(0, 0, 0, 0.34);
	border-color: rgba(255, 255, 255, 0.28);
}

.video-audio-toggle:active {
	transform: translateY(0);
}

.video-audio-toggle__text {
	display: inline-block;
}

.video-audio-toggle.is-on {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

/* Footer company / representative */
.footer-company-name {
	color: #75849a;
	font-size: 16px;
	font-weight: 600;
}

.footer-company-rep {
	color: #75849a;
	font-size: 15px;
}

/* Additional styling for AIX whitepaper site */

blockquote {
	font-size: 24px;
	font-style: italic;
	color: #20509e;
	border-left: 4px solid #20509e;
	padding-left: 20px;
	margin: 30px 0;
	line-height: 1.8;
}

.feature-content ul {
	list-style: none;
	padding-left: 0;
}

.feature-content ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.feature-content ul li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #7ad4cc;
	font-weight: bold;
	font-size: 18px;
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* About blocks: image scales inside fixed-width .about-img wrapper */
.about-img img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Token balance section — allocation table */
.token-balance-allocation {
	margin-top: 28px;
}

.token-balance-allocation-title {
	margin-bottom: 12px !important;
	font-size: 18px;
	color: #20509e;
}

.token-balance-allocation-table {
	margin-bottom: 0;
	font-size: 16px;
	border: 1px solid #e1e8ef;
	border-radius: 8px;
	overflow: hidden;
}

.token-balance-allocation-table thead th {
	border-bottom: 2px solid #20509e;
	padding: 10px 14px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #20509e;
	background: #f4f8fc;
}

.token-balance-allocation-table thead th:last-child {
	text-align: right;
	width: 4.5rem;
}

.token-balance-allocation-table tbody td {
	border-top: 1px solid #e1e8ef;
	padding: 10px 14px;
	vertical-align: middle;
}

.token-balance-allocation-table tbody tr:first-child td {
	border-top: none;
}

.token-balance-allocation-table tbody td:last-child {
	text-align: right;
	font-weight: 600;
	color: #20509e;
	white-space: nowrap;
	width: 4.5rem;
}

/* Enhanced section spacing for better readability */
section {
	position: relative;
}

/* Vision section blockquote styling */
#vision blockquote {
	text-align: center;
	border: none;
	border-top: 2px solid #7ad4cc;
	border-bottom: 2px solid #7ad4cc;
	padding: 30px 20px;
	margin: 40px 0;
}

/* Countdown / Limited Time Offer */
.countdown-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.countdown-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(100, 200, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(150, 100, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(100, 255, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.phase-cards-container {
	position: relative;
	z-index: 1;
}

.phase-card {
	background: #1a2332;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	position: relative;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phase-1 {
	border: 2px solid #00d4ff;
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.phase-1::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
	border-radius: 20px;
	z-index: -1;
	opacity: 0.6;
	animation: glow-pulse 2s ease-in-out infinite;
}

.phase-2 {
	border: 2px solid #00d4ff;
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.phase-2::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
	border-radius: 20px;
	z-index: -1;
	opacity: 0.6;
	animation: glow-pulse 2s ease-in-out infinite;
}

.phase-3 {
	border: 2px solid #9b59b6;
	box-shadow: 0 0 30px rgba(155, 89, 182, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.phase-3::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #9b59b6, #8e44ad, #9b59b6);
	border-radius: 20px;
	z-index: -1;
	opacity: 0.6;
	animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 0.9; }
}

.phase-header {
	font-size: 24px;
	font-weight: bold;
	color: #00d4ff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	font-family: "Futura", sans-serif;
}

.phase-3 .phase-header {
	color: #9b59b6;
}

.discount-display {
	margin: 30px 0;
}

.discount-percent-large {
	font-size: 100px;
	font-weight: bold;
	color: #fff;
	font-family: "Futura", sans-serif;
	line-height: 1;
	margin-bottom: 10px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.discount-off {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 10px;
	font-family: "Futura", sans-serif;
}

.phase-tier-value {
	margin-top: 14px;
	font-size: clamp(1.35rem, 3.5vw, 1.85rem);
	font-weight: bold;
	color: #fff;
	font-family: "Futura", "Lato", sans-serif;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

.phase-3 .phase-tier-value {
	color: #f0e6ff;
}

.discount-description {
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	margin: 20px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.phase-timer {
	margin-top: 30px;
	padding: 15px;
	background: rgba(0, 212, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.timer-label {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.timer-value {
	font-size: 24px;
	font-weight: bold;
	color: #00d4ff;
	font-family: "Courier New", monospace;
	letter-spacing: 2px;
}

.timer-icon {
	color: #fff;
	font-size: 20px;
}

.ending-soon {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ending-text {
	font-size: 20px;
	font-weight: bold;
	color: #ff0000;
	text-transform: uppercase;
	letter-spacing: 2px;
	animation: blink 1s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

@media (max-width: 768px) {
	.countdown-section {
		padding: 48px 0;
	}

	.countdown-section h2.mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.countdown-section .col-md-4.mb-4 {
		margin-bottom: 1rem !important;
	}

	.phase-card {
		min-height: 0;
		padding: 20px 16px;
		margin-bottom: 0;
		justify-content: flex-start;
	}

	.phase-header {
		font-size: 18px;
		margin-bottom: 12px;
		letter-spacing: 1px;
	}

	.discount-display {
		margin: 12px 0;
	}

	.discount-percent-large {
		font-size: 56px;
		margin-bottom: 4px;
	}

	.discount-off {
		font-size: 20px;
		margin-top: 4px;
	}

	.phase-tier-value {
		margin-top: 8px;
		font-size: 1.2rem;
	}

	.discount-description {
		font-size: 14px;
		margin: 10px 0;
	}

	.phase-timer {
		margin-top: 12px;
		padding: 10px 12px;
	}

	.timer-label {
		font-size: 12px;
	}

	.timer-value {
		font-size: 18px;
	}

	.timer-icon {
		font-size: 16px;
	}

	.ending-soon {
		margin-top: 12px;
		gap: 4px;
	}

	.ending-text {
		font-size: 16px;
	}
}

/* Burn Mechanism Section */
.burn-content {
	padding: 20px;
}

.burn-feature {
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	height: 100%;
	transition: transform 0.3s ease;
}

.burn-feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.burn-feature h4 {
	color: #20509e;
	margin-bottom: 15px;
}

.burn-feature p {
	color: #75849a;
	margin: 0;
}

/* Rank System Section */
.rank-box {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rank-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rank-box.bronze {
	border-color: #cd7f32;
}

.rank-box.silver {
	border-color: #c0c0c0;
}

.rank-box.gold {
	border-color: #ffd700;
}

.rank-icon {
	margin-bottom: 20px;
}

.rank-box h3 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 20px;
	font-family: "Futura", sans-serif;
}

.rank-requirements {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 25px;
}

.rank-requirements p {
	color: #fff;
	font-weight: bold;
	margin: 0;
	font-size: 16px;
}

.rank-benefits {
	list-style: none;
	padding: 0;
	text-align: left;
}

.rank-benefits li {
	color: rgba(255, 255, 255, 0.9);
	padding: 10px 0;
	padding-left: 25px;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-benefits li:last-child {
	border-bottom: none;
}

.rank-benefits li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #7ad4cc;
	font-weight: bold;
	font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.countdown-number {
		font-size: 36px;
	}
	
	.rank-box {
		margin-bottom: 30px;
	}
}
