/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a {
text-decoration: none;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #000;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #f0f0f0;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	height: 2rem;
	background: #000;
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon span {
	color: #ff5101;
	font-weight: 700;
	font-size: 0.875rem;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 300;
	color: #000;
}

/* Buttons */
.btn {
	border: none;
	border-radius: 9999px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background: #ff5101;
	color: #fff;
	padding: 0.5rem 2rem;
}

.btn-primary:hover {
	background: #ff7231;
	color: #fff;
	transform: translateY(-1px);
}

.btn-large {
	padding: 1rem 3rem;
	font-size: 1.125rem;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('/Desktop_ALL_TZ_BONUS_FOR_EACH_DEPOSIT_04.25.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: white;
	padding: 0 1rem;
	max-width: 64rem;
	margin: 0 auto;
}

.hero-title {
	font-size: 3rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.hero-description {
	font-size: 1.125rem;
	margin-bottom: 3rem;
	opacity: 0.8;
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

/* Features Section */
.features {
	padding: 5rem 0;
	background: #f9f9f9;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2rem;
	font-weight: 300;
	color: #000;
	margin-bottom: 1rem;
}

.section-header p {
	color: #666;
	font-size: 1.125rem;
	max-width: 32rem;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 80rem;
	margin: 0 auto;
}

.feature-card {
	background: white;
	padding: 2rem;
	text-align: center;
	border-radius: 0.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.feature-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	width: 4rem;
	height: 4rem;
	background: rgba(255, 215, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #ff5101;
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #000;
	margin-bottom: 1rem;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}
.feature-card * {
text-decoration: none;
}

/* Bonus Section */
.bonus {
	padding: 5rem 0;
	background: #000;
	color: white;
	text-align: center;
}

.bonus-content {
	max-width: 48rem;
	margin: 0 auto;
}

.bonus-icon {
	width: 5rem;
	height: 5rem;
	background: rgba(255, 215, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: #ff5101;
}

.bonus h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
}

.bonus-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.bonus-description {
	color: #ccc;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 3rem 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.footer-logo-icon {
	background: white;
}

.footer-section h4 {
	font-weight: 500;
	margin-bottom: 1rem;
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.footer-info * {
color: #fff;
text-decoration: none;
}
.footer-info a:hover {
color: #ff5101;
}
.footer-info p {
	font-size: 0.875rem;
	color: #ccc;
}

.footer-section p {
	font-size: 0.875rem;
	color: #ccc;
	line-height: 1.6;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 2rem;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.875rem;
	color: #ccc;
}

/* Responsive Design */
@media (min-width: 768px) {
	.hero-title {
		font-size: 4.5rem;
	}

	.hero-subtitle {
		font-size: 1.5rem;
	}

	.section-header h2 {
		font-size: 2.5rem;
	}

	.bonus h2 {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.header-content {
		padding: 0.75rem 0;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.features {
		padding: 3rem 0;
	}

	.bonus {
		padding: 3rem 0;
	}

	.footer {
		padding: 2rem 0;
	}

	.btn-large {
		padding: 0.875rem 2rem;
		font-size: 1rem;
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
button:focus {
	outline: 2px solid #ff5101;
	outline-offset: 2px;
}
.text-wrapper {
	margin: 80px 0;
	padding: 0;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.text-wrapper p {
	margin: 0 0 1.2em;
	line-height: 1.6;
}

.text-wrapper strong,
.text-wrapper b {
	font-weight: 600;
}
.text-wrapper em,
.text-wrapper i {
	font-style: italic;
}
.text-wrapper mark {
	background: #fffb91;
	padding: 0 2px;
}
.text-wrapper del {
	text-decoration: line-through;
}
.text-wrapper sup {
	font-size: 0.8em;
	vertical-align: super;
}
.text-wrapper sub {
	font-size: 0.8em;
	vertical-align: sub;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 2em 0 1em;
	line-height: 1.3;
}

.text-wrapper ul,
.text-wrapper ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}

.text-wrapper li {
	margin-bottom: 0.4em;
	list-style-position: outside;
}

.text-wrapper dl {
	margin: 1.5em 0;
}
.text-wrapper dt {
	font-weight: 600;
}
.text-wrapper dd {
	margin: 0 0 1em 1.5em;
}

.text-wrapper a {
	text-decoration: underline;
	transition: all 0.2s;
}
.text-wrapper a:hover {
	font-weight: 600;
}

.text-wrapper code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.9em;
}
.text-wrapper pre {
	background: #272822;
	color: #f8f8f2;
	padding: 1em;
	overflow-x: auto;
	border-radius: 6px;
	margin: 1.5em 0;
}
.text-wrapper pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.text-wrapper hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid #ddd;
}

.text-wrapper img,
.text-wrapper video,
.text-wrapper iframe {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
	display: block;
	border-radius: 6px;
}

.text-wrapper figure {
	margin: 2em 0;
	text-align: center;
}
.text-wrapper figcaption {
	margin-top: 0.5em;
	font-style: italic;
	opacity: 0.8;
}

.text-wrapper blockquote {
	margin: 2em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #ccc;
	background: #f9f9f9;
	border-radius: 4px;
}
.text-wrapper blockquote p:last-child {
	margin-bottom: 0;
}

.text-wrapper > *:last-child {
	margin-bottom: 0;
}

.text-wrapper table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: #f7f7f7;
	font-weight: 600;
}
.text-wrapper tr:nth-child(even) td {
	background: #fafafa;
}

@media (max-width: 767px) {
	.text-wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		border-radius: 6px;
	}

	.text-wrapper th,
	.text-wrapper td {
		white-space: normal;
		word-break: break-word;
	}

	.text-wrapper li {
		list-style-position: inside;
	}
}

.text-wrapper table.scrollable {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	border-radius: 6px;
}

.text-wrapper table.scrollable th,
.text-wrapper table.scrollable td {
	white-space: nowrap;
	word-break: normal;
}

.text-wrapper table.scrollable::-webkit-scrollbar {
	height: 6px;
}
.text-wrapper table.scrollable::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}
.text-wrapper table.scrollable::-webkit-scrollbar-track {
	background: transparent;
}

@media (max-width: 480px) {
	.text-wrapper {
		margin: 60px 0;
	}
	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}
.accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	background: #f8f9fa;
	padding: 16px 20px;
	cursor: pointer;
	font-weight: bold;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.accordion-header:hover {
	background: #e9ecef;
}

.accordion-header.active {
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: white;
}

.accordion-content.active {
	max-height: 300px;
}

.accordion-body {
	padding: 16px 20px;
	color: #555;
	line-height: 1.6;
}
