/* =======================================
   CASINO SITE COMPONENTS - Finnish Theme
   Color: #2196F3 (Blue)
   Updated: <?php echo date('Y-m-d H:i:s'); ?>
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 203px;
    overflow: hidden;
    margin-bottom: 42px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(33, 150, 243, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 15px;
}

.hero-title {
    font-size: 53px;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-shadow: 6px 1px 4px rgba(255, 255, 255, 0.3),
                 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {

    font-size: 21px;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 6px 1px rgba(255, 255, 255, 0.3),
                 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Section Titles */
.section-title {
    font-size: 27px;
    font-weight: 700;
    color: #333;
    margin-bottom: 33px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 38px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Table Section */
.casino-table-section {
    margin: 58px 0;
    padding: 45px 20px;
    background: #f9f9f9;
    border-radius: 13px;
}

.comparison-container-sj {
    max-width: 1005px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 19px rgba(0, 0, 0, 0.1);
}

.table-block-gq {
    display: grid;
    grid-template-columns: 320px 1fr 116px 137px 174px;
    gap: 22px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    transition: background 0.3s ease;
}

.table-block-gq:last-child {
    border-bottom: none;
}

.table-block-gq:hover {
    background: #f9f9f9;
}

.casino-container-ec a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.casino-item-hi {
    max-width: 296px;
    height: auto;
    transition: transform 0.3s ease;
    padding: 12px;
    border-radius: 4px;
    background: transparent !important;
}

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

.advantages {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.advantage-section-bp {
    font-size: 14px;
    color: #333;
}

.advantage-section-bp::before {
    margin-right: 1px;
}

.rating {
    text-align: center;
}

.stars {
    color: #ffa500;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.rating-number {
    font-weight: bold;
    font-size: 12px;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.review-text-link {
    font-size: 8px;
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s;
}

.review-text-link:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.mf-bonus-highlight {
    font-weight: bold;
    font-size: 21px;
    color: #2e7d32;
    text-align: center;
}

.jb-play-button {
    display: inline-block;
    padding: 11px 20px;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    text-decoration: none;
    border-radius: 1px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 9px rgba(46, 125, 50, 0.3);
}

.jb-play-button:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-3px);
    box-shadow: 0 1px 18px rgba(46, 125, 50, 0.4);
}

/* Article Content */
.article-content {
    margin: 59px 0;
    padding: 0 19px;
}

.text-content {
    max-width: 895px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-content h2 {
    font-size: 26px;
    color: #2e7d32;
    margin: 36px 0 23px 0;
}

.text-content h3 {
    font-size: 19px;
    color: #333;
    margin: 29px 0 14px 0;
}

.text-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 16px;
}

.text-content ul {
    margin: 24px 0;
    padding-left: 30px;
}

.text-content li {
    font-size: 17px;
    color: #555;
    margin-bottom: 6px;
}

.text-content strong {
    color: #2e7d32;
    font-weight: 600;
}

/* Reviews Section - Carousel */
.reviews-section {
    margin: 63px 0;
    padding: 42px 18px;
    position: relative;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1205px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 34px;
    width: 200%; /* 2 slides */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(33, 150, 243, 0.9);
    border: none;
    border-radius: 50%;
    width: 49px;
    height: 51px;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 13px rgba(33, 150, 243, 0.3);
}

.carousel-btn:hover {
    background: rgba(33, 150, 243, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
}

.carousel-btn-prev {
    left: -27px;
}

.carousel-btn-next {
    right: -21px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.dot {
    width: 14px;
    height: 11px;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2196F3;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(33, 150, 243, 0.6);
}

.review-card {
    background: white;
    border-radius: 19px;
    padding: 25px 21px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.333% - 17px);
    min-height: 277px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    gap: 13px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 49px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.reviewer-avatar-img {
    width: 42px;
    height: 49px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 11px;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 20px;
    color: #333;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-rating .stars {
    color: #ffa500;
    font-size: 12px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.review-casino {
    font-size: 18px;
    color: #2e7d32;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Pros and Cons Section */
.pros-cons-section {
    margin: 57px 0 !important;
    padding: 1px 1px !important;
    background: #f9f9f9;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(403px, 1fr));
    gap: 26px;
    max-width: 1197px;
    margin: 0 auto;
}

.pros-card,
.cons-card {
    background: white;
    border-radius: 10px;
    padding: 29px;
    box-shadow: 0 5px 11px rgba(0, 0, 0, 0.1);
}

.pros-card {
    border-top: 1px solid #2e7d32;
}

.cons-card {
    border-top: 5px solid #d32f2f;
}

.pros-title,
.cons-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.pros-title {
    color: #2e7d32;
}

.cons-title {
    color: #d32f2f;
}

.icon-check,
.icon-x {
    width: 33px;
    height: 32px;
    stroke-width: 3;
}

.icon-check {
    stroke: #2e7d32;
}

.icon-x {
    stroke: #d32f2f;
}

.proscons-icon {
    width: 85px;
    height: 85px;
    margin-right: 5px;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 9px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    border-bottom: 5px solid #f0f0f0;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
    font-size: 22px;
}

.cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 13px;
}

/* License Comparison Section */
.license-comparison-section {
    margin: 61px 0;
    padding: 38px 18px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(297px, 1fr));
    gap: 29px;
    max-width: 1197px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 11px;
    padding: 25px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
}

.comparison-card.highlight {
    border: 1px solid #2e7d32;
    box-shadow: 0 1px 17px rgba(46, 125, 50, 0.2);
}

.comparison-flag {
    font-size: 51px;
    text-align: center;
    margin-bottom: 19px;
}

.comparison-flag-img {
    max-width: 302px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.1);
}

.comparison-card h3 {
    text-align: center;
    font-size: 26px;
    color: #333;
    margin-bottom: 24px;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.item-label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.item-value {
    font-size: 10px;
    font-weight: 600;
    color: #333;
}

.item-value.positive {
    color: #2e7d32;
}

.item-value.negative {
    color: #d32f2f;
}

/* Criteria Section */
.criteria-section {
    margin: 59px 0;
    padding: 44px 20px;
    background: #f9f9f9;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 26px;
    max-width: 1201px;
    margin: 0 auto;
}

.criteria-card {
    background: white;
    border-radius: 5px;
    padding: 35px;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-6px);
}

.criteria-icon {
    text-align: center;
    margin-bottom: 19px;
}

.criteria-icon img {
    width: 60px;
    height: 67px;
    object-fit: contain;
    border-radius: 7px;
}

.priority-badge {
    position: absolute;
    top: 18px;
    right: 17px;
    padding: 3px 16px;
    border-radius: 25px;
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.high {
    background: #d32f2f;
    color: white;
}

.priority-badge.medium {
    background: #ff9800;
    color: white;
}

.priority-badge.low {
    background: #2e7d32;
    color: white;
}

.criteria-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.criteria-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Criteria Section - Mobile Adaptation */
@media (max-width: 768px) {
    .criteria-section {
        margin: 30px 0;
        padding: 20px 15px;
    }
    
    .criteria-section > div[style*="grid"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .criteria-section img {
        max-width: 200px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .criteria-section h2 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .criteria-section > div > div {
        padding: 15px !important;
    }
    
    .criteria-section h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .criteria-section h4 {
        font-size: 14px !important;
    }
    
    .criteria-section p {
        font-size: 12px !important;
    }
}

/* Bonuses Section */
.bonuses-section {
    margin: 56px 0;
    padding: 40px 19px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bonuses-section .section-title {
    width: 100%;
    text-align: center;
    margin-bottom: 42px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    max-width: 1195px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        justify-items: center;
        max-width: 100%;
    }
    
    .bonuses-section {
        padding: 19px 11px;
    }
}

.bonus-card {
    background: white;
    border-radius: 7px;
    padding: 27px;
    box-shadow: 0 1px 19px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
}

.bonus-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.bonus-icon img {
    width: 75px;
    height: 76px;
    object-fit: contain;
    border-radius: 17px;
}

.bonus-card h3 {
    font-size: 25px;
    color: #2e7d32;
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 11px;
}

.bonus-example {
    background: #f5f5f5;
    padding: 9px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

/* Payment Methods Section */
.payment-methods-section {
    margin: 59px 0;
    padding: 41px 25px;
    background: #f9f9f9;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
    gap: 23px;
    max-width: 1201px;
    margin: 0 auto;
}

.payment-card {
    background: white;
    border-radius: 3px;
    padding: 10px;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 4px solid #eee;
}

.payment-card:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 17px rgba(0, 0, 0, 0.12);
    border-color: #2e7d32; /* Using the theme's primary color */
}



.payment-card h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 11px;
}

.payment-card p {
    font-size: 16px;
    line-height: 1.4;
    color: #666;
}

/* FAQ Section - Creative Design */
.faq-section {
    margin: 75px 0;
    padding: 57px 24px;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.faq-section h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 39px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    text-shadow: 7px 1px 9px rgba(0,0,0,0.1);
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 79px;
    height: 2px;
    background: linear-gradient(90deg, #2196F3, #21CBF3);
    margin: 18px auto;
    border-radius: 5px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 17px;
    margin-bottom: 17px;
    box-shadow: 0 13px 29px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(9px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2196F3, #21CBF3, #2196F3);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 35px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 37px rgba(33, 150, 243, 0.2);
}

.faq-question {
    font-size: 25px;
    font-weight: 700;
    color: #2c3e50;
    padding: 24px 34px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 203, 243, 0.1) 100%);
    color: #2196F3;
    padding-left: 35px;
}

.faq-question::before {
    content: '❓';
    font-size: 22px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.faq-question:hover::before {
    transform: scale(1.2) rotate(10deg);
}

.faq-question::after {
    content: "+";
    font-size: 28px;
    font-weight: 900;
    color: #2196F3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 4px rgba(33, 150, 243, 0.3);
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg) scale(1.1);
    color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(248,249,250,0.8) 0%, rgba(255,255,255,0.8) 100%);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 19px 0;
}

.faq-answer p {
    padding: 0 31px 20px 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    position: relative;
    margin: 0;
}

.faq-answer p::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    opacity: 0.7;
}

.faq-answer p {
    padding-left: 45px;
}

/* FAQ Animation Effects */
.faq-item:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.faq-item:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

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

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

/* ============================================
   ENHANCED RESPONSIVE STYLES
   ============================================ */

/* Tablet improvements (768px - 1024px) */
@media (max-width: 1024px) {
    .gpro_cont_main {
        padding: 22px;
    }

    .review-card {
        padding: 17px;
    }

    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile landscape and tablet portrait (481px - 768px) */
@media (max-width: 768px) {

    /* Casino table - card-like layout for mobile */
    .comparison-container-sj {
        padding: 10px 6px;
    }
    
    .table-block-gq {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        padding: 16px 17px !important;
        margin-bottom: 20px !important;
        border: 6px solid #e0e0e0 !important;
        border-radius: 10px !important;
        background: white !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    }

    .casino-container-ec {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 10px !important;
    }

    .casino-container-ec a {
        display: block !important;
        width: 100% !important;
        text-decoration: none !important;
    }

    .casino-logo-wrapper {
        width: 100% !important;
        max-width: 255px !important;
        margin: 0 auto 14px !important;
    }
    
    .casino-item-hi {
        max-width: 100% !important;
        height: auto !important;
    }

    .advantages {
        width: 100% !important;
        margin: 14px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 11px !important;
    }
    
    .advantage-section-bp {
        font-size: 17px !important;
        text-align: center !important;
    }

    .rating {
        width: 100% !important;
        margin: 20px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .mf-bonus-highlight {
        width: 100% !important;
        margin: 16px 0 !important;
        font-size: 19px !important;
    }

    .action-box-vi {
        width: 100% !important;
        margin: 17px 0 0 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .jb-play-button,
    .oi-review-button {
        width: 100% !important;
        max-width: 276px !important;
    }
    /* Main container adjustments */
    .gpro_wrap {
        padding: 0 11px;
    }

    .gpro_cont_main {
        padding: 16px;
        margin: 19px 0;
    }

    /* Casino table - stacked cards */
    .casino-table-section {
        padding: 30px 10px;
    }

    .comparison-container-sj {
        padding: 12px;
    }

    .table-block-gq {
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 5px 8px rgba(0,0,0,0.1);
    }

    .table-block-gq:hover {
        background: white;
    }

    .casino-logo-wrapper {
        max-width: 196px;
        margin: 0 auto;
    }

    .advantages {
        align-items: center;
    }

    .advantage-section-bp {
        max-width: 298px;
        font-size: 13px;
    }

    /* Article Illustrations */
.article-illustration {
    margin: 38px 0;
    text-align: center;
    padding: 17px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 13px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.illustration-image {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.illustration-image:hover {
    transform: scale(1.02);
}

.illustration-caption {
    margin-top: 11px;
    font-size: 18px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .article-illustration {
        margin: 29px 0;
        padding: 13px;
    }
    
    .illustration-caption {
        font-size: 10px;
    }
}

/* Casino Review Cards */
.casino-review-card {
    background: white;
    border-radius: 19px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.1);
    border: 5px solid rgba(33, 150, 243, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 27px rgba(0, 0, 0, 0.15);
}

.casino-header {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
    padding-bottom: 17px;
    border-bottom: 2px solid #f0f0f0;
}

.casino-logo-wrapper {
    margin-right: 25px;
    flex-shrink: 0;
}

.casino-item-hi {
    width: 164px;
    height: 159px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 9px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
}

.casino-container-ec h3 {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.casino-box-vg {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: #ffa500;
    font-size: 15px;
}

.rating-number {
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.casino-content {
    margin-bottom: 22px;
}

.casino-advantages,
.casino-bonus,
.payment-methods {
    margin: 16px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 1px solid #2196f3;
}

.casino-advantages h4,
.casino-bonus h4,
.payment-methods h4 {
    margin: 0 0 5px 0;
    font-size: 11px;
    font-weight: 600;
    color: #333;
}

.casino-advantages ul {
    margin: 0;
    padding-left: 15px;
}

.casino-advantages li {
    margin: 10px 0;
    color: #555;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 9px;
}



.casino-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 4px solid #e0e0e0;
}

.go-button {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 8px 26px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 7px rgba(46, 125, 50, 0.3);
}

.go-button:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: white;
    text-decoration: none;
}

.review-link {
    background: transparent;
    color: #2196f3;
    padding: 11px 27px;
    border: 2px solid #2196f3;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s ease;
}

.review-link:hover {
    background: #2196f3;
    color: white;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .casino-review-card {
        padding: 20px;
        margin: 15px 0;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 18px;
    }
    
    .casino-logo-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .casino-item-hi {
        width: 123px;
        height: 120px;
    }
    
    .casino-container-ec h3 {
        font-size: 15px;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .go-button,
    .review-link {
        text-align: center;
        padding: 6px 15px;
        font-size: 9px;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

/* Casino Page Styles */
.casino-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 44px 15px;
    margin: 22px 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 27px;
    box-shadow: 0 5px 19px rgba(0, 0, 0, 0.1);
}

.casino-logo-container {
    flex-shrink: 0;
}

.casino-main-logo {
    width: 121px;
    height: 123px;
    object-fit: contain;
    border-radius: 19px;
    background: white;
    padding: 20px;
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.15);
}

.casino-info-header h1 {
    margin: 0 0 17px 0;
    font-size: 31px;
    font-weight: 700;
    color: #333;
}

.casino-rating-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.casino-rating-header .stars {
    color: #ffa500;
    font-size: 25px;
}

.casino-rating-header .rating-number {
    font-size: 21px;
    font-weight: 600;
    color: #2e7d32;
    background: white;
    padding: 3px 17px;
    border-radius: 15px;
    box-shadow: 0 7px 11px rgba(0, 0, 0, 0.1);
}



.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 23px;
    background: white;
    border-radius: 7px;
    box-shadow: 0 1px 11px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.payment-method-item:hover {
    transform: translateY(-5px);
}

.payment-icon-large {
    width: 84px;
    height: 46px;
    margin-bottom: 13px;
    border-radius: 7px;
}



.page-content {
    margin: 37px 0;
}

.intro-text {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 7px solid #2196f3;
}

.intro-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.content-section {
    margin: 41px 0;
    padding: 35px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 19px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    margin: 0 0 22px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.section-content {
    line-height: 1.7;
    color: #555;
}

.section-content p {
    margin: 11px 0;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 29px;
}

.section-content li {
    margin: 4px 0;
}

/* Sitemap Links */
.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.sitemap-links li {
    margin: 0;
}

.sitemap-links a {
    display: block;
    padding: 12px 20px;
    background: #f9f9f9;
    border-left: 3px solid #2e7d32;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sitemap-links a:hover {
    background: #2e7d32;
    color: white;
    transform: translateX(5px);
}

.cta-section {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: 45px 25px;
    margin: 43px 0;
    border-radius: 19px;
    text-align: center;
    box-shadow: 0 11px 26px rgba(46, 125, 50, 0.3);
}

.cta-content h2 {
    margin: 0 0 25px 0;
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.cta-button {
    background: white;
    color: #2e7d32;
    padding: 17px 36px;
    border-radius: 52px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 19px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
    color: #2e7d32;
    text-decoration: none;
}

/* Casino Reviews on Page */
.casino-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 21px 0;
}

.casino-reviews .review-card {
    background: white;
    border-radius: 19px;
    padding: 30px;
    box-shadow: 0 1px 19px rgba(0, 0, 0, 0.1);
    border: 6px solid rgba(33, 150, 243, 0.1);
}

.casino-reviews .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.casino-reviews .reviewer-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.casino-reviews .reviewer-avatar-img {
    width: 41px;
    height: 47px;
    border-radius: 50%;
    object-fit: cover;
}

.casino-reviews .reviewer-name {
    font-weight: 600;
    font-size: 20px;
    color: #333;
}

.casino-reviews .review-date {
    font-size: 8px;
    color: #999;
}

.casino-reviews .review-rating .stars {
    color: #ffa500;
    font-size: 14px;
}

.casino-reviews .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .casino-header-section {
        flex-direction: column;
        text-align: center;
        padding: 33px 10px;
    }
    
    .casino-main-logo {
        width: 105px;
        height: 102px;
    }
    
    .casino-info-header h1 {
        font-size: 25px;
    }
    
    
    
    .payment-method-item {
        padding: 18px;
    }
    
    .payment-icon-large {
        width: 64px;
        height: 45px;
    }
    
    .content-section {
        padding: 19px;
        margin: 17px 0;
    }

    .content-section h2 {
        font-size: 25px;
    }

    .sitemap-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sitemap-links a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .cta-section {
        padding: 25px 22px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .casino-reviews {
        grid-template-columns: 1fr;
    }
}

/* Action Buttons - Vertical Layout */
.action-box-vi {
    display: inline-grid !important;
    text-align: center !important;
    gap: 14px !important;
    align-items: center !important;
    margin: 15px 0 !important;
    width: 100% !important;
}

.action-box-vi .jb-play-button,
.action-box-vi .oi-review-button {
    width: 100% !important;
    max-width: 204px !important;
    padding: 11px 23px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
}

.action-box-vi .jb-play-button {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    box-shadow: 0 6px 5px rgba(46, 125, 50, 0.3);
}

.action-box-vi .jb-play-button:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #0d3e0d 100%) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 1px 20px rgba(46, 125, 50, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.action-box-vi .oi-review-button {
    background: transparent;
    color: #2196f3;
    border: 1px solid #2196f3;
}

.action-box-vi .oi-review-button:hover {
    background: #2196f3 !important;
    color: white !important;
    text-decoration: none !important;
}

/* Дополнительные стили для гарантии вертикального расположения */
.casino-table .action-box-vi {
    display: inline-grid !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    align-content: center !important;
}

.casino-table .action-box-vi a {
    display: block !important;
    float: none !important;
    clear: both !important;
    margin: 6px 0 !important;
}

/* Author Box Component */
.author-block {
    background: #ffffff;
    padding: 36px;
    margin: 57px 0;
    border-radius: 16px;
    box-shadow: 0 7px 44px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.author-block::before {
    content: '“';
    position: absolute;
    top: -17px;
    left: 18px;
    font-size: 150px;
    color: rgba(0, 0, 0, 0.05);
    font-family: Georgia, serif;
    z-index: 1;
}

.author-block__row {
    display: flex;
    align-items: center;
    gap: 37px;
    max-width: 1201px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.author-photo {
    width: 145px;
    height: 152px;
    border-radius: 50%;
    object-fit: cover;
    border: 9px solid #2196f3;
    box-shadow: 0 8px 18px rgba(33, 150, 243, 0.3);
}

.author-block__data {
    flex-shrink: 0;
    text-align: center;
}

.author-block__content {
    flex: 1;
}

.author-block__text p {
    margin: 0 0 21px 0;
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

.author-block__name {
    font-size: 26px;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 7px;
}

.author-block__spec {
    font-size: 12px;
    color: #777;
    font-style: normal;
    font-weight: 600;
}

.author-block__data__link {
    margin-top: 10px;
}

.author-block__data__link a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease;
}

.author-block__data__link a:hover {
    color: #1976d2;
    text-decoration: none;
}

@media (max-width: 768px) {
    .author-block__row {
        flex-direction: column;
        text-align: center;
        gap: 27px;
    }
    
    .author-photo {
        width: 120px;
        height: 123px;
    }
    .hide-mob {
        display: none;
    }
}

/* Enhanced Creative Trust Badges Section */
.trust-badges {
    padding: 104px 22px;
    margin: 75px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.trust-badges::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.trust-badges .section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 46px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 29px;
    text-shadow: 1px 7px 1px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2196f3, #1976d2, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.trust-badges .section-title::before {
    content: '🛡️';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 19px;
    animation: bounce 2s ease-in-out infinite;
}

.trust-badges .section-title::after {
    content: '';
    display: block;
    width: 116px;
    height: 9px;
    background: linear-gradient(90deg, #2196f3, #21cbf3, #2196f3);
    margin: 17px auto 0;
    border-radius: 1px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

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

@keyframes lineGlow {
    0% { box-shadow: 0 0 5px rgba(33, 150, 243, 0.5); }
    100% { box-shadow: 0 0 15px rgba(33, 150, 243, 0.8); }
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 27px;
    margin-top: 39px;
    position: relative;
    z-index: 1;
}

.trust-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 41px 29px;
    border-radius: 23px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1), 0 9px 10px rgba(33, 150, 243, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.15), transparent);
    transition: left 0.8s ease;
}

.trust-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    animation: badgeFloat 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes badgeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(180deg); }
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-17px) scale(1.05);
    box-shadow: 0 26px 45px rgba(33, 150, 243, 0.25), 0 14px 22px rgba(0, 0, 0, 0.15);
    border-color: #2196f3;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.trust-badge-icon {
    color: #2196f3;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.trust-badge-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 85px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.trust-badge:hover .trust-badge-icon {
    transform: scale(1.2) rotate(10deg);
    color: #1976d2;
}

.trust-badge:hover .trust-badge-icon::before {
    animation: iconPulse 1s ease-in-out infinite;
}

.trust-badge-icon svg {
    width: 116px;
        height: 117px;
    filter: drop-shadow(0 3px 18px rgba(33, 150, 243, 0.4));
    transition: all 0.3s ease;
}

.trust-badge h3 {
    margin: 21px 0 18px 0;
    font-size: 27px;
    font-weight: 800;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 1px 2px 1px rgba(0,0,0,0.1);
}

.trust-badge:hover h3 {
    color: #2196f3;
    transform: translateY(-5px);
    text-shadow: 6px 3px 1px rgba(33, 150, 243, 0.3);
}

.trust-badge p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-weight: 500;
}

.trust-badge:hover p {
    color: #555;
    transform: translateY(-1px);
}

/* Enhanced Trust Badge Animations */
.trust-badge:nth-child(1) {
    animation: slideInUp 0.8s ease-out 0.1s both, badgeFloat 6s ease-in-out infinite 1s;
}

.trust-badge:nth-child(2) {
    animation: slideInUp 0.8s ease-out 0.2s both, badgeFloat 6s ease-in-out infinite 1.5s;
}

.trust-badge:nth-child(3) {
    animation: slideInUp 0.8s ease-out 0.3s both, badgeFloat 6s ease-in-out infinite 2s;
}

.trust-badge:nth-child(4) {
    animation: slideInUp 0.8s ease-out 0.4s both, badgeFloat 6s ease-in-out infinite 2.5s;
}

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

/* Enhanced License Comparison Component */
.license-comparison {
    padding: 63px 25px;
    margin: 63px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.license-comparison::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
    z-index: 0;
}

.license-comparison .section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 16px;
    text-shadow: 7px 1px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2196f3, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-comparison .section-title::after {
    content: '';
    display: block;
    width: 84px;
    height: 2px;
    background: linear-gradient(90deg, #2196f3, #21cbf3);
    margin: 20px auto 0;
    border-radius: 1px;
}

.license-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(324px, 1fr));
    gap: 34px;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.license-card {
    background: white;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 6px 21px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 6px solid transparent;
    position: relative;
    overflow: hidden;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.license-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 34px rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
}

.license-header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 23px;
    padding-bottom: 19px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.license-flag {
    font-size: 33px;
    transition: transform 0.3s ease;
}

.license-card:hover .license-flag {
    transform: scale(1.1) rotate(5deg);
}

.license-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    flex: 1;
    transition: color 0.3s ease;
}

.license-card:hover .license-header h3 {
    color: #2196f3;
}

.license-status {
    padding: 11px 19px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.license-status.recommended {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.license-status.good {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    box-shadow: 0 7px 16px rgba(33, 150, 243, 0.3);
}

.license-status.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 7px 19px rgba(255, 152, 0, 0.3);
}

.license-card:hover .license-status {
    transform: scale(1.05);
}

.license-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 5px 0;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 2px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item.positive::before {
    background: #4caf50;
}

.feature-item.negative::before {
    background: #f44336;
}

.feature-item.neutral::before {
    background: #666;
}

.feature-item.positive {
    color: #4caf50;
}

.feature-item.negative {
    color: #f44336;
}

.feature-item.neutral {
    color: #666;
}

.license-card:hover .feature-item {
    transform: translateX(9px);
}

.license-card:hover .feature-item::before {
    transform: translateY(-50%) scale(1.5);
}

/* License Card Animations */
.license-card:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.license-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.license-card:nth-child(3) {
    animation: slideInRight 0.6s ease-out 0.3s both;
}

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

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

/* Mobile Responsive for Components */
@media (max-width: 768px) {
    .author-block__row {
        flex-direction: column;
        text-align: center;
        gap: 23px;
    }
    
    .author-photo {
        width: 105px;
        height: 97px;
    }
    
    /* Enhanced Trust Badges Mobile */
    .trust-badges {
        padding: 45px 12px;
        margin: 35px 0;
    }
    
    .trust-badges .section-title {
        font-size: 33px;
        margin-bottom: 11px;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(auto-fit, minmax(251px, 1fr));
        gap: 24px;
        margin-top: 32px;
    }
    
    .trust-badge {
        padding: 20px 23px;
        border-radius: 18px;
    }
    
    .trust-badge-icon svg {
        width: 37px;
        height: 39px;
    }
    
    .trust-badge h3 {
        font-size: 17px;
        margin: 19px 0 15px 0;
    }
    
    .trust-badge p {
        font-size: 19px;
    }
    
    /* Enhanced License Comparison Mobile */
    .license-comparison {
        padding: 45px 12px;
        margin: 43px 0;
    }
    
    .license-comparison .section-title {
        font-size: 25px;
        margin-bottom: 18px;
    }
    
    .license-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 26px;
    }
    
    .license-card {
        padding: 23px 24px;
        border-radius: 15px;
    }
    
    .license-header {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .license-flag {
        font-size: 29px;
    }
    
    .license-header h3 {
        font-size: 19px;
    }
    
    .license-status {
        padding: 9px 9px;
        font-size: 6px;
    }
    
    .feature-item {
        font-size: 17px;
        padding: 3px 0;
        padding-left: 21px;
    }
    
    .feature-item::before {
        width: 9px;
        height: 5px;
    }
}
    .reviews-carousel {
        width: 600%; /* 6 slides on mobile (1 review per slide) */
    }

    .review-card {
        flex: 0 0 calc(16.666% - 10px);
        padding: 28px 10px;
        margin: 0 8px;
        min-height: 317px;
        max-width: 281px;
    }

    .carousel-btn {
        width: 38px;
        height: 37px;
    }

    .carousel-btn-prev {
        left: -17px;
    }

    .carousel-btn-next {
        right: -16px;
    }

    .reviewer-avatar-img {
        width: 47px;
        height: 50px;
    }

    /* Article content */
    .article-content {
        padding: 22px 0;
    }

    .text-content {
        padding: 0 6px;
    }

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

    /* Payment methods */
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Pros-Cons grid */
    .pros-cons-grid {
        gap: 21px;
    }

    .pros-card,
    .cons-card {
        padding: 19px;
    }

    /* Criteria grid */
    .criteria-grid {
        gap: 15px;
    }

    .criteria-card {
        padding: 17px;
    }

    /* Comparison section */
    .comparison-grid {
        gap: 24px;
    }

    /* FAQ section - Mobile */
    .faq-section {
        margin: 35px 0;
        padding: 30px 18px;
    }

    .faq-section h2 {
        font-size: 31px;
        margin-bottom: 19px;
    }

    .faq-item {
        margin-bottom: 13px;
        border-radius: 13px;
    }

    .faq-question {
        padding: 19px 18px;
        font-size: 18px;
    }

    .faq-question::before {
        font-size: 17px;
        margin-right: 13px;
    }

    .faq-question::after {
        font-size: 26px;
    }

    .faq-answer p {
        padding: 0 21px 19px 35px;
        font-size: 12px;
    }

    .faq-answer p::before {
        font-size: 17px;
    }
}

/* Mobile portrait (max-width: 479px) */
@media (max-width: 480px) {
    /* Cards width for mobile */
    .pros-card, .cons-card, .criteria-card, .bonus-card {
        padding: 17px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Typography adjustments */
    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* Casino table */
    .casino-table-section {
        padding: 23px 12px;
    }

    .table-block-gq {
        padding: 18px 8px;
        gap: 20px;
    }

    .casino-item-hi {
        max-width: 257px;
    }

    .advantage-section-bp {
        font-size: 10px;
        padding: 5px 15px;
    }

    .rating-number {
        font-size: 18px;
    }

    .stars {
        font-size: 20px;
    }

    .mf-bonus-highlight {
        font-size: 19px;
        padding: 9px;
    }

    .jb-play-button {
        padding: 15px 28px;
        font-size: 17px;
    }

    /* Content sections */
    .gpro_cont_main {
        padding: 11px;
    }

    .article-content {
        padding: 17px 0;
    }

    .text-content h2 {
        font-size: 23px;
        margin-top: 17px;
    }

    .text-content h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .text-content p,
    .text-content li {
        font-size: 20px;
        line-height: 1.6;
    }

    /* Reviews */
    .reviews-section {
        padding: 19px 0;
    }

    .review-card {
        padding: 11px;
    }

    .reviewer-name {
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
    }

    /* Payment methods */
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .payment-card {
        padding: 16px;
    }

    /* Cards spacing */
    .pros-card,
    .cons-card,
    .criteria-card,
    .bonus-card {
        padding: 18px;
    }

    /* FAQ - Small mobile */
    .faq-section {
        margin: 27px 0;
        padding: 22px 5px;
    }

    .faq-section h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 10px;
        padding: 11px 19px;
    }

    .faq-question::before {
        font-size: 21px;
        margin-right: 8px;
    }

    .faq-question::after {
        font-size: 23px;
    }

    .faq-answer p {
        font-size: 19px;
        padding: 0 19px 16px 32px;
    }

    .faq-answer p::before {
        font-size: 10px;
    }
}

/* Extra small mobile (max-width: 362px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {

        font-size: 15px;
    }

    .section-title {
        font-size: 17px;
    }

    .table-block-gq {
        padding: 12px 4px;
    }

    .casino-item-hi {
        max-width: 223px;
    }

    .advantage-section-bp {
        font-size: 9px;
    }

    .jb-play-button {
        padding: 10px 19px;
        font-size: 18px;
    }

    .text-content h2 {
        font-size: 15px;
    }

    .text-content h3 {
        font-size: 11px;
    }

    .text-content p,
    .text-content li {
        font-size: 18px;
    }
}

/* Casino Review Page Styles */
.casino-header-section {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 45px 19px;
    border-radius: 15px;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 12px 23px rgba(46, 125, 50, 0.3);
}

.casino-logo-container {
    flex-shrink: 0;
}

.casino-main-logo {
    width: 125px;
    height: 123px;
    object-fit: contain;
    background: white;
    border-radius: 11px;
    padding: 11px;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.2);
}

.casino-info-header h1 {
    margin: 0 0 14px 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.casino-rating-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}

.casino-rating-header .stars {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.casino-rating-header .rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 15px;
    border-radius: 17px;
    backdrop-filter: blur(13px);
}

.casino-info-header p {
    margin: 7px 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 6px 3px 2px rgba(0, 0, 0, 0.7);
}

/* Payment Methods Grid */


.payment-method-item {
    background: white;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 1px 17px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.payment-method-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #2e7d32;
}

.payment-icon-large {
    width: 39px;
    height: 42px;
    margin-bottom: 7px;
    fill: #2e7d32;
}



/* Bonus Highlight Section */
.bonus-highlight-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 35px;
    border-radius: 16px;
    margin: 24px 0;
    border: 4px solid #ff9800;
}

.bonus-card {
    background: white;
    padding: 24px;
    border-radius: 15px;
    margin-bottom: 19px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-content h3 {
    margin: 0 0 12px 0;
    color: #2e7d32;
    font-size: 1.5rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 10px;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 11px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 22px;
    margin: 19px 0;
}

.security-badge {
    background: white;
    padding: 25px;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid #e8f5e8;
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    border-color: #2e7d32;
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 17px;
    display: block;
}

.badge-content h4 {
    margin: 0 0 13px 0;
    color: #2e7d32;
    font-size: 1.2rem;
}

.badge-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Casino Rating Summary */
.casino-rating-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 29px;
    border-radius: 19px;
    margin: 22px 0;
}

.rating-overview {
    display: flex;
    gap: 42px;
    margin-bottom: 33px;
    align-items: center;
}

.overall-rating {
    text-align: center;
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.1);
    min-width: 147px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rating-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.rating-breakdown {
    flex: 1;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    background: white;
    padding: 19px;
    border-radius: 9px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
}

.rating-category {
    min-width: 118px;
    font-weight: 600;
    color: #333;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #2e7d32 0%, #4caf50 100%);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.rating-score {
    min-width: 64px;
    text-align: right;
    font-weight: 600;
    color: #2e7d32;
}

.casino-summary {
    background: white;
    padding: 27px;
    border-radius: 9px;
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.1);
}

.casino-summary p {
    margin-bottom: 18px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: 45px;
    border-radius: 16px;
    text-align: center;
    margin: 31px 0;
    box-shadow: 0 8px 27px rgba(46, 125, 50, 0.3);
}

.cta-content h2 {
    color: white;
    margin: 0 0 20px 0;
    font-size: 2rem;
    text-shadow: 0 6px 1px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 16px 39px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 17px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 30px rgba(255, 152, 0, 0.6);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .casino-header-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .casino-main-logo {
        width: 104px;
        height: 95px;
    }
    
    .casino-info-header h1 {
        font-size: 2rem;
        color: white !important;
    }
    
    .rating-overview {
        flex-direction: column;
        gap: 15px;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    
    
    .security-badges {
        grid-template-columns: repeat(auto-fit, minmax(147px, 1fr));
    }
}

/* Secondary Pages Styles */
.secondary-page-content {
    padding: 39px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
}

.secondary-page-content h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 36px;
    font-size: 2.5rem;
    font-weight: 700;
}

.secondary-page-content h2 {
    color: #34495e;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    max-width: 1001px;
    margin: 0 auto;
}

.contact-form-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 33px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
    background: white;
    padding: 31px;
    border-radius: 19px;
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 11px;
}

.form-group input,
.form-group textarea {
    padding: 14px 17px;
    border: 4px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 29px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
}

.contact-info p {
    margin-bottom: 19px;
    font-size: 1.1rem;
    color: #2c3e50;
}

.contact-info strong {
    color: #34495e;
}

/* About Page Styles */
.about-content {
    max-width: 805px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 26px;
    margin-bottom: 28px;
    border-radius: 15px;
    box-shadow: 0 9px 32px rgba(0, 0, 0, 0.1);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 796px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    padding: 27px;
    margin-bottom: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .secondary-page-content h1 {
        font-size: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section,
    .about-section,
    .privacy-section {
        padding: 17px;
    }
}

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 197px;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0 12px 31px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 6px 1px 7px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    color: white !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

/* Responsive Design for Hero Image */
@media (max-width: 768px) {
    .hero-image-container {
        height: 155px;
        margin-bottom: 21px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* CSS Updated: <?php echo date('Y-m-d H:i:s'); ?> - Added hero image styles */

/* Contact Form Section Styles */
.contact-form-section {
    text-align: center;
    margin: 33px 0;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 22px;
}

.contact-info {
    text-align: center;
    margin-top: 15px;
}

/* Styles for Basic Form on site 1 */

.basic-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}
.basic-form .form-group {
    margin-bottom: 18px;
}
.basic-form label {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    color: #333;
}
.basic-form input[type="text"],
.basic-form input[type="email"],
.basic-form textarea {
    width: 100%;
    padding: 7px;
    border: 6px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}
.basic-form textarea {
    resize: vertical;
}
.basic-form .submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 13px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    font-size: 21px;
}
.basic-form .submit-btn:hover {
    background-color: #45a049;
}
            
/* CSS Updated: Contact form styles added */

/* Article Image Styles */
.article-image {
    text-align: center;
    margin: 20px 0;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 19px rgba(0, 0, 0, 0.1);
}

section.casino-header-section {
    text-align: center;
    float: right;
}

.casino-rating-header {
    float: right;
}

/* Payment Methods Styles */


.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 7px 9px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-method-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
}

.payment-icon-large {
    width: 61px;
    height: 37px;
    margin-bottom: 10px;
}



/* Bonus Cards Styles */
.bonus-card {
    background: white;
    border-radius: 11px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.15);
}

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

