
.casino-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 60px 0 60px;
    gap: 16px;
    flex-wrap: wrap;
}

.casino-grid-header h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1 1 auto;
    min-width: 120px;
}

.search-input {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    width: 240px;
    background: #333;
    color: #fff;
    flex: 0 0 240px;
    max-width: 100%;
    margin-left: auto;
}

.container-fluid {
    background-image: linear-gradient(315deg, #16191d 0%, #252a2e 100%);
    border: 1px solid #464646;
    border-radius: 15px;
}

/* Games Separator */
.games-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 35px 60px 0px 60px;
    position: relative;
}

.games-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
        background: linear-gradient(90deg, #A64EFF, #FF54B0);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 149, 255, 0.3);
}

/* Games Categories */
.games-category {
    margin-bottom: 1rem;
    padding: 35px 60px 0 60px;
    /* padding: 0rem 1.1rem 0rem 1.1rem; */
}

.category-title {
    font-size: 1rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
        background: linear-gradient(90deg, 
            var(--primary-color, #A64EFF) 0%, 
            rgba(255, 84, 176, 0.35) 50%, 
        transparent 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin: 0 auto;
    /* max-width: 1200px; */
    place-items: flex-start;
    justify-content: space-between;
    justify-items: center;
    /* background-image: linear-gradient(315deg, #16191d 0%, #252a2e 100%); */
}

.game-card {
    background: linear-gradient(135deg, #23272b 60%, #292d32 100%);
    border-radius: 14px;
    width: 100%;
    max-width: 220px;
    min-width: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.03);
}

.game-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
        border-color: #A64EFF;
}

.game-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: #18191c;
    transition: filter 0.2s;
}

.game-card:hover img {
    filter: brightness(1.07) saturate(1.1);
}

.game-card-title {
    padding: 14px 10px 10px 10px;
    font-size: .8rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-header {
    display: flex;
    color: rgba(255, 255, 255, .5);
    background: linear-gradient(315deg, #16191d 0%, #252a2e 100%);
    align-items: center;
    padding: 0.6rem 60px .6rem 60px;
    display: flex;
    position: relative;
    border-bottom: 2px solid #141b2e;
}

#auth-buttons {
  padding: 0 60px;
}

#auth-buttons button {
  width: 50%;
  max-width: 300px;
}

@media (max-width: 900px) {    
    .games-grid {
        /* grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); */
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-title::after {
        left: 60px;
        right: 60px;
    }
}

@media (max-width: 600px) {
    .games-separator {
        display: none;
    }

    .games-category {
        margin-bottom: 1rem;
        /* padding: 35px 60px 0 60px; */
        padding: 1rem 1.1rem 0rem 1.1rem;
    }
    
    .games-grid {
        /* grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); */
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .category-title::after {
        left: 1.1rem;
        right: 1.1rem;
    }
    
    #auth-buttons {
        padding: 0 1.1rem 0.5rem 1.1rem;
    }
    .game-header {
        min-height: 50px;
        padding: 0.5rem 1.1rem 0.5rem 1.1rem;
    }
    .game-card {
        max-width: 160px;
    }
    .game-card-title {
        font-size: 0.8rem;
        padding: 10px 4px 8px 4px;
    }
    .casino-grid-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 1.5rem 1.1rem 1.5rem 1.1rem;
    }
    .search-input {
        width: 100%;
        flex: 1 1 100%;
        margin-left: 0;
    }
    .casino-grid-header h1 {
        text-align: left;
        font-size: 20px;
    }
     #auth-buttons {
        display: flex;
        width: 100%;
        
    }

    #auth-buttons button {
        flex-grow: 1;
    }
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f23 0%, #252a2e 100%);
    margin: 40px 0;
    border-radius: 15px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fbc709 0%, #f39800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header p {
    font-size: 1.1rem;
    color: #aaa;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 60px;
}

