/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #2f2f2f;
    --accent-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --white-color: #fff;
    --gray-color: #777;
    --blue-color: #2962ff;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* New color variables for language switcher */
    --lang-bg: rgba(255, 255, 255, 0.1);
    --lang-hover: rgba(255, 255, 255, 0.2);
    --lang-active: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes shine {
    0% { background-position: -100px; }
    60% { background-position: 200px; }
    100% { background-position: 200px; }
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f7f7f7;
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d81b60;
}

/* Header Styles */
.site-header {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 0;
}

.site-header__logo svg {
    height: 33px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.site-header__logo:hover svg {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .site-header__logo svg {
        height: 28px;
        width: auto;
    }
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-menu a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

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

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.header-menu a:hover::after {
    width: 100%;
}

.site-header__button {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.site-header__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.7s ease;
    z-index: -1;
}

.site-header__button:hover::before {
    left: 100%;
}

.site-header__button:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.site-header__button--register {
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.site-header__button--register:hover {
    background-color: var(--primary-color);
}

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

.site-header__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 85px;
    right: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    width: 150px;
    cursor: pointer;
    background: rgba(30, 30, 40, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.5s ease;
}

.language-switcher.float {
    transform: translateY(-5px);
}

.language-switcher__current {
    display: flex;
    align-items: center;
    padding: 8px;
    color: #fff;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.language-switcher__current:hover {
    transform: scale(1.05);
}

.language-switcher__current img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-switcher__current::after {
    content: '▼';
    margin-left: auto;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-switcher__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 40, 0.95);
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.language-switcher__dropdown.open {
    opacity: 1;
    transform: translateY(0);
}

.language-switcher__item {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.language-switcher__item:last-child {
    border-bottom: none;
}

.language-switcher__item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.language-switcher__item img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-switcher__item.active {
    background: rgba(255, 215, 0, 0.2);
    position: relative;
}

.language-switcher__item.active::after {
    content: "✓";
    position: absolute;
    right: 10px;
    color: gold;
}

/* Main Content */
.site-main {
    margin-top: 80px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease;
}

/* Game Hero */
.game-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.game-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* First Row - 2/3 + 1/3 split */
.game-hero__row:first-child {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.game-hero__row:first-child .game-hero__main-block {
    flex: 2;
    width: 66.666%;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hero__row:first-child .game-hero__features {
    flex: 1;
    width: 33.333%;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-info-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
}

.game-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.game-hero__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 10px;
    letter-spacing: 1px;
}

.game-hero__btn--real {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.game-hero__btn--primary {
    background: linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.4);
}

.game-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Second Row - Three equal 1/3 blocks */
.game-hero__row:nth-child(2) {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.game-hero__row:nth-child(2) .game-hero__pros,
.game-hero__row:nth-child(2) .game-hero__cons,
.game-hero__row:nth-child(2) .game-hero__casino {
    flex: 1;
    width: 33.333%;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-hero__pros {
    background: #2e7d32;
    color: white;
}

.game-hero__cons {
    background: #dc3545;
    color: white;
}

.game-hero__casino {
    background: #000;
    color: white;
}

.features-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.features-list li {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-label {
    color: #ff4d4d;
    font-weight: bold;
}

.check-icon {
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
}

.cross-icon {
    color: #ff4d4d;
    font-size: 20px;
    flex-shrink: 0;
}

.casino-logo {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.casino-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.casino-bonus {
    background: linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 100%);
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.bonus-amount {
    font-size: 24px;
}

.bonus-plus {
    font-size: 20px;
    margin: 0 5px;
}

.bonus-spins {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .game-hero__row:first-child,
    .game-hero__row:nth-child(2) {
        flex-direction: column;
    }
    
    .game-hero__row:first-child .game-hero__main-block,
    .game-hero__row:first-child .game-hero__features,
    .game-hero__row:nth-child(2) .game-hero__pros,
    .game-hero__row:nth-child(2) .game-hero__cons,
    .game-hero__row:nth-child(2) .game-hero__casino {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Casinos Cards */
.casinos-cards-title {
    margin-bottom: 15px;
    font-size: 24px;
    position: relative;
    display: inline-block;
    animation: fadeIn 1s ease;
}

.casinos-cards-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.casinos-cards-title:hover::after {
    width: 100%;
}

.casinos-cards-desc {
    margin-bottom: 30px;
    color: #FFFFFF;
}

.casinos-cards-desc p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #FFFFFF;
}

.casinos-cards-desc ul {
    margin: 15px 0;
    padding-left: 20px;
}

.casinos-cards-desc li {
    margin-bottom: 5px;
    color: var(--gray-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.casinos-cards-desc li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.casinos-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.casinos-cards__item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.casinos-cards__item:first-child {
    background: linear-gradient(135deg, #d4af37, #f9d423);
    border: 2px solid #d4af37;
    position: relative;
    overflow: hidden;
    animation: cardFloat 3s ease-in-out infinite;
}

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

.casinos-cards__item:first-child::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: goldShine 3s infinite;
}

@keyframes goldShine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.casinos-cards__item:first-child::after {
    content: 'BEST OFFER';
    position: absolute;
    top: 10px;
    right: -30px;
    background: #000;
    color: #d4af37;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: ribbonFloat 2s ease-in-out infinite;
}

@keyframes ribbonFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-5px);
    }
}

.casinos-cards__item:first-child .card-title {
    color: #000;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
}

.casinos-cards__item:first-child .card-bonus-info {
    color: #000;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: bonusPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes bonusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

.casinos-cards__item:first-child .card-bonus-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    animation: bonusShine 3s infinite;
}

@keyframes bonusShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.casinos-cards__item:first-child .card-buttons__play {
    background: #000;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
}

.casinos-cards__item:first-child .casino-benefits li {
    color: #000;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    animation: benefitSlide 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes benefitSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.casinos-cards__item:first-child .casino-benefits li:nth-child(1) { animation-delay: 0.2s; }
.casinos-cards__item:first-child .casino-benefits li:nth-child(2) { animation-delay: 0.4s; }
.casinos-cards__item:first-child .casino-benefits li:nth-child(3) { animation-delay: 0.6s; }

.casinos-cards__item:first-child .payment-methods {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    animation: paymentFade 1s ease-out forwards;
    opacity: 0;
}

@keyframes paymentFade {
    to {
        opacity: 1;
    }
}

.casinos-cards__item:first-child .payment-method {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px;
    transition: all 0.3s ease;
    animation: paymentIconFloat 2s ease-in-out infinite;
}

@keyframes paymentIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.casinos-cards__item:first-child .responsible-gaming-notice {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.casinos-cards__item:first-child .responsible-gaming-notice p {
    color: #666;
}

.casinos-cards__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.casinos-cards__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.casinos-cards__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.card-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.casinos-cards__item:first-child .card-content {
    background: rgba(255, 255, 255, 0.9);
}

.casinos-cards__item:first-child .payment-methods {
    background: rgba(0, 0, 0, 0.1);
}

.casinos-cards__item:first-child .payment-methods__title {
    color: #000;
}

.casinos-cards__item:first-child .responsible-gaming-notice p {
    color: #000;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.casinos-cards__item:hover .card-title::after {
    width: 100%;
}

.card-bonus-info {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.casinos-cards__item:hover .card-bonus-info {
    transform: scale(1.05);
}

.card-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rating-value {
    font-weight: 600;
}

.rating-stars {
    display: flex;
}

.star {
    color: #ddd;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.star.filled {
    color: var(--accent-color);
}

.casinos-cards__item:hover .star {
    animation: pulse 1s infinite;
}

.star.half-filled {
    position: relative;
    color: #ddd;
}

.star.half-filled:before {
    content: '★';
    color: var(--accent-color);
    position: absolute;
    width: 50%;
    overflow: hidden;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-buttons__link {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-buttons__play {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.card-buttons__play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.7s ease;
}

.card-buttons__play:hover::before {
    left: 100%;
}

.card-buttons__play:hover {
    background-color: #d81b60;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-buttons__review {
    background-color: transparent;
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
    transition: all 0.3s ease;
}

.card-buttons__review:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Page Content */
.page-content {
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease;
}

.text-content {
    line-height: 1.6;
}

.text-content h2 {
    font-size: 24px;
    margin: 30px 0 20px;
    position: relative;
    display: inline-block;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.text-content h2:hover::after {
    width: 100%;
}

.text-content p {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.text-content p:hover {
    transform: translateX(5px);
}

.text-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 15px 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.text-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.text-content ul, 
.text-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.text-content li {
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.text-content li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Site Table */
.site-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    animation: fadeIn 1.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.site-table th,
.site-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.site-table th {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: left;
}

.site-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.site-table tr:hover {
    background-color: #f2f2f2;
}

.site-table tr:hover td {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: background-color 0.3s ease;
}

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

.faq-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon svg {
    transform: scale(1.2);
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
}

.faq-answer {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: none;
    animation: fadeIn 0.5s ease;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    margin-top: 60px;
}

.license-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.license-icon {
    flex: 0 0 auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.license-icon:hover {
    opacity: 1;
}

.license-icon img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
}

.license-icon:hover img {
    filter: grayscale(0%) brightness(100%);
}

.responsible-gaming {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cccccc;
    line-height: 1.6;
}

.responsible-gaming p {
    margin-bottom: 20px;
    font-size: 14px;
}

.age-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.age-verification img {
    height: 30px;
    width: auto;
}

.age-verification p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.footer__copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer__copyright p {
    font-size: 12px;
    color: #888888;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .license-icons {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .license-icon img {
        height: 30px;
    }
    
    .responsible-gaming p {
        font-size: 13px;
    }
    
    .age-verification {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup__content {
    background: linear-gradient(135deg, #2c3e50, #1a2533);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    text-align: center;
}

.exit-popup.show .exit-popup__content {
    transform: translateY(0);
    opacity: 1;
}

.exit-popup__close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.exit-popup__close:hover {
    color: #f39c12;
}

.exit-popup__title {
    color: #fff;
    margin-bottom: 10px;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
}

.exit-popup__subtitle {
    color: #f39c12;
    font-size: 22px;
    margin-bottom: 20px;
}

.exit-popup__description {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.exit-popup__button {
    display: inline-block;
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-top: 10px;
}

.exit-popup__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Limited-Time Offer with Countdown */
.limited-offer {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #2c3e50, #1a2533);
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 900;
    border-left: 4px solid #f39c12;
    transform: translateX(300px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.limited-offer.show {
    transform: translateX(0);
}

.limited-offer__title {
    color: #fff;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
}

.limited-offer__countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.limited-offer__time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.limited-offer__time-value {
    background: #f39c12;
    color: #fff;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
    min-width: 35px;
    text-align: center;
}

.limited-offer__time-label {
    color: #bbb;
    font-size: 10px;
    margin-top: 5px;
}

.limited-offer__description {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.limited-offer__button {
    display: block;
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: transform 0.3s ease;
}

.limited-offer__button:hover {
    transform: translateY(-2px);
}

.limited-offer__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #bbb;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.limited-offer__close:hover {
    color: #fff;
}

/* Spin Wheel Gamification */
.spin-wheel-trigger {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.spin-wheel-trigger:hover {
    transform: scale(1.1) rotate(20deg);
}

.spin-wheel-trigger i {
    font-size: 30px;
}

.spin-wheel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spin-wheel-modal.show {
    opacity: 1;
    visibility: visible;
}

.spin-wheel-content {
    background: linear-gradient(135deg, #2c3e50, #1a2533);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.spin-wheel-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.spin-wheel-close:hover {
    color: #f39c12;
}

.spin-wheel-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.spin-wheel-subtitle {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 16px;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    transform: rotate(0deg);
    box-shadow: 0 0 0 5px #f39c12, 0 0 0 15px #2c3e50;
}

.wheel-section {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.wheel-spinner {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #f39c12;
    z-index: 1;
}

.spin-button {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.spin-button:disabled {
    background: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.prize-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    color: #fff;
}

.prize-message.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Verification Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 4px;
    padding: 4px 8px;
    margin-top: 10px;
    font-size: 12px;
    color: #4CAF50;
}

.verified-badge i {
    margin-right: 5px;
    font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #1a2533);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    padding-right: 20px;
}

.cookie-text a {
    color: #f39c12;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    background: #f39c12;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cookie-button:hover {
    background: #e67e22;
}

.cookie-button--secondary {
    background: transparent;
    border: 1px solid #6c757d;
    color: #fff;
}

.cookie-button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-text {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .limited-offer {
        bottom: 20px;
        top: auto;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .spin-wheel-content {
        padding: 20px;
    }

    .wheel-container {
        width: 250px;
        height: 250px;
    }

    .license-icons {
        gap: 15px;
    }
    
    .license-icon img {
        width: 32px;
        height: 32px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .game-hero__row:first-child,
    .game-hero__row:nth-child(2) {
        flex-direction: column;
    }
    
    .game-hero__row:first-child .game-hero__main-block,
    .game-hero__row:first-child .game-hero__features,
    .game-hero__row:nth-child(2) .game-hero__pros,
    .game-hero__row:nth-child(2) .game-hero__cons,
    .game-hero__row:nth-child(2) .game-hero__casino {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .site-header__menu {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--dark-color);
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 100;
    }
    
    .site-header__menu.active {
        transform: translateY(0);
    }
    
    .header-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .site-header__burger {
        display: flex;
    }
    
    .site-header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .site-header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .site-header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .site-header__button {
        width: 100%;
        text-align: center;
    }
    
    .casinos-cards__grid {
        grid-template-columns: 1fr;
    }
    
    .language-switcher {
        top: 20px;
        right: 80px;
        z-index: 1002;
    }
}

/* Game screenshots animations */
.game-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.game-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.game-screenshot.scale {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Additional animation for the language switcher current selection */
.language-switcher__current {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-switcher__current:hover {
    transform: scale(1.05);
}

.game-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 20px 0;
    width: 100%;
    max-width: 320px;
    position: relative;
}

/* Add casino-themed decorative elements */
.game-buttons-container:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('../images/icons/desktop.svg') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    top: -30px;
    right: -20px;
    transform: rotate(15deg);
    filter: brightness(0) invert(1);
    z-index: 0;
}

/* Media queries for different screen sizes and languages */
@media (min-width: 768px) {
    .game-hero__btn {
        font-size: 16px;
        padding: 16px 28px;
    }
    
    /* Increase the button width for languages with longer text */
    .it .game-hero__btn, 
    .de .game-hero__btn,
    .pl .game-hero__btn, 
    .fr .game-hero__btn {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .game-hero__btn {
        padding: 14px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .game-hero__btn:not(.game-hero__btn--primary) {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
}

/* Game Demo Modal */
.game-demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.game-demo-modal__content {
    position: relative;
    width: 95%;
    height: 95vh;
    max-width: 1600px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.game-demo-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.game-demo-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

body.modal-open {
    overflow: hidden;
    padding-right: 17px; /* Prevent layout shift when scrollbar disappears */
}

/* Animation for modal opening */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.game-demo-modal.show {
    display: flex;
}

.game-demo-modal.show .game-demo-modal__content {
    animation: modalFadeIn 0.3s ease forwards;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Live Players Counter */
.live-players {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2c3e50, #1a2533);
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 999;
    font-size: 14px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.live-players:hover {
    transform: translateY(-5px);
}

.live-players__icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4cd137;
    margin-right: 10px;
    position: relative;
    display: inline-block;
}

.live-players__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(76, 209, 55, 0.4);
    animation: pulse 1.5s infinite;
}

.live-players__count {
    font-weight: bold;
    color: #4cd137;
    margin: 0 5px;
}

/* Promo Code Button */
.promo-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.promo-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.promo-button__icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Promo Modal */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-modal.open {
    opacity: 1;
    visibility: visible;
}

.promo-modal__content {
    background: linear-gradient(135deg, #2c3e50, #1a2533);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.promo-modal.open .promo-modal__content {
    transform: translateY(0);
    opacity: 1;
}

.promo-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.promo-modal__close:hover {
    color: #e67e22;
}

.promo-modal__title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.promo-modal__subtitle {
    color: #bbb;
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.promo-form {
    display: flex;
    flex-direction: column;
}

.promo-form__input {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #445566;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.promo-form__input:focus {
    outline: none;
    border-color: #e67e22;
    background-color: rgba(255, 255, 255, 0.15);
}

.promo-form__button {
    padding: 15px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.promo-form__button:active {
    transform: translateY(1px);
}

.promo-success {
    text-align: center;
    display: none;
}

.promo-success.show {
    display: block;
}

.promo-success__icon {
    font-size: 60px;
    color: #4cd137;
    margin-bottom: 20px;
}

.promo-success__title {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
}

.promo-success__message {
    color: #bbb;
    margin-bottom: 20px;
}

/* Payment Methods */
.payment-methods {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.payment-methods__title {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.payment-methods__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-method {
    width: 40px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px;
}

.payment-method img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.crypto-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #f7931a, #ff9500);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .live-players {
        bottom: 90px;
        left: 10px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .promo-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .live-players {
        max-width: 160px;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-color);
}

.breadcrumbs a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.9), rgba(20, 20, 30, 0.9));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-meta {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.article-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    padding-top: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.article-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Updated Header Menu */
.header-menu {
    display: flex;
    gap: 30px;
}

.header-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-menu a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header-menu a:hover::after,
.header-menu a.active::after {
    width: 100%;
}

.header-menu a.active {
    color: var(--primary-color);
}

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

.site-header__button--demo {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1e1e28;
}

.site-header__button--real {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .breadcrumbs {
        margin-top: 60px;
        padding: 8px 0;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
    }

    .site-header__button {
        width: 100%;
        text-align: center;
    }

    .author-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .article-meta {
        justify-content: center;
    }

    .expert-avatar {
        width: 60px;
        height: 60px;
    }
}

.casino-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.casino-benefits li {
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.casino-benefits li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
}

.responsible-gaming-notice {
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.responsible-gaming-notice img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.responsible-gaming-notice p {
    color: #888;
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}

.casinos-cards__item:first-child .responsible-gaming-notice {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.casinos-cards__item:first-child .responsible-gaming-notice p {
    color: #666;
}

/* Promo Codes Section */
.promo-codes {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.promo-codes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.promo-code__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.promo-code__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promo-code__logo {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.promo-code__logo img {
    max-width: 150px;
    height: auto;
}

.promo-code__content {
    padding: 20px;
}

.promo-code__title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.promo-code__bonus {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 500;
}

.promo-code__scratch {
    margin: 15px 0;
    position: relative;
    text-align: center;
}

.promo-code__value {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e91e63;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed #e91e63;
    border-radius: 8px;
    margin: 0.5rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-code__value:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff4081;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.2);
}

.promo-code__reveal-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.promo-code__reveal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.promo-code__timer {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-code__timer i {
    color: #e91e63;
}

.promo-code__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.promo-code__copy-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-code__copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.promo-code__use-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-code__use-btn:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.promo-code__value-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0.5rem 0;
}

.promo-code__row {
    display: flex;
    align-items: center;
    background: #1E1E1E;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-code__left {
    width: 120px;
    flex-shrink: 0;
}

.promo-code__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-code__middle {
    flex: 1;
}

.promo-code__title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-code__bonus {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.promo-code__terms {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.promo-code__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-code__value {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.promo-code__copy-btn {
    padding: 8px 16px;
    background: #4CAF50;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-code__copy-btn:hover {
    background: #45a049;
}

.promo-code__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-value {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.rating-stars {
    color: #FFD700;
    font-size: 14px;
}

.promo-code__get-bonus {
    padding: 12px 24px;
    background: #4CAF50;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.promo-code__get-bonus:hover {
    background: #45a049;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .promo-code__row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .promo-code__right {
        width: 100%;
        justify-content: space-between;
    }

    .promo-code__rating {
        border: none;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .promo-code__row {
        padding: 16px;
    }

    .promo-code__left {
        width: 80px;
    }

    .promo-code__bonus {
        font-size: 18px;
    }

    .promo-code__value {
        font-size: 16px;
    }
}

/* Expert Conclusion */
.expert-conclusion {
    background: #1E1E1E;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.expert-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.expert-credentials {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.expert-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

.expert-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.expert-social {
    display: flex;
    gap: 12px;
}

.expert-social a {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.expert-social a:hover {
    opacity: 0.8;
}

.expert-social img {
    width: 100%;
    height: 100%;
}

.expert-content {
    color: #FFFFFF;
    line-height: 1.6;
}

.expert-content p {
    margin-bottom: 16px;
}

.expert-content p:last-child {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Comments Section */
.comments-section {
    margin: 40px 0;
}

.comments-section h2 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 24px;
}

.comment-form {
    background: #1E1E1E;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
}

.submit-comment {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* User Comments */
.user-comments {
    margin-top: 40px;
}

.comment {
    background: #1E1E1E;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-meta {
    flex: 1;
}

.comment-author {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 4px;
}

.comment-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.comment-content {
    color: #FFFFFF;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .expert-info {
        flex-direction: column;
        text-align: center;
    }

    .expert-social {
        justify-content: center;
    }

    .comment-form {
        padding: 20px;
    }

    .comment {
        padding: 20px;
    }
}

.game-controls-table {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.game-controls-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.game-controls-table th {
    background: #2c3e50;
    color: white;
    padding: 15px;
    font-size: 1.2em;
    text-align: center;
}

.game-controls-table .controls-section {
    padding: 20px;
    vertical-align: top;
    border: 1px solid #eee;
}

.game-controls-table .controls-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-controls-table .controls-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-controls-table .controls-section li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}

.game-controls-table .controls-section li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .game-controls-table .controls-section {
        display: block;
        width: 100%;
    }
    
    .game-controls-table tr {
        display: block;
    }
}

/* Footer Links Styling */
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px 0 8px 0;
  list-style: none;
  margin: 0;
}
.site-footer .footer-links li {
  margin: 0;
}
.site-footer .footer-links a {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.08em;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.site-footer .footer-links a:hover, .site-footer .footer-links a:focus {
  background: linear-gradient(90deg, #ffd700 0%, #ff9800 100%);
  color: #222;
  box-shadow: 0 4px 16px rgba(255,215,0,0.15);
  text-decoration: none;
}

/* BeGambleAware Icon Contrast */
.site-footer .license-icon[style*="Be-Gamble-Aware.png"] {
  background: #222 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  display: inline-block;
}

/* --- Modern Pros & Cons Block (inspired by your image) --- */
.app-pros-cons {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
  padding: 32px 24px;
  margin: 40px 0;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.app-pros-cons__col {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.06);
  padding: 0 0 24px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.app-pros-cons__header {
  border-radius: 16px 16px 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: left;
  padding: 18px 24px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-pros-cons__header.pros {
  background: #43c463;
  color: #fff;
}
.app-pros-cons__header.cons {
  background: #f44336;
  color: #fff;
}
.app-pros-cons__list {
  list-style: none;
  margin: 0;
  padding: 18px 24px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-pros-cons__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.08rem;
  color: #222;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(44,62,80,0.04);
}
.app-pros-cons__item.pros .icon {
  color: #43c463;
  font-size: 1.3em;
  margin-top: 2px;
}
.app-pros-cons__item.cons .icon {
  color: #f44336;
  font-size: 1.3em;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .app-pros-cons {
    flex-direction: column;
    gap: 18px;
    padding: 18px 2vw;
  }
  .app-pros-cons__col {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .app-pros-cons {
    padding: 8px 0;
    border-radius: 10px;
  }
  .app-pros-cons__header {
    font-size: 1.1rem;
    padding: 12px 12px;
  }
  .app-pros-cons__list {
    padding: 12px 12px 0 12px;
  }
  .app-pros-cons__item {
    font-size: 0.97rem;
    padding: 10px 10px;
  }
}

@media (max-width: 600px) {
  .license-icons {
    flex-direction: row !important;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .article-header {
    display: none !important;
  }
}

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0;
    }

    .comparison-table table {
        min-width: 100%;
        width: auto;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid rgba(233, 30, 99, 0.2);
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
    }

    .comparison-table td {
        display: block;
        text-align: right;
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px solid rgba(233, 30, 99, 0.1);
        width: 100%;
        box-sizing: border-box;
    }

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

    .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: #000;
    }
}
  