* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--dark-bg: #0f0f10;
	--darker-bg: #080808;
	--card-bg: #1a1a1c;
	--teal: #14b8a6;
	--teal-dark: #0d9488;
	--cyan: #06b6d4;
	--text-primary: #ffffff;
	--text-secondary: #a1a1aa;
	--text-muted: #71717a;
	--border: #27272a;
	--sidebar-width: 240px;
	--header-height: 70px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background-color: var(--darker-bg);
	border-right: 1px solid var(--border);
	overflow-y: auto;
	z-index: 100;
	transition: transform 0.3s ease;
}

.sidebar-header {
	padding: 24px 20px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--teal);
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
}

.logo-text {
	color: var(--text-primary);
}

.mobile-close {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	cursor: pointer;
	padding: 8px;
}

.sidebar-nav {
	padding: 16px 0;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.nav-item:hover {
	background-color: var(--card-bg);
	color: var(--text-primary);
	border-left-color: var(--teal);
}

.nav-item svg {
	flex-shrink: 0;
}

.mobile-toggle {
	display: none;
	position: fixed;
	top: 7px;
	left: 7px;
	z-index: 99;
	background-color: var(--card-bg);
	border: 1px solid var(--border);
	color: var(--text-primary);
	padding: 10px;
	border-radius: 8px;
	cursor: pointer;
	--size: 46px;
	width: var(--size);
	min-width: var(--size);
	height: var(--size);
	min-height: var(--size);
}

.mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 99;
}

.mobile-overlay.active {
	display: block;
}

.main-content {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
}

.header {
	position: sticky;
	top: 0;
	height: var(--header-height);
	background-color: var(--darker-bg);
	border-bottom: 1px solid var(--border);
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	z-index: 50;
}

.header-actions {
	display: flex;
	gap: 12px;
}

.btn-primary,
.btn-secondary {
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
	color: var(--text-primary);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.btn-secondary:hover {
	background-color: var(--card-bg);
	border-color: var(--teal);
}

.carousel {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	background-color: var(--darker-bg);
}

.carousel-track {
	display: flex;
	height: 100%;
	will-change: transform;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
	width: 100%;
	height: 100%;
	position: relative;
	flex-shrink: 0;
}

.promo-slide {
	position: relative;
	overflow: hidden;
}

.promo-background {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	z-index: 0;
}

.promo-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.15;
	background-image: repeating-linear-gradient(
			45deg,
			transparent,
			transparent 35px,
			currentColor 35px,
			currentColor 70px
		),
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 35px,
			currentColor 35px,
			currentColor 70px
		);
	background-size: 100px 100px;
	z-index: 1;
}

.promo-blue {
	background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%);
}

.promo-orange {
	background: linear-gradient(135deg, #c2410c 0%, #ea580c 50%, #f97316 100%);
}

.promo-purple {
	background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 50%, #8b5cf6 100%);
}

.promo-green {
	background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
}

.promo-content {
	position: relative;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 48px 60px;
	gap: 40px;
	z-index: 2;
}

.promo-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 600px;
	flex: 1;
}

.promo-label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 12px;
}

.promo-title {
	font-size: 64px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 12px;
	line-height: 1.1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promo-description {
	font-size: 20px;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 24px;
	line-height: 1.4;
}

.promo-timer {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 8px;
}

.promo-subtitle {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.promo-image {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 320px;
}

.promo-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
	transition: transform 0.6s ease;
}

.carousel-slide.active .promo-image img {
	animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

.promo-percentage {
	display: flex;
	align-items: center;
	justify-content: center;
}

.percentage-badge {
	width: 140px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.2);
	border: 6px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	font-size: 48px;
	font-weight: 800;
	color: var(--text-primary);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.promo-btn {
	padding: 14px 48px;
	background-color: rgba(255, 255, 255, 0.95);
	color: #111;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	display: inline-block;
}

.promo-btn:hover {
	background-color: var(--text-primary);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-info {
	position: absolute;
	bottom: 24px;
	left: 32px;
	display: flex;
	align-items: center;
	gap: 16px;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 16px 24px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.provider-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
}

.slide-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
}

.slide-provider {
	font-size: 12px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--text-primary);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(10px);
	z-index: 10;
	opacity: 0.25;
}

.carousel-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-50%) scale(1.1);
	opacity: 1;
}

.carousel-prev {
	left: 24px;
}

.carousel-next {
	right: 24px;
}

.carousel-indicators {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.carousel-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	padding: 0;
}

.carousel-indicator.active {
	background-color: rgba(255, 255, 255, 0.95);
	width: 32px;
	border-radius: 5px;
}

.tabs {
	padding: 24px 32px 0;
	border-bottom: 1px solid var(--border);
}

.tabs-header {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
	display: none;
}

.tab-btn {
	padding: 10px 20px;
	background-color: transparent;
	border: none;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
	text-decoration: none;
}

.tab-btn:hover {
	color: var(--text-primary);
}

.tab-btn.active {
	color: var(--teal);
	border-bottom-color: var(--teal);
}

.slots {
	padding: 32px;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.section-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--teal);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.section-link:hover {
	color: var(--cyan);
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
}

