:root {
	--primary-500: #f7a600;
	--background-color: #000000;
	--neutral-50: #ffffff;
	--white-04: rgba(255, 255, 255, 0.04);
	--white-06: rgba(255, 255, 255, 0.06);
	--white-08: rgba(255, 255, 255, 0.8);
	--white-10: rgba(255, 255, 255, 0.1);
	--white-12: rgba(255, 255, 255, 0.12);
	--white-20: rgba(255, 255, 255, 0.2);
	--white-30: rgba(255, 255, 255, 0.3);
	--white-60: rgba(255, 255, 255, 0.6);
	--primary-10: rgba(247, 166, 0, 0.1);
	--primary-12: rgba(247, 166, 0, 0.12);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: var(--background-color);
	color: var(--neutral-50);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
	width: 100%;
}

@media (max-width: 480px) {
	.container {
		max-width: 356px;
		padding: 0 16px;
	}

	.hero {
		padding: 64px 0 32px;
	}

	.hero-content {
		gap: 48px;
	}

	.section-header {
		gap: 32px;
	}

	.features-grid {
		flex-direction: column;
	}

	.stats-main {
		padding: 24px;
		gap: 12px;
	}

	.stats-main .stats-label {
		font-size: 16px;
	}

	.stats-item {
		display: flex;
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}

	.stats-row .stats-item {
		width: auto;
		min-width: auto;
	}
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 9;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(4px);
	padding: 12px 0;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.logo {
	height: 32px;
}

.logo img {
	height: 100%;
	width: auto;
}

.nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

.nav-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--white-60);
	text-decoration: none;
	letter-spacing: -0.4px;
	transition: color 0.2s;
}

.nav-link:hover {
	color: var(--neutral-50);
}

@media (max-width: 480px) {
	.nav {
		display: none;
	}
}

/* Buttons */
.btn {
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
	text-align: center;
	border-radius: 8px;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-primary {
	background-color: var(--primary-500);
	color: var(--background-color);
}

.btn-small {
	height: 28px;
	padding: 0 10px;
	font-size: 13px;
	letter-spacing: -0.3px;
}

.btn-large {
	height: 36px;
	padding: 0 16px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.3px;
}

@media (max-width: 480px) {
	.hero .btn-large {
		width: 100%;
	}
}

.btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 64px 0 32px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 722px;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	text-align: center;
}

.badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white-04);
	border: 1px solid var(--white-06);
	border-radius: 8px;
	padding: 0 12px;
	height: 32px;
	font-size: 13px;
	font-weight: 500;
	color: var(--white-60);
	backdrop-filter: blur(2px);
}

.badge-dot {
	width: 6px;
	height: 6px;
	background: var(--primary-500);
	border-radius: 50%;
	flex-shrink: 0;
}

.hero-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -1.52px;
	color: var(--neutral-50);
	margin: 0;
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 34px;
	}
}

.hero-description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--white-60);
	max-width: 700px;
}

.hero-description strong {
	color: var(--neutral-50);
	font-weight: 500;
}

.hero-features {
	display: flex;
	gap: 0;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 115px;
	opacity: 0.6;
}

.feature-item i {
	font-size: 18px;
}

.feature-item span {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
}

/* Section Styles */
.section {
	padding: 96px 0;
}

@media (max-width: 480px) {
	.section {
		padding: 64px 0;
	}
}

.section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	text-align: center;
	margin-bottom: 64px;
}

.section-badge {
	background: var(--white-06);
	border-radius: 9999px;
	padding: 0 12px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1px;
	text-transform: uppercase;
	color: var(--white-80);
}

@media (max-width: 480px) {
	.section-badge {
		height: 24px;
	}
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1.52px;
	color: var(--neutral-50);
	margin: 0;
}

@media (max-width: 480px) {
	.section-title {
		font-size: 24px;
	}
}

.section-description {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--white-60);
	letter-spacing: -0.16px;
}

@media (max-width: 480px) {
	.section-description {
		font-size: 14px;
	}
}

