/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #0a0b0f;
	color: #ffffff;
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Color Variables */
:root {
	--primary: #1fad66;
	--primary-dark: #fff;
	--accent: #fbbf24;
	--background: #0a0b0f;
	--card: #1a1b23;
	--border: #2a2b35;
	--text: #ffffff;
	--text-muted: #9ca3af;
	--success: #10b981;
	--danger: #ef4444;
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 11, 15, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-text {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--text);
}

.nav {
	display: flex;
	gap: 1.5rem;
}

.nav-link {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-link:hover {
	color: var(--text);
}

.auth-buttons {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.auth-buttons * {
	text-transform: uppercase;
}
/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 0.5rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 0.875rem;
}

.btn-primary {
	background: var(--primary);
	color: var(--background);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid transparent;
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--primary);
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn-small {
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
}

.btn-full {
	width: 100%;
}

.icon {
	width: 1rem;
	height: 1rem;
	stroke-width: 2;
}

.btn-large .icon {
	width: 1.25rem;
	height: 1.25rem;
}

/* Layout */
.main-layout {
	display: flex;
}

/* Sidebar */
.sidebar {
	width: 16rem;
	background: var(--card);
	border-right: 1px solid var(--border);
	height: calc(100vh - 4rem);
	position: sticky;
	top: 4rem;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.sidebar::-webkit-scrollbar {
	width: 0;
	background: transparent;
}

.sidebar-content {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.quick-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sidebar-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0 0.5rem;
}

.nav-items {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.5rem;
	border-radius: 0.5rem;
	color: var(--text);
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}

.nav-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
	background: rgba(101, 163, 13, 0.1);
	color: var(--primary);
	border: 1px solid rgba(101, 163, 13, 0.2);
}

.badge {
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.625rem;
	font-weight: 600;
	margin-left: auto;
}

.badge.live {
	background: rgba(239, 68, 68, 0.2);
	color: #fca5a5;
}

.badge.hot {
	background: rgba(251, 191, 36, 0.2);
	color: var(--accent);
}

/* Promo Card */
.promo-card {
	background: linear-gradient(
		135deg,
		rgba(101, 163, 13, 0.1),
		rgba(251, 191, 36, 0.1)
	);
	border: 1px solid rgba(101, 163, 13, 0.2);
	border-radius: 0.75rem;
	padding: 1rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.promo-icon {
	width: 2rem;
	height: 2rem;
	background: rgba(101, 163, 13, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: var(--primary);
}

.promo-card h4 {
	font-size: 0.875rem;
	font-weight: 600;
}

.promo-card p {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* Live Games */
.live-games {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.live-game-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: background 0.3s;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
}

.live-game-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.live-indicator {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.live-dot {
	width: 0.5rem;
	height: 0.5rem;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.live-indicator span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* Main Content */
.main-content {
	flex: 1;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-image {
	width: 100%;
	object-fit: contain;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.floating-elements {
	position: absolute;
	inset: 0;
	z-index: 3;
	overflow: hidden;
}

.float-element {
	position: absolute;
	border-radius: 50%;
	animation: float 3s ease-in-out infinite;
}

.float-element:nth-child(1) {
	top: 5rem;
	left: 2.5rem;
	width: 4rem;
	height: 4rem;
	background: rgba(251, 191, 36, 0.2);
}

.float-element:nth-child(2) {
	top: 10rem;
	right: 5rem;
	width: 3rem;
	height: 3rem;
	background: rgba(101, 163, 13, 0.2);
}

.float-element:nth-child(3) {
	bottom: 10rem;
	left: 25%;
	width: 5rem;
	height: 5rem;
	background: rgba(251, 191, 36, 0.1);
}

.float-element:nth-child(4) {
	top: 15rem;
	right: 33%;
	width: 2rem;
	height: 2rem;
	background: rgba(101, 163, 13, 0.3);
}

.hero-content {
	position: relative;
	z-index: 4;
	text-align: center;
	max-width: 64rem;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hero-text h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.hero-text .highlight {
	color: var(--primary);
}

.hero-text p {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.offer-card {
	display: inline-flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(101, 163, 13, 0.3);
	border-radius: 1rem;
	animation: pulse-glow 2s ease-in-out infinite;
}

.offer-icon {
	width: 4rem;
	height: 4rem;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--background);
}

.offer-icon .icon {
	width: 2rem;
	height: 2rem;
}

.offer-content {
	text-align: left;
}

.offer-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.offer-amount {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary);
	line-height: 1;
}

.offer-desc {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	padding-top: 2rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.feature .icon {
	color: var(--accent);
	fill: var(--accent);
}

.feature span {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	animation: bounce 2s infinite;
}

.scroll-mouse {
	width: 1.5rem;
	height: 2.5rem;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	padding-top: 0.5rem;
}

.scroll-dot {
	width: 0.25rem;
	height: 0.75rem;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 0.125rem;
	animation: pulse 2s infinite;
}

/* Slots Section */
.slots-section {
	padding: 5rem 0;
	background: rgba(26, 27, 35, 0.5);
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: bold;
	margin-bottom: 1rem;
}

.section-header .highlight {
	color: var(--primary);
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 48rem;
	margin: 0 auto;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 5rem;
}

.table-games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.game-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: all 0.3s;
	cursor: pointer;
}

.game-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
	position: relative;
	overflow: hidden;
}

.game-image img {
	width: 100%;
	height: 22rem;
	object-fit: cover;
	transition: transform 0.3s;
}

.game-card:hover .game-image img {
	transform: scale(1.05);
}

.popular-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: var(--accent);
	color: var(--background);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
}

.game-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
	opacity: 1;
}

.game-info {
	padding: 1rem;
}

.game-info h3 {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.game-info p {
	color: var(--text-muted);
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

.game-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.rating .icon {
	color: var(--accent);
	fill: var(--accent);
}

.rating span {
	font-weight: 500;
	font-size: 0.875rem;
}

.section-footer {
	text-align: center;
	margin-top: 3rem;
}

/* Info Section */
.info-section {
	padding: 5rem 0;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.info-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.info-content .highlight {
	color: var(--primary);
}

.info-description {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.feature-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.feature-icon {
	width: 3rem;
	height: 3rem;
	background: rgba(101, 163, 13, 0.1);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
}

.feature-item h3 {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.feature-item p {
	color: var(--text-muted);
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.info-image img {
	width: 100%;
	height: auto;
	border-radius: 1rem;
}

/* Footer */
.footer {
	background: var(--card);
	border-top: 1px solid var(--border);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-section a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: var(--text);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.footer-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--text);
	margin-bottom: 5px;
}
.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	transition: all 0.3s;
}

.social-link:hover {
	background: var(--primary);
	color: var(--background);
}

.payment-methods {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.payment-method {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem;
	border-radius: 0.25rem;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 500;
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 1rem;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.footer-badges .badge {
	background: rgba(101, 163, 13, 0.2);
	color: var(--primary);
	padding: 0.25rem 0.75rem;
	border-radius: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 0 !important;
}

/* Animations */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(101, 163, 13, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(101, 163, 13, 0.6);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		transform: translate3d(-50%, 0, 0);
	}
	40%,
	43% {
		transform: translate3d(-50%, -10px, 0);
	}
	70% {
		transform: translate3d(-50%, -5px, 0);
	}
	90% {
		transform: translate3d(-50%, -2px, 0);
	}
}
@media (min-width: 1025px) {
	#mobileMenu {
		display: none;
	}
}
/* Responsive Design */
@media (max-width: 1024px) {
	.main-layout {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		height: auto;
		position: static;
		order: 2;
	}

	.main-content {
		order: 1;
	}

	.nav {
		display: none;
	}

	.mobile-menu {
		display: flex;
	}
}

@media (max-width: 768px) {
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-features {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.offer-card {
		flex-direction: column;
		text-align: center;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cta-buttons {
		justify-content: center;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	.games-grid {
		grid-template-columns: 1fr;
	}

	.table-games-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.auth-buttons .btn:not(.mobile-menu) {
		display: none;
	}

	.table-games-grid {
		grid-template-columns: 1fr;
	}

	.hero-text h1 {
		font-size: 2rem;
	}

	.hero-text p {
		font-size: 1.125rem;
	}

	.offer-amount {
		font-size: 2rem;
	}
}

/* Hide sidebar on mobile by default */
@media (max-width: 1024px) {
	.regulatory-bar {
		top: 4rem;
	}
	.sidebar {
		display: none;
	}

	.sidebar.active {
		display: block;
		position: fixed;
		top: 4rem;
		left: 0;
		width: 16rem;
		height: calc(100vh - 4rem);
		z-index: 100;
		background: var(--card);
		border-right: 1px solid var(--border);
	}
}
.regulatory-bar {
	background: rgba(42, 43, 53, 0.9);
	border-bottom: 1px solid var(--border);
	padding: 0.5rem 0;
	font-size: 0.75rem;
	color: var(--text-muted);
	position: sticky;
	top: 4rem;
	z-index: 49;
	backdrop-filter: blur(5px);
}

.regulatory-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.regulatory-content .separator {
	color: var(--border);
}

@media (max-width: 480px) {
	.regulatory-content {
		font-size: 0.625rem;
		gap: 0.5rem;
	}
}
.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 {
	font-weight: 600;
}
.text-wrapper tr:nth-child(even) td {
	background: #666;
}

@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;
	}
}
@media (max-width: 991px) {
	.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;
	}
}