.bonus-icon img {
    width: 124px;
    height: 124px;
    object-fit: contain;
    border-radius: 6px;
}

.bonus-card h3 {
    font-size: 19px;
    color: #2e7d32;
    margin-bottom: 16px;
    font-weight: 700;
}

.bonus-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.bonus-example {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 13px 10px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 26px;
    margin: 30px 0;
}

.bonuses-section {
    margin: 64px 0;
    padding: 44px 19px;
}

@media (max-width: 768px) {
    .hide-mob {
        display: none;
    }
}

/* Author Block Styles */
.author-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 42px 20px;
    margin: 41px 0;
    border-radius: 16px;
    box-shadow: 0 1px 18px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.author-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #21cbf3);
}

.author-block__row {
    display: flex;
    align-items: center;
    gap: 33px;
    max-width: 1003px;
    margin: 0 auto;
}

.author-block__data {
    flex-shrink: 0;
    text-align: center;
}

.author-photo {
    width: 123px;
    height: 124px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #2196f3;
    box-shadow: 0 7px 16px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease;
}

.author-photo:hover {
    transform: scale(1.05);
}

.author-block__data__bottom {
    margin-top: 17px;
}

.author-block__data__link a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    font-size: 9px;
    transition: color 0.3s ease;
}

.author-block__data__link a:hover {
    color: #1976d2;
    text-decoration: underline;
}

