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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #21060d;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.site-header {
    background-color: #401615;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #ffd700;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 110;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.categories-section {
    background-color: #21060d;
    padding: 20px 0;
    border-top: 1px solid #4a1a1f;
    border-bottom: 1px solid #4a1a1f;
}

.categories-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 12px;
    background-color: #401615;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    gap: 8px;
    flex-shrink: 0;
}

.category-item:hover {
    background-color: #4a1a1f;
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.category-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.category-item span {
    font-size: 11px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
}

.slots-section {
    background-color: #21060d;
    padding: 40px 0;
}

.slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.slots-header span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ver-todo {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ver-todo:hover {
    color: #ffed4e;
}

.ver-todo::after {
    content: "→";
    font-size: 16px;
}

.slots-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slots-slider::-webkit-scrollbar {
    display: none;
}

.slot-item {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid #8B4513;
}

.slot-item:hover {
    transform: scale(1.05);
}

.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.registration-section {
    background-color: #21060d;
    padding: 60px 0;
}

.registration-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.registration-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.registration-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.registration-steps,
.login-steps {
    margin-bottom: 40px;
    padding-left: 20px;
}

.registration-steps li,
.login-steps li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 10px;
}

.registration-steps ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.registration-steps ul li {
    font-size: 14px;
    margin-bottom: 8px;
    list-style-type: disc;
}

.troubleshooting-list {
    margin-bottom: 30px;
    padding-left: 0;
}

.troubleshooting-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.troubleshooting-list li::before {
    content: "→";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.troubleshooting-list strong {
    color: #ffd700;
}

.support-note {
    background-color: #401615;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    font-style: italic;
}

.registration-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-troubleshooting {
    margin-top: 50px;
    max-width: 100%;
}

.login-troubleshooting h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.login-troubleshooting p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.bonuses-section {
    background-color: #21060d;
    padding: 60px 0;
}

.bonuses-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonuses-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.bonuses-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: justify;
}

.bonuses-text strong {
    color: #ffd700;
    font-weight: 700;
}

.bonuses-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonuses-details {
    margin-bottom: 50px;
}

.bonuses-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: justify;
}

.bonuses-details strong {
    color: #ffd700;
    font-weight: 700;
}

.bonuses-table-container {
    margin-bottom: 40px;
}

.bonuses-table-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #401615;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bonuses-table th {
    background-color: #ffd700;
    color: #401615;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 12px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.bonuses-table td {
    padding: 15px 12px;
    color: #ffffff;
    border-bottom: 1px solid #4a1a1f;
    font-size: 14px;
    line-height: 1.4;
}

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

.bonuses-table tbody tr:hover {
    background-color: #4a1a1f;
    transition: background-color 0.3s ease;
}

.bonuses-footer {
    background-color: #401615;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.bonuses-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

.bonuses-footer strong {
    color: #ffd700;
}

.games-section {
    background-color: #21060d;
    padding: 60px 0;
}

.games-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-intro {
    margin-bottom: 50px;
}

.games-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify;
}

.games-category {
    margin-bottom: 60px;
}

.games-category h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
}

.category-content:nth-child(even) .category-image {
    order: -1;
}

.category-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

.category-text strong {
    color: #ffd700;
    font-weight: 700;
}

.category-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.games-features {
    margin-top: 40px;
}

.games-features h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 25px;
    margin-top: 40px;
    text-transform: uppercase;
}

.games-features h3:first-child {
    margin-top: 0;
}

.games-features p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

.games-features strong {
    color: #ffd700;
    font-weight: 700;
}

.payment-methods-section {
    background-color: #21060d;
    padding: 60px 0;
}

.payment-methods-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-content {
    margin-bottom: 50px;
}

.payment-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

.payment-content strong {
    color: #ffd700;
    font-weight: 700;
}

.payment-table-container {
    margin-bottom: 40px;
}

.payment-table-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #401615;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment-table th {
    background-color: #ffd700;
    color: #401615;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 12px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.payment-table td {
    padding: 15px 12px;
    color: #ffffff;
    border-bottom: 1px solid #4a1a1f;
    font-size: 14px;
    line-height: 1.4;
}

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

.payment-table tbody tr:hover {
    background-color: #4a1a1f;
    transition: background-color 0.3s ease;
}

.payment-footer {
    background-color: #401615;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.payment-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

.payment-footer strong {
    color: #ffd700;
}

.faq-section {
    background-color: #21060d;
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #401615;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: #4a1a1f;
}

.faq-question span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #ffd700;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    border-bottom-color: #4a1a1f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #2d1114;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    padding: 0 25px 20px 25px;
}

