/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #12121C;
    color: #ffffff;
    line-height: 1.6;
}

/* Скрываем кнопки авторизации в десктопной версии */
.header-auth {
    display: none;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 54, 84, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(237, 54, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 54, 84, 0);
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Применение анимаций к элементам */
.logo h1 {
    animation: pulseGlow 2s infinite;
}

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

/* Секции с анимациями */
.header {
    animation: slideInDown 0.8s ease-out forwards;
}

.banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #12121C, #1E1E2F);
    position: relative;
    overflow: hidden;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(237, 54, 84, 0.6);
    animation: fadeIn 1s ease-out forwards;
    background: linear-gradient(90deg, #ED3654, #9151F9, #4DFF7A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textGradient 5s linear infinite;
}

.game-filter {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.game-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.game-card:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.game-card:nth-child(even) {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.status-card {
    animation: scaleIn 0.8s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

.status-card:hover .status-image {
    animation: floatUpDown 2s ease-in-out infinite;
}

.btn-more, .btn-app, .btn-status {
    position: relative;
    overflow: hidden;
}

.btn-more::after, .btn-app::after, .btn-status::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, 
                 rgba(255,255,255,0) 0%, 
                 rgba(255,255,255,0.2) 50%, 
                 rgba(255,255,255,0) 100%);
    width: 200%;
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-more:hover::after, .btn-app:hover::after, .btn-status:hover::after {
    opacity: 1;
}

.payment-icon {
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.payment-icon:nth-child(1) { animation-delay: 0.1s; }
.payment-icon:nth-child(2) { animation-delay: 0.2s; }
.payment-icon:nth-child(3) { animation-delay: 0.3s; }
.payment-icon:nth-child(4) { animation-delay: 0.4s; }
.payment-icon:nth-child(5) { animation-delay: 0.5s; }
.payment-icon:nth-child(6) { animation-delay: 0.6s; }
.payment-icon:nth-child(7) { animation-delay: 0.7s; }

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.15s; }
.game-card:nth-child(3) { animation-delay: 0.2s; }
.game-card:nth-child(4) { animation-delay: 0.25s; }
.game-card:nth-child(5) { animation-delay: 0.3s; }
.game-card:nth-child(6) { animation-delay: 0.35s; }
.game-card:nth-child(7) { animation-delay: 0.4s; }
.game-card:nth-child(8) { animation-delay: 0.45s; }
.game-card:nth-child(9) { animation-delay: 0.5s; }
.game-card:nth-child(10) { animation-delay: 0.55s; }
.game-card:nth-child(11) { animation-delay: 0.6s; }
.game-card:nth-child(12) { animation-delay: 0.65s; }

.jackpot-item {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.jackpot-item:nth-child(1) { animation-delay: 0.1s; }
.jackpot-item:nth-child(2) { animation-delay: 0.3s; }
.jackpot-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.jackpot-sum {
    position: relative;
    background: linear-gradient(90deg, #4DFF7A, #9151F9, #4DFF7A);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textGradient 5s linear infinite;
}

@keyframes textGradient {
    to {
        background-position: 200% center;
    }
}

/* Остальные стили */
a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 54, 84, 0.4);
}

/* Хедер */
.header {
    background-color: #1E1E2F;
    padding: 15px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    overflow: visible;
}

.logo a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transform: scale(3);
    transform-origin: center;
}

.logo:hover {
    filter: brightness(1.3);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #ED3654;
    text-shadow: 0 0 10px rgba(237, 54, 84, 0.5);
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover {
    color: #ED3654;
}

.main-nav i {
    margin-right: 5px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    background-color: transparent;
    border: 1px solid #ED3654;
    color: #ED3654;
}

.btn-register {
    background-color: #ED3654;
    color: white;
}

.btn-help {
    background-color: transparent;
    color: #9151F9;
    font-size: 14px;
}

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

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

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #1E1E2F;
    z-index: 1000;
    padding: 20px;
    transition: all 0.4s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    display: none;
}

.mobile-menu.active {
    left: 0;
    display: block;
}

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

.mobile-menu .logo {
    font-size: 24px;
    font-weight: 700;
    color: #ED3654;
}

.close-menu {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-auth {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-auth .btn {
    width: 100%;
    text-align: center;
}

/* Баннер с джекпотами */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/ZjhhNzEuanBn_1.jpeg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.jackpot-block {
    position: relative;
    z-index: 1;
    text-align: center;
}

.jackpot-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(145, 81, 249, 0.6);
}

.jackpot-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.jackpot-item {
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    background: rgba(30, 30, 47, 0.8);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(145, 81, 249, 0.3);
}

.jackpot-name {
    font-size: 18px;
    color: #9151F9;
    margin-bottom: 5px;
    font-weight: 600;
}

.jackpot-sum {
    font-size: 24px;
    font-weight: 700;
    color: #4DFF7A;
}

/* Фильтры */
.game-filter {
    padding: 30px 0;
    background-color: #1E1E2F;
    margin-bottom: 30px;
}

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-type {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    background-color: #12121C;
    border: 1px solid #333345;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #ED3654;
    border-color: #ED3654;
}

.filter-provider select {
    padding: 8px 15px;
    background-color: #12121C;
    border: 1px solid #333345;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    min-width: 180px;
}

.filter-search {
    position: relative;
}

.filter-search input {
    padding: 8px 15px;
    padding-right: 40px;
    background-color: #12121C;
    border: 1px solid #333345;
    border-radius: 4px;
    color: #ffffff;
    min-width: 200px;
}

.filter-search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9151F9;
}

.filter-tags {
    display: flex;
    gap: 10px;
}

.tag {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.tag.hit {
    background-color: #ED3654;
    color: white;
}

.tag.new {
    background-color: #4DFF7A;
    color: #12121C;
}

/* Секция игр */
.games {
    padding: 20px 0 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background-color: #1E1E2F;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-image .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 28, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.game-overlay .btn {
    padding: 8px 15px;
    min-width: 120px;
    text-align: center;
}

.btn-play {
    background-color: #ED3654;
    color: white;
}

.btn-demo {
    background-color: transparent;
    border: 1px solid #9151F9;
    color: #9151F9;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-info title {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #ffffff;
}

.provider {
    font-size: 12px;
    color: #9151F9;
}

.more-games {
    text-align: center;
}

.btn-more {
    background-color: #9151F9;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
}

/* Мобильные приложения */
.mobile-apps {
    padding: 40px 0;
    background-color: #1E1E2F;
    text-align: center;
}

.mobile-apps h2 {
    margin-bottom: 30px;
}

.apps-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-app {
    background-color: #12121C;
    border: 1px solid #333345;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-app i {
    font-size: 24px;
}

.btn-app:hover {
    background-color: #1E1E2F;
    border-color: #9151F9;
}

/* VIP Статусы */
.vip-status {
    padding: 50px 0;
    background: linear-gradient(135deg, #12121C, #1E1E2F);
    text-align: center;
}

.vip-status h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(145, 81, 249, 0.6);
}

.status-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.status-card {
    background-color: rgba(30, 30, 47, 0.8);
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 81, 249, 0.3);
}

.status-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #ED3654;
}

.status-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #12121C;
    padding: 20px 0;
}