/* Features Grid */
.features-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.feature-card {
	background: var(--white-04);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: calc(50% - 6px);
}

@media (max-width: 480px) {
	.feature-card {
		width: 100%;
	}
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: var(--primary-10);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon i {
	font-size: 20px;
	color: var(--primary-500);
}

.feature-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	color: var(--neutral-50);
	margin: 12px 0 0;
}

@media (max-width: 480px) {
	.feature-title {
		font-size: 20px;
	}
}

.feature-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--white-60);
	margin: 0;
}

@media (max-width: 480px) {
	.feature-text {
		font-size: 14px;
	}
}

/* Steps */
.how-it-works .section-header {
	margin-bottom: 96px;
}

.steps {
	display: flex;
	gap: 48px;
	position: relative;
	align-items: flex-start;
}

.steps::before {
	content: '';
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(to right, transparent, var(--white-06), transparent);
	z-index: 1;
}

.step-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
	z-index: 2;
}

@media (max-width: 480px) {
	.how-it-works .section-header {
		margin-bottom: 64px;
	}

	.steps {
		flex-direction: column;
		gap: 48px;
	}

	.steps::before {
		display: none;
	}

	.step-item {
		width: 100%;
	}
}

.step-number {
	width: 64px;
	height: 64px;
	background: var(--primary-10);
	backdrop-filter: blur(4px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	color: var(--primary-500);
	letter-spacing: -1px;
	flex-shrink: 0;
}

.step-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	color: var(--neutral-50);
	margin: 0 0 10px;
}

@media (max-width: 480px) {
	.step-title {
		font-size: 20px;
	}
}

.step-text {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--white-60);
	text-align: center;
	margin: 0;
}

@media (max-width: 480px) {
	.step-text {
		font-size: 14px;
	}
}

/* Trader Card */
.trader-card {
	background: var(--white-04);
	border-radius: 16px;
	overflow: hidden;
}

.trader-badge-mobile {
	display: none;
}

.trader-header {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 24px;
}

.badge-verified-desktop {
	display: flex;
}

@media (max-width: 480px) {
	.trader-badge-mobile {
		display: block;
		padding: 0;
		background: var(--primary-12);
		border-radius: 16px 16px 0 0;
	}

	.trader-badge-mobile .badge-verified {
		width: 100%;
		border-radius: 16px 16px 0 0;
		justify-content: center;
	}

	.badge-verified-desktop {
		display: none;
	}
}

.trader-avatar {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
}

.trader-info {
	flex: 1;
}

.trader-name {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--neutral-50);
	margin: 0 0 6px;
	letter-spacing: -1px;
}

.trader-role {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-60);
	margin: 0;
	line-height: 1.2;
}

.badge-verified {
	background: var(--primary-12);
	border-radius: 8px;
	padding: 0 12px;
	height: 32px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1px;
	text-transform: uppercase;
	color: var(--primary-500);
}

.badge-verified i {
	font-size: 12px;
}

.trader-stats {
	display: flex;
	gap: 12px;
	padding: 24px;
	border-top: 1px solid var(--white-06);
}

@media (max-width: 480px) {
	.trader-stats {
		flex-wrap: wrap;
	}
}

.stat-item {
	flex: 1;
	background: var(--white-04);
	border-radius: 12px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

@media (max-width: 480px) {
	.stat-item {
		width: calc(50% - 6px);
		min-width: 148px;
	}
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--neutral-50);
}

.stat-header i {
	font-size: 16px;
	opacity: 0.6;
}

.stat-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--neutral-50);
}

.stat-positive {
	color: var(--primary-500);
}

.trader-trades {
	padding: 24px;
}

.trades-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--white-60);
	letter-spacing: -0.6px;
	margin: 0 0 24px;
}

