/*
Theme Name: Team2 Theme
Author: VD
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
	overflow-x: hidden;
}

body {
    background-color: #060e2a;
    color: #9296a2;
	padding-top: 80px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #060e2a;
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.logo img {
    max-height: 50px;
}
.desktop-menu {
    flex-grow: 1;
    text-align: center;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu li {
    display: inline-block;
    margin: 0 15px;
}
.menu li a {
    color: #9296a2;
    text-decoration: none;
    font-weight: bold;
}

.register-btn {
    background-color: #e45809;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
	text-transform:uppercase;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #f6da24;
    margin: 4px 0;
	border-radius:5px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #060e2a;
    text-align: center;
    padding: 20px 0;
}

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

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav li {
    margin: 25px 0;
}
.mobile-nav li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.main-container {
	margin: 0 auto;
    padding: 30px 50px;
	background: #060e2a;
    color: #9296a2;
	max-width: 1200px;
	line-height:24px;
}

h1, h2 {
	text-align:center;
	text-transform:uppercase;
	color:white;
}
h3 {text-align:center;}

li {margin-bottom:8px;}

a {text-decoration:unset;}

.alignright {float:right;}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 360px;
    background-size: cover;
    background-position: center;
    color: white;
	font-weight: 900;
}
.banner-content {
    padding: 20px 40px;
    border-radius: 5px;
	text-transform:uppercase;
}
.bonus-text {
    font-size: 24px;
    margin-bottom: 12px;
	color:white;
}
.bonus-count {
    font-size: 35px;
    margin-bottom: 15px;
	color:#f6da24;
}
.cta-btn {
    display: inline-block;
    background-color: #e45809;
    color: white;
    padding: 16px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.btn-content {
	text-align:center;
	text-transform:uppercase;
	font-weight:700;
}

.slots-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 30px auto;
}

.slot {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.slot img {
    width: 100%;
    display: block;
    transition: filter 0.3s ease;
}

.slot:hover img {
    filter: brightness(50%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgb(189 178 178 / 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button svg {
    width: 50px;
    height: 50px;
}

.slot:hover .play-button {
    opacity: 1;
}

table {border: 2px solid #e45809;border-radius: 8px;margin: 10px auto;}

td, th {padding: 5px;}

.faq h2, .faq h3, .faq p {text-align:left;}

footer {
    background-color: #080e21;
    text-align: center;
    padding: 25px 0;
    color: #9296a2;
}
.providers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 10px;
}
.providers img {
    max-height: 40px;
    filter: brightness(0.9);
}
.footer-line {
    width: 90%;
    height: 1px;
    background-color: #9296a2;
    margin: 12px auto;
}
.copyright {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    body {
	padding-top: 60px;
}
	.desktop-menu {
        display: none;
    }
	.logo img {
    max-height: 35px;
}
    .burger-menu {
        display: flex;
    }
	.register-btn {
    font-size: 10px;
}
	
	.main-container {
    padding: 30px 20px;
	}
	.alignright {float:none;}
	
	.slots-container {
        grid-template-columns: repeat(2, 1fr);
    }
	
	footer {
		padding: 20px;
	}
	
	.providers img {
    max-height: 25px;
	}
}