.status-info {
    padding: 20px;
}

.status-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ED3654;
}

.status-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4DFF7A;
}

.btn-status {
    background-color: #9151F9;
    color: white;
    width: 100%;
    text-align: center;
}

/* Футер */
.footer {
    background-color: #12121C;
    padding: 40px 0 20px;
    border-top: 1px solid #333345;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #9151F9;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a:hover {
    color: #ED3654;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E1E2F;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ED3654;
    transform: translateY(-3px);
}

.language-select {
    display: inline-block;
}

.language-select a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #1E1E2F;
    border-radius: 4px;
}

.license-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.license p, .responsible-gaming p {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.responsible-gaming strong {
    color: #ED3654;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333345;
}

.payment-icon {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #1E1E2F;
    border-radius: 8px;
    height: 40px;
    transition: all 0.3s ease;
}

.payment-icon img {
    height: 24px;
    width: auto;
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu, .auth-buttons {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jackpot-values {
        flex-direction: column;
        align-items: center;
    }
    
    .jackpot-item {
        width: 100%;
        max-width: 300px;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-provider select, .filter-search input {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .license-info {
        flex-direction: column;
    }
    
    .status-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .jackpot-block h2 {
        font-size: 28px;
    }
    
    .filter-type {
        justify-content: center;
    }
    
    .filter-type button {
        width: 45%;
    }
    
    .apps-block {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-app {
        width: 100%;
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-icon {
        width: 45%;
        justify-content: center;
    }
    
    .status-card {
        width: 100%;
    }
}

/* Медиа-запрос для мобильных устройств */
@media screen and (max-width: 768px) {
    .header-container {
        position: relative;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

    .burger-menu {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .close-menu {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .mobile-auth {
        display: flex;
        gap: 10px;
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-auth .btn {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    .mobile-auth .btn-login {
        background-color: transparent;
        border: 1px solid #ED3654;
        color: #ED3654;
    }

    .mobile-auth .btn-register {
        background-color: #ED3654;
        color: white;
    }

    .header-auth {
        display: flex;
        gap: 10px;
        position: absolute;
        bottom: -70px;
        left: 0;
        right: 0;
        padding: 10px 15px;
        background-color: #1E1E2F;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
    }

    .header-auth .btn {
        flex: 1;
        text-align: center;
        padding: 8px;
        font-size: 14px;
    }

    .header-auth .btn-login {
        background-color: transparent;
        border: 1px solid #ED3654;
        color: #ED3654;
    }

    .header-auth .btn-register {
        background-color: #ED3654;
        color: white;
    }

    .banner {
        margin-top: 40px;
    }
}

/* Чат-бот */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ED3654;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.chat-toggle i {
    /* Анимация будет добавлена через JavaScript */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.chat-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: #1E1E2F;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: none;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #ED3654;
    color: white;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.chat-body {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.message.bot {
    background-color: #2A2A3F;
    color: white;
    margin-right: auto;
}

.message.user {
    background-color: #ED3654;
    color: white;
    margin-left: auto;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #333345;
    border-radius: 5px;
    background-color: #12121C;
    color: white;
}

.chat-input button {
    background-color: #ED3654;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #d12d48;
}

/* Анимация для сообщений */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message {
    animation: slideIn 0.3s ease-out forwards;
}

/* Стили для раздела с информацией о Cactus Casino */
.cactus-info {
    padding: 50px 0;
    background: linear-gradient(135deg, #12121C, #1E1E2F);
}

.info-block {
    background-color: rgba(30, 30, 47, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(145, 81, 249, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.info-block h3 {
    font-size: 24px;
    color: #ED3654;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(237, 54, 84, 0.5);
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-block ul li {
    font-size: 16px;
    color: #4DFF7A;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.info-block ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9151F9;
}

/* Анимации для блоков информации */
.info-block {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.info-block:nth-child(1) { animation-delay: 0.1s; }
.info-block:nth-child(2) { animation-delay: 0.3s; }
.info-block:nth-child(3) { animation-delay: 0.5s; }

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .info-block {
        padding: 20px;
    }
    
    .info-block h3 {
        font-size: 20px;
    }
    
    .info-block p {
        font-size: 14px;
    }
    
    .info-block ul li {
        font-size: 14px;
    }
} 