.trades-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.trade-item {
	background: var(--white-04);
	border-radius: 12px;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.trade-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.trade-pair {
	display: flex;
	align-items: center;
	gap: 12px;
}

.trade-icon {
	width: 30px;
	height: 30px;
	background: var(--white-10);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trade-icon i {
	font-size: 16px;
	color: var(--neutral-50);
}

.trade-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.trade-pair span {
	font-size: 16px;
	font-weight: 600;
	color: var(--neutral-50);
	letter-spacing: -0.6px;
}

.trade-type {
	font-size: 14px;
	font-weight: 600;
	color: var(--white-60);
	letter-spacing: -0.6px;
}

.trade-result {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	height: 100%;
}

.trade-profit {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--neutral-50);
}

.trade-profit i {
	font-size: 16px;
	color: var(--primary-500);
}

.trade-time {
	font-size: 14px;
	font-weight: 600;
	color: var(--white-60);
}

/* Stats Card */
.stats-card {
	background: var(--white-04);
	border-radius: 16px;
	margin-bottom: 12px;
}

.stats-main {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.stats-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-60);
	line-height: 1.5;
	margin: 0;
}

.stats-value-large {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	color: var(--neutral-50);
	margin: 0;
}

@media (max-width: 480px) {
	.stats-value-large {
		font-size: 32px;
	}
}

.stats-row {
	display: flex;
	gap: 32px;
	padding: 24px;
	border-top: 1px solid var(--white-06);
}

@media (max-width: 480px) {
	.stats-row {
		justify-content: space-between;
		gap: 0;
	}
}

.stats-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.stats-number {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	color: var(--neutral-50);
	margin: 0;
}

@media (max-width: 480px) {
	.stats-number {
		font-size: 18px;
	}
}

.stats-label-small {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-60);
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 480px) {
	.stats-label-small {
		font-size: 13px;
	}
}

/* Reviews */
.reviews-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.review-card {
	background: var(--white-04);
	border-radius: 16px;
	width: calc(50% - 6px);
	overflow: hidden;
}

@media (max-width: 480px) {
	.review-card {
		width: 100%;
	}
}

.review-header {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 24px;
	position: relative;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
}

.review-user {
	flex: 1;
}

.review-name {
	font-size: 18px;
	font-weight: 500;
	color: var(--neutral-50);
	margin: 0 0 6px;
	letter-spacing: -1px;
}

.review-role {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-60);
	margin: 0;
}

.review-quote {
	font-size: 24px;
	color: var(--white-20);
	letter-spacing: -1px;
}

.review-stars {
	display: flex;
	gap: 6px;
	padding: 8px 24px;
	color: var(--primary-500);
	font-size: 14px;
}

.review-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--neutral-50);
	letter-spacing: -0.2px;
	padding: 0 24px 24px;
	margin: 0;
}

.review-profit {
	border-top: 1px solid var(--white-06);
	padding: 20px 24px;
	font-size: 15px;
	font-weight: 600;
	color: var(--primary-500);
	letter-spacing: -0.4px;
}

/* CTA Section */
.cta {
	position: relative;
	padding: 128px 0 128px;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

.cta .container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	text-align: center;
}

.cta-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1.52px;
	color: var(--neutral-50);
	margin: 0;
}

@media (max-width: 480px) {
	.cta-title {
		font-size: 24px;
	}
}

.cta-description {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--white-60);
	letter-spacing: -0.16px;
	margin: 0;
}

@media (max-width: 480px) {
	.cta-description {
		font-size: 14px;
	}

	.cta {
		padding: 64px 0;
	}
}

/* Footer */
.footer {
	padding: 48px 0;
}

.footer-content {
	display: flex;
	gap: 0;
	margin-bottom: 32px;
	gap: 32px;
}

.footer-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-column-1 {
	flex: 2;
}

.footer-logo img {
	height: 20px;
	width: auto;
	margin-bottom: 32px;
}

.footer-description {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--white-60);
	letter-spacing: -0.2px;
	margin: 0 0 35px;
}

@media (max-width: 480px) {
	.footer-description {
		font-size: 12px;
	}
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--neutral-50);
	letter-spacing: -0.2px;
}

.contact-item i {
	font-size: 16px;
	opacity: 0.3;
}

.footer-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--neutral-50);
	letter-spacing: -0.6px;
	margin: 0 0 24px;
}

