* {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	background: #131313;
	color: #fff;
	font-size: 18px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
	text-decoration: none;
	color: #fff;
}

.header {
	background: #212121;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 999;
}

.header-wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 0 15px;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-navi {
	display: flex;
	align-items: center;
}

.header-navi ul {
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	min-width: 340px;
	margin-right: 10px;
}

.header-navi ul li {
	width: 49%;
}

.header-navi ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	height: 40px;
	width: 100%;
}

.red-nav a {
	background: #ee3535;
	background-image: linear-gradient(to bottom, #ee3535, #900707);
	color: #fff;
}

.red-nav a:hover {
	background: #ff1000;
	color: #fff;
}

.grey-nav a {
	background: #f3f3f3;
	background-image: linear-gradient(to bottom, #f3f3f3, #dedede);
	color: #000;
	margin-right: 15px;
}

.grey-nav a:hover {
	background: #000;
	color: #fff;
}
* {box-sizing:border-box;}
.bonus {

  width: 100%;
  max-width: 1230px;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
 
  margin-bottom: 30px;
}

.bonus-text {
	background: rgba(0, 0, 0, 0.78);
	border-radius: 30px;
	min-height: 350px;
	width: 100%;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	text-align: center;
}

.bonus-text span:nth-child(2) {
	font-size: 48px;
	background: #ee3535;
	padding: 10px 30px;
	margin: 10px 0;
	border-radius: 3px;
	font-weight: 900;
}

.bonus-text a {
	padding: 10px 35px;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	background: #f3f3f3;
	border-radius: 35px;
	font-weight: bold;
	margin-top: 15px;
}

.bonus-text a:hover {
	background: #ee3535;
	color: #fff;
}

.content {
	padding: 25px;
	width: 95%;
	max-width: 1200px;
	margin-top: 35px;
	margin-left: auto;
	margin-right: auto;
	background-color: #212121;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
}

.content h1 {
	color: #f8f9fa;
	margin-bottom: 35px;
	font-size: 2.5rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.content h2 {
	color: #ecf0f1;
	margin-bottom: 28px;
	font-size: 2rem;
}

.content table {
	max-width: 98%;
	border-collapse: collapse;
	margin: 25px auto;
	background-color: #34495e;
	border-radius: 5px;
	overflow: hidden;
}

.content table thead td {
	color: #ffeb99;
	font-weight: 600;
	text-align: center;
	font-size: 1.1rem;
	background-color: #16a085;
	padding: 12px;
}

.content table td {
	border: 1px solid rgba(255, 235, 153, 0.7);
	padding: 12px 8px;
	color: #f1f1f1;
	background-color: rgba(44, 62, 80, 0.8);
}

.content img {
	max-width: 90%;
	display: block;
	height:auto;
	margin: 25px auto;
	border: 3px solid #f39c12;
	border-radius: 5px;
}

.content p {
	margin-bottom: 25px;
	color: #bdc3c7;
	font-size: 1.1rem;
	line-height: 1.8;
}

.content ul,
.content ol {
	margin-bottom: 25px;
	list-style-position: inside;
	color: #ffcc66;
	line-height: 36px;
	padding-left: 15px;
}

.content blockquote {
	background: rgba(255, 235, 153, 0.6);
	color: #f9ca24;
	margin-bottom: 25px;
	padding: 25px;
	border-left: 5px solid #f39c12;
	font-style: italic;
}

.bottom {
	background: #212121;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.bottom-wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 20px 0;
	text-align: center;
}

.botnav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.botnav ul {
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	min-width: 340px;
	margin-right: 10px;
}

.botnav ul li {
	width: 49%;
}

.botnav ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	height: 40px;
	width: 100%;
}

@media (max-width: 640px) {
	.header-wrapper {
		flex-wrap: wrap;
		padding: 15px 0;
		justify-content: center;
		height: auto;
	}

	.header-navi {
		width: calc(100% - 10px);
		margin: 20px auto 0 auto;
		display: flex;
	}

	.header-navi ul {
		width: 100%;
		min-width: auto;
	}

	.bonus-text span:nth-child(2) {
		font-size: 28px;
	}

	.content h1,
	.content h2 {
		font-size: 1.5em;
	}

	.content table,
	.content table thead td {
		font-size: 14px;
	}

	.content table td {
		padding: 11px 4px;
	}

	.content {
		padding: 20px 5px;
	}

	.botnav img {
		display: none;
	}

	.botnav ul {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-width: 200px;
	}
	.botnav ul li {
		width: 90%;
		margin-bottom: 10px;
	}
	.bot-copy {
		font-size: 14px;
	}
	.botnav ul a {
		margin: 0px;
	}
}
.clear {
  clear: both;
}
.casino-preview {background:rgba(0,0,0,0.1);width:50%;padding:0;margin-bottom:15px;float:left;display: flex;
 justify-content: space-between;
 align-items: center;}
 .bonus {padding:0 15px;}
.casino-preview__logo-wrapper {width:30%;}
.casino-preview__bonus {width:50%;padding:0 15px;font-size:15px;}
.casino-preview__link {width:20%;padding-right:15px;}
.casino-preview__logo-wrapper img {width:100%;height:auto;display:block;}
a.casino-preview__name {text-align:center;display:block;max-width:200px;margin:0 auto;color:#fff;font-weight:700;background-image: linear-gradient(to bottom, #ee3535, #900707);border-radius:10px;padding:10px;}
@media (max-width:991px) {
.casino-preview {width:100%;max-width:100%;float:none;}

}
@media (max-width:575px) {
.casino-preview__logo-wrapper {width:20%;}
.casino-preview__bonus {width:55%;}
.casino-preview__link {width:25%;}

}