/*
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: #10192d;
    color: #fff;
	padding-top: 80px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #10192d;
    position: fixed;
	box-shadow: 0 1px 1px #0006;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, .3));
    top: 0;
    left: 0;
	right: 0;
	z-index: 1000;
}
.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: #adbdde;
    text-decoration: none;
    font-weight: bold;
	text-transform:uppercase;
}

.register-btn {
    background-color: #ff7f50;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    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: #adbdde;
    margin: 4px 0;
	border-radius:5px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ff7f50;
    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: #10192d;
    color: #adbdde;
	max-width: 1200px;
}

.content-block {background-color:#1a2640;border-radius:15px;padding:25px;padding-top:10px;}

h1, h2 {color:white;}

li {margin-bottom:8px;}

a {text-decoration:unset;}

b,i {color:#ff7f50;}

table {
        width: 100%;
        border-collapse: collapse;
        background-color: #1b2330;
        color: #d1d5db;
        margin: 20px 0;
    }
    th, td {
        padding: 15px 30px;
        text-align: left;
    }
    th {
        background-color: #2c3545;
        font-weight: bold;
    }
    tr {
        border-bottom: 1px solid #2c3545;
    }
    tr:last-child {
        border-bottom: none;
    }
    td:first-child {
        font-weight: bold;
        color: white;
    }

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 300px;
    background-size: cover;
    background-position: center;
    color: white;
	font-weight: 700;
}
.banner-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 40px;
    border-radius: 5px;
}
.bonus-text {
    font-size: 24px;
    margin-bottom: 12px;
	color:white;
}
.bonus-count {
    font-size: 35px;
    margin-bottom: 15px;
	text-transform:uppercase;
	color:white;
}
.cta-btn {
    display: inline-block;
    background-color: #ff7f50;
    color: white;
    padding: 12px 55px;
    border-radius: 12px;
    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: 12px;
    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;
    border:4px solid #ff7f50;
    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;
}

footer {
    background-color: #10192d;
    text-align: center;
    padding: 25px 0;
    color: #dadada;
	border-top:2px solid #5352ED;
}
.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);
}
.copyright {
	margin-top:10px;
    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;
    }
	
	.main-container {
    padding: 30px 20px;
	}
	
	.slots-container {
        grid-template-columns: repeat(2, 1fr);
    }
	
	footer {
		padding: 20px;
	}
	
	.providers img {
    max-height: 25px;
	}
	th, td {
        padding: 15px;
    }
}