@media (max-width: 480px) {
	.footer-title {
		font-size: 14px;
	}
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-links li {
	line-height: 1.2;
}

.footer-links a {
	font-size: 14px;
	font-weight: 500;
	color: var(--white-60);
	text-decoration: none;
	letter-spacing: -0.2px;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--neutral-50);
}

@media (max-width: 480px) {
	.footer-links a {
		font-size: 13px;
	}
}

.footer-divider {
	height: 1px;
	background: var(--white-10);
	margin-bottom: 32px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 13px;
	font-weight: 600;
	color: var(--neutral-50);
	letter-spacing: -0.6px;
}

.footer-copyright span {
	opacity: 0.6;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.footer-social svg {
	height: 20px;
	max-width: 30px;
	width: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.container {
		max-width: 100%;
		padding: 0 24px;
	}

	.hero-title {
		font-size: 40px;
	}

	.section-title {
		font-size: 32px;
	}

	.feature-card {
		width: 100%;
	}

	.steps {
		flex-wrap: wrap;
		gap: 32px;
	}

	.steps::before {
		display: none;
	}

	.trader-stats {
		flex-wrap: wrap;
	}

	.stat-item {
		min-width: calc(50% - 6px);
	}

	.review-card {
		width: 100%;
	}

	.footer-content {
		flex-wrap: wrap;
		gap: 32px;
	}

	.footer-column {
		min-width: calc(50% - 16px);
	}
}

@media (max-width: 768px) {
	.header-content {
		flex-wrap: wrap;
	}

	.nav {
		order: 3;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero {
		min-height: auto;
		padding: 64px 0 32px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-features {
		gap: 16px;
	}

	.section {
		padding: 64px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.section-description {
		font-size: 16px;
	}

	.steps {
		flex-direction: column;
		align-items: center;
	}

	.step-item {
		width: 100%;
		max-width: 300px;
	}

	.trader-header {
		flex-wrap: wrap;
	}

	.trader-stats {
		flex-direction: column;
	}

	.stat-item {
		width: 100%;
	}

	.stats-row {
		flex-direction: column;
		gap: 16px;
	}

	.cta {
		padding: 64px 0 64px;
	}

	.cta-title {
		font-size: 28px;
	}

	.footer-content {
		flex-direction: column;
	}

	.footer-column {
		width: 100%;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: #1f1f1fb0;
	border: 1px solid var(--white-06);
	border-radius: 16px;
	padding: 48px 32px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: none;
	color: var(--white-60);
	font-size: 20px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.2s;
	padding: 0;
}

.modal-close:hover {
	background: var(--white-06);
	color: var(--neutral-50);
}

.modal-spinner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.spinner {
	border: 3px solid var(--white-06);
	border-top: 3px solid var(--primary-500);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.spinner-text {
	font-size: 16px;
	font-weight: 500;
	color: var(--neutral-50);
	margin: 0;
}

.modal-payment {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.modal-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.modal-error-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 77, 77, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff4d4d;
	font-size: 32px;
}
.modal-success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff00;
	font-size: 32px;
	display: none;
}

.modal-success-title {
	display: none;
}

.modal-success .modal-success-icon,
.modal-success .modal-success-title {
	display: flex;
}
.modal-success .modal-error-icon,
.modal-success .modal-error-title {
	display: none;
}

.modal-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--neutral-50);
	margin: 0;
	letter-spacing: -1px;
}

.modal-text {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-60);
	line-height: 1.2;
	margin: 24px 0;
}

.modal-error .modal-text {
	margin: 0 0;
}

.modal-payment .btn,
.modal-error .btn {
	width: 100%;
}

@media (max-width: 480px) {
	.modal-content {
		padding: 32px 24px;
		max-width: 320px;
	}

	.modal-title {
		font-size: 20px;
	}

	.modal-text {
		font-size: 14px;
	}

	.spinner {
		width: 40px;
		height: 40px;
	}

	.spinner-text {
		font-size: 14px;
	}
}