.author-block__content {
    flex: 1;
}

.author-block__text {
    margin-bottom: 15px;
}

.author-block__text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 13px;
}

.author-block__text p:last-child {
    margin-bottom: 0;
}

.author-block__content__bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-block__name {
    font-size: 23px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.author-block__spec {
    font-size: 15px;
    color: #2196f3;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Author Block */
@media (max-width: 768px) {
    .author-block__row {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .author-photo {
        width: 98px;
        height: 96px;
    }
    
    .author-block__text p {
        font-size: 15px;
    }
    
    .author-block__name {
        font-size: 20px;
    }
}


/* Payment Icons Styling */



.payment-box-mo {
    max-width: 72px;
    max-height: 46px;
    object-fit: contain;
}



.sq-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(81px, 1fr));
    gap: 13px;
    justify-items: center;
    align-items: start;
}


/* Payment Methods Grid - Horizontal Layout */
.jz-sq-payment-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.jz-payment-icon {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.jz-payment-box-mo {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
}

.os-payment-name {
    font-size: 13px;
    color: #666;
    text-align: center;
}

/* Footer Payment Icons - Reduced Size */
.jz-payment-icon-footer {
    width: 36px !important;
    height: 24px !important;
    max-width: 36px !important;
    max-height: 24px !important;
}

.jz-payment-icons-footer {
    text-align: center;
}

/* Additional Styles for Reviews and Actions */
a.oi-review-button {
    text-align: center;
}

.action-box-vi {
    text-align: center;
}

span.stars {
    font-size: 2em !important;
}

.advantages {
    font-size: 2em;
    font-weight: 600;
}

section.payment-methods-section {
    text-align: center;
}

.review-card {
    min-height: 200px !important;
    padding: 30px;
    gap: 10px;
    margin: 10px;
}