.feature-card {
    background: linear-gradient(135deg, #23272b 0%, #2a2f34 100%);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid rgba(166, 78, 255, 0.35);
        width: 260px;
        background: rgba(30, 32, 36, 0.85);
        flex: 0 0 260px;
        max-width: 100%;
        margin-left: auto;
        transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    top: 0;
    left: 0;
    .search-input::placeholder {
        color: #bcbcc7;
    }

    .search-input:focus {
        outline: none;
        border-color: #A64EFF;
        box-shadow: 0 0 0 4px rgba(166, 78, 255, 0.15);
        background: rgba(30, 32, 36, 0.95);
    }
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbc709, #f39800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 199, 9, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #16191d 0%, #1f2327 100%);
    margin: 40px 0;
    border-radius: 15px;
    border: 1px solid #464646;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbc709 0%, #f39800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(251, 199, 9, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f23 0%, #252a2e 100%);
    margin: 40px 0;
    border-radius: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fbc709 0%, #f39800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #aaa;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, #23272b 0%, #2a2f34 100%);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 199, 9, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #ddd;
    margin: 0;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbc709 0%, #f39800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.author-rating {
    font-size: 0.9rem;
}

/* Trust Footer */
.trust-footer {
    background: linear-gradient(135deg, #0f1114 0%, #1a1f23 100%);
    border-top: 3px solid #fbc709;
    margin-top: 60px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    padding: 40px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: #fbc709;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo p {
    color: #aaa;
    margin-top: 10px;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(251, 199, 9, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(251, 199, 9, 0.2);
}

.badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-title {
    font-weight: 600;
    color: #fbc709;
    font-size: 0.9rem;
}

.badge-desc {
    color: #aaa;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbc709;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #bbb;
}

.contact-icon {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fbc709;
    transform: translateY(-2px);
}

.payment-section {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.payment-section h4 {
    color: #fbc709;
    margin-bottom: 20px;
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.payment-method {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(251, 199, 9, 0.1);
    border-color: rgba(251, 199, 9, 0.3);
}

.responsible-gaming {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.responsible-gaming h4 {
    color: #fbc709;
    margin-bottom: 20px;
}

.responsible-gaming p {
    color: #aaa;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.age-badge {
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content p {
    color: #777;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid,
    .stats-grid,
    .testimonials-grid {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        padding: 0 0 40px 0;
    }
    
    .features-header h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .payment-method {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 10px;
    }
}

/* Live Support Button */
.live-support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.live-support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.4);
}

.support-icon {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

.support-text {
    font-weight: 600;
    white-space: nowrap;
}

.support-indicator {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* Quick Action Buttons */
.quick-actions {
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.quick-action-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
    text-decoration: none;
    color: white;
}

.deposit-btn:hover {
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.bonus-btn:hover {
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.action-icon {
    font-size: 1.2rem;
}

.action-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Live Notifications */
.live-notifications {
    position: fixed;
    top: 100px;
    left: 30px;
    z-index: 998;
    max-width: 300px;
}

.notification-item {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.5s ease;
    transition: all 0.3s ease;
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.notification-avatar {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-text {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.win-amount {
    color: #28a745;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.notification-time {
    color: #888;
    font-size: 0.8rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .live-support-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .support-text {
        font-size: 0.9rem;
    }
    
    .quick-actions {
        bottom: 110px;
        right: 20px;
    }
    
    .quick-action-btn {
        padding: 10px 15px;
    }
    
    .action-text {
        font-size: 0.8rem;
    }
    
    .live-notifications {
        top: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .notification-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .notification-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .notification-text {
        font-size: 0.8rem;
    }
    
    .notification-time {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .live-support-btn {
        padding: 10px 14px;
    }
    
    .support-text {
        display: none;
    }
    
    .quick-actions {
        bottom: 100px;
        right: 15px;
    }
    
    .quick-action-btn {
        padding: 8px 12px;
    }
    
    .action-text {
        display: none;
    }
    
    .live-notifications {
        top: 70px;
        left: 5px;
        right: 5px;
    }
    
    .notification-item {
        padding: 10px;
    }
    
    .notification-content {
        font-size: 0.85rem;
    }
}

/* Casino Footer Styles */
.casino-footer {
    background: linear-gradient(145deg, #1a1d23 0%, #2c2f36 100%);
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 80px; /* Отступ снизу для меню */
    border-top: 1px solid #333;
}

/* Payment Methods */
.footer-payments {
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.payments-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Уникальный селектор для платежных иконок только в казино */
.casino-payment-icon {
    background: #2c2f36;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
    overflow: hidden;
}

    .casino-payment-icon:hover,
    .casino-payment-icon:focus-visible {
        background: #3a3e46;
        border-color: #b0117e; /* brand magenta */
        transform: translateY(-3px);
        box-shadow: 0 5px 16px rgba(176, 17, 126, 0.35);
        outline: none;
    }

    .casino-payment-icon img {
        max-width: 85%;
        max-height: 85%;
        object-fit: contain;
        filter: brightness(1.1);
        transition: filter 0.3s ease;
    }

    .casino-payment-icon:hover img,
    .casino-payment-icon:focus-visible img {
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(176, 17, 126, 0.45));
    }

    /* Fallback text inside payment icon on hover */
    .casino-payment-icon:hover .crypto-text,
    .casino-payment-icon:hover .card-text,
    .casino-payment-icon:hover .payment-text,
    .casino-payment-icon:focus-visible .crypto-text,
    .casino-payment-icon:focus-visible .card-text,
    .casino-payment-icon:focus-visible .payment-text {
        color: #ff73c6;
        text-shadow: 0 0 8px rgba(176, 17, 126, 0.45);
    }

.other-methods-text {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

.other-methods-text p {
    margin: 0;
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
    font-style: italic;
}

/* Responsible Gaming */
.footer-responsible {
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.responsible-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.responsible-icon {
    background: linear-gradient(145deg, #2c2f36, #3a3e46);
    border: 2px solid #444;
    border-radius: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.responsible-icon:hover,
.responsible-icon:focus-visible {
    border-color: #b0117e; /* brand magenta */
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(176, 17, 126, 0.35);
    color: #ff73c6; /* tint inline SVGs using currentColor */
    outline: none;
}

.responsible-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.responsible-icon:hover::before {
    left: 100%;
}

/* Age 18+ Icon */
.age-icon {
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    border-color: #ff8c42;
    color: #fff;
}

.age-number {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.age-plus {
    font-size: 16px;
    font-weight: 700;
    margin-left: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Security, SSL, Gaming Icons */
.security-icon {
    background: linear-gradient(145deg, #28a745, #20c997);
    border-color: #28a745;
    color: #fff;
}

.ssl-icon {
    background: linear-gradient(145deg, #007bff, #0056b3);
    border-color: #007bff;
    color: #fff;
}

.responsible-gaming-icon {
    background: linear-gradient(145deg, #ffc107, #e0a800);
    border-color: #ffc107;
    color: #fff;
}

.license-icon {
    background: linear-gradient(145deg, #6f42c1, #5a2d91);
    border-color: #6f42c1;
    color: #fff;
}

/* SVG Icons */
.responsible-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.responsible-icon:hover svg,
.responsible-icon:focus-visible svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 115, 198, 0.6));
}

.responsible-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.responsible-icon:hover img,
.responsible-icon:focus-visible img {
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 115, 198, 0.6));
}

.responsible-text {
    text-align: center;
    max-width: 400px;
}

.responsible-text p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    font-weight: 500;
}

/* Rules Document Link */
.rules-document-link {
    margin-top: 15px;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.document-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.document-link svg {
    transition: transform 0.3s ease;
}

.document-link:hover svg {
    transform: scale(1.1);
}

/* Fallback Text Styles for Payment Icons */
.crypto-text, .card-text, .payment-text, .resp-text {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.crypto-text {
    color: #f7931a; /* Bitcoin orange */
    font-size: 16px;
}

.card-text {
    color: #1a1f71; /* Visa blue */
    background: #fff;
    border-radius: 6px;
    padding: 4px;
    font-size: 15px;
}

.payment-text {
    color: #00d4ff; 
    font-size: 14px;
}

.resp-text {
    font-size: 24px;
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.footer-copyright p {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #999;
}

.license-info {
    font-size: 12px !important;
    color: #777 !important;
}

@media (max-width: 768px) {
    .casino-footer {
        margin-bottom: 90px; 
    }
    
    .footer-content {
        padding: 0 0 40px 0;
    }
    
    .payments-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }
    
    .casino-payment-icon {
        padding: 10px;
        height: 50px;
    }
    
    .casino-payment-icon img {
        max-width: 90%;
        max-height: 90%;
    }
    
    .responsible-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .responsible-icons {
        gap: 15px;
    }
    
    .responsible-icon {
        width: 60px;
        height: 60px;
    }
    
    .responsible-icon img {
        width: 28px;
        height: 28px;
    }
    
    .age-text {
        font-size: 14px;
    }
    
    .responsible-text p {
        font-size: 13px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .payment-icons {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .casino-payment-icon {
        padding: 15px;
        height: 70px;
    }
    
    .responsible-icons {
        gap: 15px;
    }
    
    .responsible-icon {
        width: 70px;
        height: 70px;
    }
    
    .responsible-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .age-number {
        font-size: 20px;
    }
    
    .age-plus {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .casino-footer {
        margin-bottom: 100px; /* Еще больше отступ для очень маленьких экранов */
    }
    
    .payment-icons {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }
    
    .casino-payment-icon {
        padding: 10px;
        height: 55px;
    }
    
    .responsible-icons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .responsible-icon {
        width: 60px;
        height: 60px;
    }
    
    .responsible-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .age-number {
        font-size: 16px;
    }
    
    .age-plus {
        font-size: 12px;
    }
    
    .responsible-text p {
        font-size: 12px;
    }
}
/* Cache version: 55972997 - Updated: 2025-08-23 21:16:37 */