* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(90deg, #300b2a 22.6%, #1b103a 91.15%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

ul {
  list-style-position: inside;
  list-style-type: decimal;
  font-size: 14px;
  margin-bottom: 15px;
}

img.scr {
    max-width: 600px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.header {
    background: rgba(15, 5, 25, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo svg {
    height: 35px;
    width: auto;
    display: block;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-login {
    background: linear-gradient(180deg, #78d4ff 0%, #4eb8f5 100%);
    color: #0a0518;
    border: none;
}

.btn-login:hover {
    background: linear-gradient(180deg, #8dddff 0%, #63c5ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3), 0 10px 25px rgba(100, 200, 255, 0.4);
}

.btn-register {
    background: linear-gradient(180deg, #ffd456 0%, #f5a623 100%);
    color: #0a0518;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(180deg, #ffe87a 0%, #ffb542 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3), 0 10px 25px rgba(255, 212, 86, 0.5);
}

.bonus-section {
    padding: 20px 0;
}

.bonus-card {
    background: url('images/banner.webp') center center / cover;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bonus-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.bonus-title {
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.bonus-list {
    list-style: none;
    margin-bottom: 25px;
    margin-top: 20px;
}

.bonus-list li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.bonus-list li:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ffd456;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.btn-bonus {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(180deg, #ffd456 0%, #f5a623 100%);
    color: #0a0518;
    font-size: 16px;
    text-align: center;
    border-radius: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-bonus:hover {
    background: linear-gradient(180deg, #ffe87a 0%, #ffb542 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3), 0 10px 25px rgba(255, 212, 86, 0.5);
}

.btn-bonus:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.games-section {
    padding: 2px 0;
}

.games-nav {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background: rgba(20, 10, 35, 0.7);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 0;
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    flex: 1;
}

.nav-item:hover {
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    background: linear-gradient(135deg, #d946ef 0%, #a855f7 50%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

.nav-item svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.game-card {
    background: rgba(26, 13, 46, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(80, 40, 120, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-card a {
    display: block;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(169, 69, 255, 0.6);
    box-shadow: 0 6px 16px rgba(169, 69, 255, 0.3);
}

.game-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: rgba(20, 10, 35, 0.8);
    overflow: hidden;
}

.game-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 212, 86, 0.9);
    border: none;
    color: #1a0d2e;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #ffd456;
    transform: scale(1.1);
}

.game-info {
    padding: 10px;
}

.game-info h4 {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.game-info .provider {
    color: #ffd456;
    font-size: 11px;
    margin-bottom: 2px;
    text-decoration: none;
}

.game-info .genre {
    color: #888;
    font-size: 10px;
    text-decoration: none;
}

.content-section {
    padding: 20px 0;
}

.content-section h1 {
    font-size: 26px;
    color: #ffd456;
    margin-bottom: 18px;
    text-align: left;

    line-height: 1.2;
    letter-spacing: 0;
}

.content-section h2 {
    font-size: 20px;
    margin: 25px 0 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.content-text {
    max-width: 100%;
    margin: 0;
    background: rgba(15, 8, 25, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: none;
}

.content-text p {
    margin-bottom: 14px;
    color: #ffffff;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0;
}

.content-text a {
    color: #ffd456;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 212, 86, 0.4);
    transition: all 0.3s ease;
}

.content-text a:hover {
    color: #ffe176;
    border-bottom-color: #ffe176;
}

.features-table {
    margin: 20px 0;
    overflow-x: auto;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 8, 25, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.features-table tr {
    border-bottom: 1px solid rgba(80, 40, 120, 0.2);
}

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

.features-table td {
    padding: 10px 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.features-table td:first-child {
    font-weight: 600;
    color: #ffd456;
    white-space: nowrap;
    width: 40%;
}

.footer {
    background: rgba(15, 10, 30, 0.95);
    border-top: 1px solid rgba(80, 40, 120, 0.3);
    padding: 20px 0 15px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo svg {
    height: 32px;
    width: auto;
}

.footer-providers,
.footer-partners {
    margin-bottom: 20px;
}

.footer-providers h3,
.footer-partners h3 {
    color: #ffd456;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
}

.providers-list,
.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.providers-list span,
.partners-list span {
    padding: 6px 12px;
    background: rgba(255, 212, 86, 0.1);
    border-radius: 16px;
    font-size: 12px;
    color: #d0d0d0;
}

.footer-disclaimers {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 212, 86, 0.1);
}

.footer-disclaimers p {
    margin-bottom: 10px;
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.age-restriction {
    background: linear-gradient(135deg, #ffd456 0%, #ffb120 100%);
    color: #1a0d2e;
    font-weight: 700;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.copyright {
    margin-top: 20px;
    font-size: 11px;
    color: #666;
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
    }

    .logo svg {
        height: 28px;
    }

    .header-buttons {
        gap: 8px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 11px;
    }

    .bonus-section {
        padding: 15px 0;
    }

    .bonus-card {
        padding: 25px 20px;
    }

    .bonus-content {
        max-width: 100%;
    }

    .bonus-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .bonus-list li {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .btn-bonus {
        width: 100%;
        padding: 12px;
    }

    .games-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
        border-radius: 20px;
        background: rgba(15, 8, 25, 0.8);
    }

    .nav-item {
        padding: 10px 12px;
        font-size: 13px;
        gap: 8px;
        flex: none;
        border-radius: 16px;
        font-weight: 700;
        box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3), 0 6px 16px rgba(0, 0, 0, 0.25);
        background: rgba(30, 15, 45, 0.7);
        color: #aaa;
    }

    .nav-item:hover {
        background: rgba(40, 20, 60, 0.8);
        color: #ddd;
    }

    .nav-item.active {
        background: linear-gradient(135deg, #d946ef 0%, #a855f7 50%, #8b5cf6 100%);
        color: #ffffff;
        box-shadow: 0 6px 0 rgba(0, 0, 0, 0.4), 0 8px 24px rgba(217, 70, 239, 0.5);
        transform: translateY(-2px);
    }

    .nav-item.nav-item-lobby {
        grid-column: 1 / -1;
    }

    .nav-item svg {
        width: 18px;
        height: 18px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .game-image {
        height: 140px;
    }

    .content-section {
        padding: 20px 0;
    }

    .content-section h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .content-section h2 {
        font-size: 18px;
        margin: 20px 0 12px;
    }

    .content-text {
        padding: 18px;
    }

    .content-text p {
        font-size: 14px;
    }

    .features-table {
        margin: 15px 0;
    }

    .features-table td {
        padding: 10px;
        font-size: 13px;
        display: block;
        width: 100%;
    }

    .features-table td:first-child {
        width: 100%;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(80, 40, 120, 0.2);
    }

    .features-table tr {
        display: block;
        padding: 8px;
    }

    .providers-list,
    .partners-list {
        gap: 8px;
    }

    .providers-list span,
    .partners-list span {
        padding: 6px 12px;
        font-size: 11px;
    }

    .footer {
        padding: 20px 0 12px;
    }

    .footer-logo svg {
        height: 28px;
    }

    .footer-providers h3,
    .footer-partners h3 {
        font-size: 14px;
    }

    .age-restriction {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 500px) {
    img.scr {
        width: 100%;
        margin-bottom: 10px;
    }
}

footer a{
    color: #fff;
}

