:root {
    --primary-color: #00ffc2; 
    --secondary-color: #ffcc00;
    --background-dark: #0a0a0e;
    --background-medium: #15151b;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-transform: uppercase;
    text-decoration: none !important;
}

.btn-login {
    text-decoration: none;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.btn-register, .btn-claim, .btn-play {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: 2px solid var(--primary-color);
}

.btn-register:hover, .btn-claim:hover, .btn-play:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-demo, .btn-more-games {
    background-color: var(--background-medium);
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-demo:hover {
    background-color: var(--border-color);
}

.header {
    background-color: var(--background-medium);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2em;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.hero-banner {
    padding: 0; 
    overflow: hidden;
    background-color: var(--background-dark); 
    background-image: none;
}

.hero-image-full {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px; 
}

.full-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-claim-btn {
    position: absolute;
    bottom: 25%; 
    right: 5%; 
    z-index: 10;
    padding: 15px 30px;
    font-size: 1.1em;
    display: none; 
}

.banner-claim-btn {
    position: absolute;
    top: 60%;
    right: 5%;
    width: 250px;
    height: 60px;
    background: transparent !important; 
    border: none !important;
    color: transparent !important;
    cursor: pointer;
    text-transform: none !important;
    font-size: 0;
    z-index: 10;
}

.game-slots {
    padding: 50px 0;
    text-align: center;
}

.game-slots h2 {
    font-size: 2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px;
    margin-bottom: 40px;
}

.slot-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slot-item:hover {
    transform: translateY(-5px);
}

.slot-item img {
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: filter 0.3s;
    background-color: var(--background-medium);
    aspect-ratio: 1 / 1.1;
    object-fit: cover; 
}

.slot-item:hover img {
    filter: brightness(0.5);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.slot-item:hover .slot-overlay {
    opacity: 1;
}

.slot-overlay button {
    margin: 5px 0;
    width: 80%;
}

.content-section {
    padding: 40px 0 60px;
    background-color: var(--background-medium);
}

.content-section thead {
    background-color: var(--background-medium); 
}

.content-section th {
    padding: 15px;
    text-align: left;
    color: var(--primary-color); 
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.content-section td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top; 
}

.content-section tbody tr:nth-child(odd) {
    background-color: var(--background-dark);
}

.content-section tbody tr:nth-child(even) {
    background-color: var(--background-medium);
}

.content-section tbody tr:hover {
    background-color: rgba(0, 255, 194, 0.08); 
    transition: background-color 0.2s ease;
}

.content-section tbody tr:last-of-type td {
    border-bottom: none;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
}

.seo-text {
    margin-bottom: 40px;
}

.seo-text h1 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seo-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}



.faq-accordion h2 {
    color: var(--text-light);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--background-dark);
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-body {
    background-color: var(--background-medium);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    color: var(--text-muted);
}

.accordion-body p {
    padding: 15px 0;
}

.footer {
    background-color: var(--background-dark);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    display: flex;
    flex-direction: column;
}

.payments-providers {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.footer h3 {
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-label, .provider-icon {
    padding: 5px 10px;
    background-color: var(--background-medium);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    color: var(--text-light);
    font-size: 0.8em;
}

.providers .provider-icon {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-section.links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-section.links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8em;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.license-info {
    margin-top: 5px;
}

.payment-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: var(--background-medium);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    height: 30px;
    box-sizing: border-box;
}

/* Само изображение иконки */
.payment-icon {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.payment-icon[alt="Mastercard"],
.payment-icon[alt="Skrill"] {
    filter: none;
}

@media (max-width: 992px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text, .hero-image {
        max-width: 100%;
        width: 100%;
    }
    .hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-text h1 {
        font-size: 2.5em;
    }
    .footer-section.links ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-content {
        flex-direction: column;
    }
    .auth-buttons {
        margin-top: 15px;
    }
    .auth-buttons button {
        margin: 0 5px;
    }
}