/*
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
*/

*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    background-color: #fdfdff;
    color: #472d59;
    padding-top: 80px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #38cce7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.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: #fff;
    text-decoration: none;
    font-weight: bold;
}

.register-btn {
    background-color: #a3124f;
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.register-btn:hover,
.register-btn:focus {
    background-color: #8a0f43;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #fdfdff;
    margin: 4px 0;
    border-radius: 5px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #a3124f;
    text-align: center;
    padding: 20px 0;
    z-index: 999;
}

.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;
}

.mobile-register-btn {
    display: inline-block;
    background-color: #38cce7;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.main-container {
    margin: 0 auto;
    padding: 30px 50px;
    background: #fdfdff;
    color: #472d59;
    max-width: 1200px;
    line-height: 29px;
    font-size: 17px;
}

h1, h2 {
    text-align: center;
    text-transform: uppercase;
    color: #a3124f;
}

li {
    margin-bottom: 8px;
}

a {
    text-decoration: none;
}

.main-container a:not(.play-button):not(.cta-btn) {
    color: #a3124f;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.main-container a:not(.play-button):not(.cta-btn):hover,
.main-container a:not(.play-button):not(.cta-btn):focus {
    color: #38cce7;
    text-decoration-color: #38cce7;
}

.main-container a:not(.play-button):not(.cta-btn):visited {
    color: #8a0f43;
}

.main-container a:not(.play-button):not(.cta-btn):focus {
    outline: 2px solid #38cce7;
    outline-offset: 2px;
    border-radius: 2px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    text-align: left;
}

td {
    padding: 12px;
    border: 1px solid #ddd;
}

th {
    background-color: #38cce7;
    color: white;
    padding: 12px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
    transition: background-color 0.3s;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    color: white;
    font-weight: 700;
    padding: 40px 20px;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.banner-content {
    position: relative;
    z-index: 1;
    padding: 20px 40px;
    text-transform: uppercase;
}

.bonus-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 6px 22px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.bonus-headline {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.cta-btn {
    display: inline-block;
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    font-style: italic;
    text-transform: uppercase;
    margin-top: 10px;
    background: linear-gradient(180deg, #ffcf4a 0%, #ff6b9d 30%, #e83070 70%, #ff6b9d 100%);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.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: 15px;
    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: 60px;
    height: 60px;
    background-color: #38cce7;
    border-radius: 10%;
    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: #f4f2fb;
    text-align: center;
    padding: 30px 20px;
    color: #7e6294;
}

.providers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 10px;
}

.providers img {
    max-height: 40px;
    background: #e8e3f4;
    border-radius: 8px;
    padding: 5px;
}

.footer-line {
    width: 80%;
    max-width: 900px;
    height: 1px;
    background-color: #7e6294;
    margin: 20px auto;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0 20px;
}

.footer-links a {
    color: #472d59;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #a3124f;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(71, 45, 89, 0.08);
}

.info-table td {
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid #e8e3f4;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: bold;
    color: #a3124f;
    background: rgba(163, 18, 79, 0.05);
    width: 40%;
}

.info-table tr:hover {
    background-color: rgba(56, 204, 231, 0.08);
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.content-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #38cce7 0%, #a3124f 100%);
    border-radius: 50%;
}

.numbered-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.numbered-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.numbered-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #a3124f 0%, #e83070 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 25px;
    background: #f8f6fc;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #a3124f;
}

.faq-item h3 {
    color: #a3124f;
    margin: 0 0 15px 0;
    font-size: 18px;
    text-transform: none;
    text-align: left;
}

.faq-item p {
    margin: 0;
    color: #472d59;
}

h3 {
    color: #a3124f;
    margin-top: 35px;
    text-transform: none;
    text-align: left;
}

.compact-table {
    font-size: 15px;
}

.compact-table td,
.compact-table th {
    padding: 10px 12px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f6fc 0%, #e8e3f4 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #38cce7;
}

.highlight-box p {
    margin: 0;
}

@media (max-width: 1024px) {
    .slots-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu li {
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 55px;
    }

    header {
        padding: 10px 20px;
        gap: 10px;
    }

    .desktop-menu {
        display: none;
    }

    .logo img {
        max-height: 35px;
    }

    .register-btn {
        flex-shrink: 0;
    }

    .burger-menu {
        display: flex;
        flex-shrink: 0;
    }

    .main-container {
        padding: 30px 20px;
    }

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

    .banner {
        min-height: 420px;
    }

    footer {
        padding: 20px;
    }

    .providers img {
        max-height: 25px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 48px;
    }

    header {
        padding: 10px 12px;
        gap: 8px;
    }

    .logo img {
        max-height: 28px;
    }

    .register-btn {
        padding: 12px 20px;
    }

    .mobile-menu {
        top: 48px;
    }

    .banner {
        min-height: 380px;
    }

    .bonus-label {
        font-size: 12px;
        padding: 5px 16px;
    }

    .bonus-headline {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .cta-btn {
        padding: 16px 36px;
        font-size: 17px;
    }
}
