:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #00ff88;
    --secondary-color: #6c63ff;
    --card-bg: #1a1a1a;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.logo__img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo:hover .logo__img {
    transform: scale(1.05);
}

/* Стили для навигации */
.nav {
    position: relative;
    margin-left: auto;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), #ff6b6b, var(--accent-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav__list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), #ff6b6b, var(--accent-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    transition: width 0.3s ease;
}

.nav__list a:hover::after {
    width: 100%;
}

.nav__list a:hover {
    color: var(--accent-color);
}

/* Мобильное меню */
@media (max-width: 768px) {
    .header__inner {
        justify-content: center;
        position: relative;
        min-height: 60px;
        overflow: hidden;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }

    .logo__img {
        height: 90px;
    }

    .burger-menu {
        position: fixed;
        top: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 44px;
        height: 44px;
        background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), #ff6b6b, var(--accent-color));
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        border: none;
        cursor: pointer;
        padding: 12px;
        z-index: 1001;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        opacity: 0.8;
    }

    .burger-menu:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .burger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .burger-menu.active {
        background: linear-gradient(45deg, #ff6b6b, var(--accent-color), var(--secondary-color), #ff6b6b);
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
    }

    .burger-menu.active span {
        background: rgba(255, 255, 255, 0.95);
    }

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

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

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

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav__list.active {
        right: 0;
    }

    .nav__list::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, 
            rgba(0, 255, 136, 0.1),
            rgba(0, 255, 136, 0.05)
        );
        z-index: -1;
    }

    .nav__list li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav__list.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav__list.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav__list.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav__list.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav__list.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav__list.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav__list.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav__list.active li:nth-child(7) { transition-delay: 0.7s; }

    .nav__list a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), #ff6b6b, var(--accent-color));
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .nav__list a::after {
        background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), #ff6b6b, var(--accent-color));
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 100px 0;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* Promocodes */
.promocodes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promocode-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promocode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.promocode-card h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.promocode-field {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.promocode-field span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.promocode-field code {
    color: var(--accent-color);
    font-family: monospace;
    font-size: 1rem;
    font-weight: 500;
    flex-grow: 1;
}

.copy-btn {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.wager {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.get-bonus-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.get-bonus-btn:hover {
    background: linear-gradient(45deg, #fff, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

@media (max-width: 768px) {
    .promocodes__grid {
        grid-template-columns: 1fr;
    }
    
    .promocode-card {
        padding: 1.25rem;
    }
    
    .promocode-card h3 {
        font-size: 1.1rem;
    }
    
    .bonus-text {
        font-size: 0.9rem;
    }
    
    .promocode-field {
        padding: 0.5rem;
    }
    
    .promocode-field code {
        font-size: 0.9rem;
    }
    
    .copy-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .get-bonus-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Calculator */
.calculator__form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    grid-column: 1 / -1;
}

.calculate-btn:hover {
    background: linear-gradient(45deg, #fff, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.calculator__result {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator__table {
    width: 100%;
    border-collapse: collapse;
}

.calculator__table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.calculator__label {
    padding: 1rem 0;
    color: var(--text-color);
    font-size: 1rem;
    position: relative;
}

.calculator__value {
    padding: 1rem 0;
    text-align: right;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.calculator__error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1.5rem;
}

.tooltip {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    margin-left: 0.5rem;
    cursor: help;
    position: relative;
}

.tooltip-text {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 0.5rem;
    z-index: 1;
}

.tooltip:hover .tooltip-text {
    display: block;
}

@media (max-width: 768px) {
    .calculator__result {
        padding: 1rem;
    }
    
    .calculator__label {
        font-size: 0.9rem;
    }
    
    .calculator__value {
        font-size: 1rem;
    }
    
    .tooltip-text {
        width: 150px;
        font-size: 0.8rem;
    }
}

/* FAQ */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq__item, .test-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover, .test-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

.faq__question, .test-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.faq__question:hover, .test-question:hover {
    background: rgba(0, 0, 0, 0.4);
}

.faq__answer, .test-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer,
.test-item.active .test-content {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq__toggle, .test-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__toggle,
.test-item.active .test-toggle {
    transform: rotate(45deg);
}

/* Стили для тестов */
.test-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.test-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.question p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.question label {
    font-size: 14px;
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.question label:hover {
    color: var(--accent-color);
}

.question input[type="radio"] {
    margin-right: 0.5rem;
}

.test-submit {
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: #000;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.test-submit:hover {
    background: linear-gradient(45deg, #fff, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promocode-card, .calculator__result, .faq__item {
    animation: fadeIn 0.5s ease forwards;
}

/* Ratings Table */
.ratings-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ratings-table th,
.ratings-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ratings-table th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: var(--accent-color);
}

.ratings-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Slots */
.slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.slot-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.slot-card__header {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-card__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.slot-card__brand {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.slot-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.slot-card h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slot-card .provider {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.slot-card .rtp {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.slot-card .type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
    border-radius: 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.slot-card .description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.play-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: #000;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: linear-gradient(45deg, #fff, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

@media (max-width: 768px) {
    .slots__grid {
        grid-template-columns: 1fr;
    }
    
    .slot-card {
        padding: 1.25rem;
    }
    
    .slot-card h3 {
        font-size: 1.1rem;
    }
    
    .slot-card .provider,
    .slot-card .rtp,
    .slot-card .description {
        font-size: 0.8rem;
    }
    
    .slot-card .type {
        padding: 0.25rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .play-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .slot-card__header {
        padding: 1rem;
    }
    
    .slot-card__logo {
        width: 64px;
        height: 64px;
    }
    
    .slot-card__brand {
        font-size: 1.1rem;
    }
}

/* Responsive Tables */
@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .ratings-table {
        min-width: 800px;
    }

    .calculate-btn, .play-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Анимация градиента для заголовков */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1, h2, h3 {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color), #ff6b6b, var(--accent-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Стили для вкладок */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

/* Стили для карточек бонусов */
.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: none;
}

.bonus-card[data-tab="welcome"] {
    display: block;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.bonus-card__header {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-card__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bonus-card__brand {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.bonus-card__content {
    padding: 1.5rem;
}

.bonus-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.bonus-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-features li:last-child {
    border-bottom: none;
}

.get-bonus-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--bg-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.get-bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

/* Анимация появления карточек */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Стили для таблицы рейтингов */
.rating__container {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

.rating__table-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0 1rem;
    width: 100%;
}

.rating__tables {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.rating__table-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    width: 100%;
}

.ratings-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ratings-table th,
.ratings-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ratings-table th:first-child,
.ratings-table td:first-child {
    position: sticky;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.ratings-table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
}

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

.ratings-table td:first-child {
    font-weight: 500;
    color: var(--accent-color);
}

.rating__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rating__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.rating__nav-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

.rating__nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rating__nav-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .rating__table-wrapper {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .rating__table-slide {
        padding: 0;
        min-width: 315px;
        width: 105%;
    }
    
    .ratings-table {
        font-size: 11px;
        min-width: 315px;
        width: 105%;
        border-spacing: 0;
        table-layout: fixed;
    }

    .ratings-table th,
    .ratings-table td {
        padding: 6px 4px;
        white-space: nowrap;
        line-height: 1.2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ratings-table th:first-child,
    .ratings-table td:first-child {
        position: sticky;
        left: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
        min-width: 95px;
        max-width: 95px;
        padding-right: 6px;
    }

    .ratings-table th:nth-child(2),
    .ratings-table td:nth-child(2),
    .ratings-table th:nth-child(3),
    .ratings-table td:nth-child(3) {
        min-width: 110px;
        max-width: 110px;
        text-align: center;
    }

    .ratings-table th {
        font-weight: 500;
        padding: 8px 4px;
        background: rgba(0, 0, 0, 0.4);
    }

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

    .ratings-table td:first-child {
        font-weight: 500;
        color: var(--accent-color);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rating__container {
        margin: 0 -10px;
        width: calc(100% + 20px);
        padding: 0 10px;
    }

    .rating__nav {
        margin-top: 0.5rem;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .bonuses__grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }

    .bonus-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-right: 1rem;
        min-width: 0;
    }

    .bonus-card:last-child {
        margin-right: 0;
    }

    .bonus-card__header {
        padding: 1rem;
    }

    .bonus-card__content {
        padding: 1rem;
    }

    .bonus-card h3 {
        font-size: 1.1rem;
    }

    .bonus-card__logo {
        width: 48px;
        height: 48px;
    }
    
    .bonus-card__brand {
        font-size: 1.1rem;
    }

    .bonus-description {
        font-size: 0.9rem;
    }

    .bonus-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .get-bonus-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Скрываем полосу прокрутки */
    .bonuses__grid::-webkit-scrollbar {
        display: none;
    }
    
    .bonuses__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.promocode-card__header {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promocode-card__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.promocode-card__brand {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .promocode-card__header {
        padding: 1rem;
    }
    
    .promocode-card__logo {
        width: 48px;
        height: 48px;
    }
    
    .promocode-card__brand {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .section__title {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    .section__description {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .rating__container {
        margin-top: 1rem;
    }

    .slots__grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .bonuses__grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .promocodes__grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .calculator__form {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .calculator__result {
        margin-top: 1rem;
    }

    .faq__list {
        gap: 1rem;
    }

    .test-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
}

/* Библиотека знаний */
.knowledge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
    border-color: var(--accent-color);
}

.knowledge-card__content {
    padding: 2rem;
    text-align: center;
}

.knowledge-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.knowledge-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .knowledge__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .knowledge-card__content {
        padding: 1.5rem;
    }

    .knowledge-card h3 {
        font-size: 1.25rem;
    }

    .knowledge-card p {
        font-size: 0.9rem;
    }
}

/* Стили для статьи */
.article {
    padding: 150px 0 100px;
}

.article__content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article__content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.article__content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.article__content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article__content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.article__content ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.article__content ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .article {
        padding: 100px 0 50px;
    }

    .article__content {
        padding: 1.5rem;
    }

    .article__content h2 {
        font-size: 1.4rem;
    }

    .article__content h3 {
        font-size: 1.2rem;
    }

    .article__content p,
    .article__content ul li {
        font-size: 0.9rem;
    }
} 