.slot-card {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.slot-card:hover {
	transform: scale(1.05);
}

.slot-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slot-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.slot-card:hover .slot-overlay {
	opacity: 1;
}

.slot-play-btn {
	padding: 10px 32px;
	background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.slot-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	background-color: var(--teal);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}

.jackpot-label {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}

.providers {
	padding: 48px 32px;
	background-color: var(--darker-bg);
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.provider-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: all 0.2s ease;
	text-decoration: none;
}

.provider-logo:hover {
	border-color: var(--teal);
	transform: translateY(-2px);
}

.provider-logo img {
	max-width: 100%;
	height: auto;
	filter: grayscale(100%) brightness(0.7);
	transition: filter 0.2s ease;
}

.provider-logo:hover img {
	filter: grayscale(0%) brightness(1);
}

.footer {
	background-color: var(--darker-bg);
	border-top: 1px solid var(--border);
	padding: 48px 32px 24px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 32px;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-heading {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-link:hover {
	color: var(--teal);
}

.age-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: var(--teal);
	border-radius: 50%;
	font-size: 16px;
	font-weight: 700;
	margin-top: 12px;
}

.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.payment-methods img {
	height: 30px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.payment-methods img:hover {
	opacity: 1;
}

.footer-disclaimer {
	padding: 24px;
	background-color: var(--card-bg);
	border-radius: 12px;
	margin-bottom: 24px;
}

.footer-disclaimer p {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.6;
}

.footer-bottom {
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 14px;
}

@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.mobile-close {
		display: block;
	}

	.mobile-toggle {
		display: block;
	}

	.main-content {
		margin-left: 0;
	}

	.header {
		padding: 0 16px 0 64px;
	}

	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 16px;
	}

	.promo-content {
		flex-direction: column;
		gap: 32px;
		text-align: center;
		padding: 40px 32px;
	}

	.promo-text-content {
		align-items: center;
		max-width: 100%;
	}

	.promo-title {
		font-size: 52px;
	}

	.promo-image {
		width: 240px;
		height: 240px;
		display: none;
	}

	.promo-image img {
		max-width: 200px;
		max-height: 200px;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 60px;
	}

	.header {
		padding: 0 16px 0 56px;
	}

	.btn-secondary {
		display: none;
	}

	.carousel {
		height: 420px;
	}

	.promo-content {
		padding: 32px 24px;
		gap: 24px;
	}

	.promo-title {
		font-size: 44px;
	}

	.promo-description {
		font-size: 17px;
	}

	.promo-subtitle {
		font-size: 22px;
	}

	.promo-image {
		width: 200px;
		height: 200px;
	}

	.promo-image img {
		max-width: 160px;
		max-height: 160px;
	}

	.percentage-badge {
		width: 110px;
		height: 110px;
		font-size: 36px;
	}

	.promo-btn {
		padding: 12px 36px;
		font-size: 14px;
	}

	.slide-info {
		bottom: 16px;
		left: 16px;
		padding: 12px 16px;
	}

	.slide-title {
		font-size: 16px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
	}

	.tabs {
		padding: 16px;
	}

	.slots {
		padding: 24px 16px;
	}

	.section-title {
		font-size: 20px;
	}

	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 10px;
	}

	.providers {
		padding: 32px 16px;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 12px;
	}

	.footer {
		padding: 32px 16px 16px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 480px) {
	.carousel {
		height: 400px;
	}

	.promo-content {
		padding: 24px 16px;
	}

	.promo-title {
		font-size: 36px;
	}

	.promo-description {
		font-size: 15px;
	}

	.promo-subtitle {
		font-size: 20px;
	}

	.promo-image {
		width: 180px;
		height: 180px;
	}

	.promo-image img {
		max-width: 140px;
		max-height: 140px;
	}

	.slots-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.text-wrapper {
	margin: 80px 0;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	padding: 48px 32px;
}

.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;
	display: inline-block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.text-wrapper th {
	font-weight: 600;
}

@media (max-width: 991px) {
	.text-wrapper table {
		white-space: nowrap;
	}
}
@media (max-width: 768px) {
	.text-wrapper {
		padding: 32px 16px;
	}

	.text-wrapper li {
		list-style-position: inside;
	}

	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

@media (max-width: 480px) {
	.text-wrapper {
		margin: 40px 0;
	}
}
.text-wrapper .error {
	background-color: rgba(178, 34, 34, 0.5);
}
.text-wrapper .warning {
	background-color: rgba(178, 168, 34, 0.5);
}
.text-wrapper .success {
	background-color: rgba(34, 178, 34, 0.5);
}
.text-wrapper :is(.error, .warning, .success) {
	width: max-content;
	max-width: 100%;
	padding: 1rem;
}
.text-wrapper :is(.error, .warning, .success) > :first-child {
	margin-top: 0;
	padding-top: 0;
}
.text-wrapper :is(.error, .warning, .success) > :last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.accordion-item {
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	color: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: border-color 0.3s ease;
	background: transparent;
}

.accordion-header:hover {
	background: transparent;
}

.accordion-header.active {
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 2000px;
}

.accordion-body {
	padding: 16px 20px;
	color: inherit;
	line-height: 1.6;
	border-top: 1px solid #d0d0d0;
}