.site-footer {
    background-color: #401615;
    padding: 40px 0 20px 0;
    border-top: 2px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.disclaimer p,
.responsible-gaming p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 12px;
}

.disclaimer strong,
.responsible-gaming strong {
    color: #ffd700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #4a1a1f;
}

.copyright p,
.age-restriction p {
    font-size: 13px;
    color: #cccccc;
    margin: 0;
}

.age-restriction p {
    font-weight: 600;
}

.age-restriction strong {
    color: #ffd700;
    font-size: 16px;
}

.cta-button-container {
    text-align: center;
    margin-top: 30px;
}

.auth-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex: 0 0 auto;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    animation: pulse 2s infinite;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    animation: none;
}

.btn-register {
    background-color: #ffd700;
    color: #401615;
    border: 2px solid #ffd700;
    animation: pulse 2s infinite;
}

.btn-register:hover {
    background-color: #ffcc00;
    border-color: #ffcc00;
    animation: none;
}

.hero-section {
    position: relative;
    background-image: url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #ffffff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.bonus-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 400px;
}

.bonus-content {
    background-color: #401615;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 4px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.bonus-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
    z-index: -1;
}

.bonus-header {
    background-color: #ffd700;
    color: #401615;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bonus-offer {
    margin-bottom: 25px;
}

.bonus-amount {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.bonus-spins {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.bonus-extra {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
}

.btn-cta {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #45a049;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: none;
}

@media (max-width: 992px) {
    .bonus-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0;
    }
    
    .hero-section {
        flex-direction: column;
        padding: 60px 0;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disclaimer p,
    .responsible-gaming p {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .copyright p,
    .age-restriction p {
        font-size: 12px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question span:first-child {
        font-size: 15px;
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 10px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 0 20px 15px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-top: 15px;
    }
    
    .payment-methods-section {
        padding: 40px 0;
    }
    
    .payment-methods-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    

    
    .payment-table-container h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .payment-table {
        font-size: 12px;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .payment-table th {
        font-size: 11px;
    }
    
    .games-section {
        padding: 40px 0;
    }
    
    .games-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .games-intro {
        margin-bottom: 40px;
    }
    
    .games-intro p {
        font-size: 16px;
    }
    
    .games-category {
        margin-bottom: 50px;
    }
    
    .games-category h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .category-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-content .category-image {
        order: -1;
    }
    
    .games-features h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .bonuses-section {
        padding: 40px 0;
    }
    
    .bonuses-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .bonuses-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .bonuses-table-container h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .bonuses-table {
        font-size: 12px;
    }
    
    .bonuses-table th,
    .bonuses-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .bonuses-table th {
        font-size: 11px;
    }
    
    .registration-section {
        padding: 40px 0;
    }
    
    .registration-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .registration-text h3 {
        font-size: 20px;
    }
    
    .login-troubleshooting {
        margin-top: 40px;
    }
    
    .login-troubleshooting h3 {
        font-size: 20px;
    }
    
    .registration-steps,
    .login-steps {
        padding-left: 15px;
    }
    
    .troubleshooting-list li {
        padding-left: 15px;
    }
    
    .slots-section {
        padding: 30px 0;
    }
    
    .slots-header span {
        font-size: 20px;
    }
    
    .ver-todo {
        font-size: 12px;
    }
    
    .slot-item {
        width: 160px;
        height: 220px;
    }
    
    .bonus-badge {
        top: 10px;
        right: 10px;
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .categories-section {
        padding: 15px 0;
    }
    
    .category-item {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .category-item img {
        width: 20px;
        height: 20px;
    }
    
    .category-item span {
        font-size: 9px;
    }
    
    .site-header {
        padding: 8px 0;
    }
    
    .header-wrapper {
        flex-wrap: nowrap;
    }
    
    .logo {
        flex: 0 0 auto;
        margin-right: 10px;
    }
    
    .logo img {
        height: 38px;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #401615;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 100;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        margin: 0;
        justify-content: flex-start;
        flex: none;
        display: block;
    }
    
    .auth-buttons {
        flex: 0 1 auto;
        margin-right: 40px;
        justify-content: center;
        gap: 8px;
    }
    
    .burger-menu {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .auth-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .bonus-amount {
        font-size: 28px;
    }
    
    .bonus-spins {
        font-size: 24px;
    }
    
    .bonus-extra {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 35px;
    }
    
    .btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .auth-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .hero-section {
        padding: 40px 0;
        background-position: 60% center;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn {
        padding: 5px 8px;
        font-size: 11px;
        width: auto;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .bonus-content {
        padding: 20px;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 16px;
    }
}

