* {
	margin: 0;
	padding: 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #fff;
	margin: 0 0 25px 0;
	padding: 15px 0 0 0;
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 34px;
}

h4 {
	font-size: 30px;
}

h5 {
	font-size: 26px;
}

h6 {
	font-size: 22px;
}

p,
ul,
ol,
blockquote {
	margin-bottom: 15px;
	padding: 0;
	color: #a5a5a7;
	font-size: 16px;
}

ul,
ol {
	list-style-position: inside;
}

ul li,
ol li {
	line-height: 1.5em;
}
figure {max-width:100%;margin-bottom:15px;}
figcaption {padding:0; font-size:14px;font-style:italic;color:#fff;text-align:center;}
blockquote {
	box-shadow: inset 2px 0 #fde4a5;
	background-color: rgba(26, 26, 26, 0.7);
	padding: 20px;
	line-height: 2em;
	color: #fff;
	font-style: italic;
}

.container {
	width: calc(100% - 30px);
	max-width: 1180px;
	margin: 0 auto;
}

.caption-text {
	font-size: 13px;
    margin: 10px 0;
    color: #a5a5a7;
    text-align: center;
}

.btn {
	box-sizing: border-box;
	cursor: pointer;
	text-decoration: none;
	border-radius: 25px;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	height: 35px;
}

.btn-alfa {
	border: 1px solid #fde4a5;
	color: #fde4a5;
}

.btn-alfa:hover {
	background: linear-gradient(#d6b274, #fee5a5, #d6b274);
	color: #46433f;
}

.btn-beta {
	background: linear-gradient(#d6b274, #fee5a5, #d6b274);
	color: #46433f;
}

.btn-beta:hover {
	border: 1px solid #fde4a5;
	color: #fde4a5;
	background: none;
}

.header {
	background: #1a1a1c;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 1);
	height: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	max-width: 150px;
}

.header-btn {
	display: flex;
}

.header-btn .btn {
	min-width: 160px;
	margin-left: 10px;
}

.promo {
	color: #fff;
	padding: 30px;
	margin: 20px auto;
	width: 100%;
	max-width: 600px;
	border: 2px solid #fde4a5;
	background-color: rgba(26, 26, 26, 0.7);
	box-sizing: border-box;
	text-align:center;
}

.promo-title {
	font-size: 27px;
	font-weight: bold;
	text-align: center;
	display:block;

}


.promocode {font-weight:700;color:#fff;}
.promocode span { 
position:relative;display:inline-block;
margin-right:22px;
cursor:pointer;
color: #e9d81d;
}

.promocode span:after {
	content: '';
    -webkit-mask-image: url(/copy.svg);
    mask: url(/copy.svg);
    -webkit-mask-position: 50%;
    background-color: #e9d81d;
    position:absolute;
    width: 18px;
    height: 18px;
    top:2px;
	right:-22px;
}
.btn-promo {
	background: linear-gradient(to top, #088c4f, #0bb366, #088c4f);
	color: #fff;
	display: block;
	text-align:center;
	max-width: 200px;
	padding:10px;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 700;
	margin: 30px auto;
}

.content img {
	width: 100%;
	display: block;
	margin: 0 auto 15px;
	max-width: 980px;
}

.table-cnt {
	display: flex;
	justify-content: center;
}

table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e0e0e0;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	color: rgba(255, 255, 255, 1);
	margin-bottom: 15px;
}

td,
th {
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

tr:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.1);
}

.footer {
	background: #1a1a1c;
	padding: 35px 0 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid #a5a5a7;
	text-align: center;
	margin-top: 40px;
}

.footer-btns {
	display: flex;
	width: 300px;
	margin: 0 auto;
	justify-content: space-between;
	margin-bottom: 15px;
}

.footer-btns .btn {
	width: 49%;
}

.back-to-top {
	position: fixed;
	bottom: 150px;
	right: 20px;
	background: linear-gradient(#d6b274, #fee5a5, #d6b274);
	color: #46433f;
	padding: 10px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 16px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 1000;
	border: none;
	cursor: pointer;
}

html {
	scroll-behavior: smooth;
}

@media (max-width: 768px) {
	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 16px;
	}

	h6 {
		font-size: 12px;
	}

	.header {
		height: auto;
		padding-bottom: 15px;
	}

	.header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: column;
	}

	.logo {
		margin: 15px 0;
	}

	.header-btn {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.header-btn .btn {
		min-width: 20px;
		margin-left: 0;
		width: 49%;
	}

	.back-to-top {
		display: none !important;
	}
}

@media (max-width: 768px) {
    .table__wrapper {
        overflow-x: auto;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
}
