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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Logo */
.header-logo {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-section {
    flex-shrink: 0;
}

.logo-section a {
    display: inline-block;
    text-decoration: none;
}

.logo-section img {
    max-height: 100px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-section a:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.title-section {
    flex: 1;
}

.title-section h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Responsive adjustments for header logo */
@media (max-width: 768px) {
    .header-logo {
        padding: 20px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-section img {
        max-height: 80px;
        padding: 10px 18px;
    }
    
    .title-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        padding: 15px 0;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo-section img {
        max-height: 60px;
        padding: 8px 15px;
        border-radius: 8px;
    }
    
    .title-section h1 {
        font-size: 1.5rem;
    }
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #64b5f6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rating-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 300px;
    backdrop-filter: blur(10px);
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-label {
    font-size: 1.1rem;
}

.rating-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4caf50;
}

.cta-buttons {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #4caf50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a237e;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.btn-large::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.5s;
}

.btn-large:hover::before {
    left: 100%;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Rating Section */
.rating-section {
    padding: 80px 0;
    background: white;
}

.rating-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rating-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-card h3 {
    margin-bottom: 1rem;
    color: #1a237e;
    font-size: 1.2rem;
}

.rating-bar {
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    transition: width 0.3s ease;
}

.rating-percent {
    font-weight: bold;
    color: #4caf50;
    font-size: 1.1rem;
}

/* Review Section - Main Content Only */
main .review-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.review-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a237e;
    text-align: center;
}

.review-content {
    max-width: 900px;
    margin: 0 auto;
}

.review-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Global h3 styling for all content sections */
h3 {
    color: #1a237e;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    padding-left: 1rem;
}

h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 2px;
}

/* First h3 in a section should have less top margin */
h2 + p + h3,
h2 + img + p + h3,
.review-content > h3:first-of-type {
    margin-top: 2rem;
}

/* Remove decorative line from h3 elements in special contexts */
.pros-header h3,
.cons-header h3,
.feature-card h3,
.support-card h3,
.payment-card h3,
.bonus-card h3,
.casino-verdict h3,
.mobile-verdict h3,
.esports-verdict h3,
.sports-verdict h3,
.summary-card h3,
.final-verdict h3,
.footer-section h3 {
    padding-left: 0;
}

.pros-header h3::before,
.cons-header h3::before,
.feature-card h3::before,
.support-card h3::before,
.payment-card h3::before,
.bonus-card h3::before,
.casino-verdict h3::before,
.mobile-verdict h3::before,
.esports-verdict h3::before,
.sports-verdict h3::before,
.summary-card h3::before,
.final-verdict h3::before,
.footer-section h3::before {
    display: none;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.pros, .cons {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pros h3 {
    color: #4caf50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cons h3 {
    color: #f44336;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.cons li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.content-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.content-section h3 {
    color: #1a237e;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
    background: white;
}

.sports-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.sport-item {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.sport-item:hover {
    transform: translateY(-3px);
}

/* Casino Section */
.casino-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.casino-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.casino-bonuses {
    margin-top: 4rem;
}

.casino-bonuses h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1a237e;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.bonus-card h4 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Mobile Section */
.mobile-section {
    padding: 80px 0;
    background: white;
}

.mobile-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mobile-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.app-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.app-features h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.app-features ul {
    list-style: none;
}

.app-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.app-features li::before {
    content: "📱";
    position: absolute;
    left: 0;
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bonuses-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.bonus-highlight {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bonus-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bonus-details h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.bonus-details ul {
    list-style: none;
}

.bonus-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-details li::before {
    content: "🎁";
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.support-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.support-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 80px 0;
    background: white;
}

.responsible-gaming h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.responsible-features ul {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
}

.responsible-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.responsible-features li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
}

.responsible-resources {
    max-width: 800px;
    margin: 3rem auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff9800;
}

.responsible-resources h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.final-verdict {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
}

.final-verdict h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.final-verdict p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
footer {
    background: #1a237e;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #64b5f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #64b5f6;
}

.age-restriction {
    font-weight: bold;
    color: #ffeb3b;
    margin-top: 1rem;
}

.footer-logo-inline {
    margin: 1.5rem 0;
    text-align: center;
}

.footer-logo-inline a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-inline img {
    max-height: 80px;
    width: auto;
    padding: 8px 12px;
    border-radius: 8px;
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.footer-logo-inline a:hover img {
    transform: scale(1.03);
    opacity: 1;
    filter: brightness(1.2) contrast(1.2);
}

/* Center content in footer review section only */
.footer-section.review-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-section.review-section p {
    text-align: center;
}

.footer-section.review-section .footer-logo-inline {
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #3949ab;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .casino-features,
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .rating-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    
    h3::before {
        width: 3px;
        height: 16px;
    }
}

/* Policy Pages Styles */
.policy-hero {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.policy-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-text h2 {
    color: #1a237e;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.policy-text h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.policy-text h3 {
    color: #3949ab;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.policy-text h4 {
    color: #5c6bc0;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

.policy-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.policy-text ul, .policy-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.policy-footer {
    background: #fff3e0;
    border: 1px solid #ffb74d;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.policy-footer p {
    margin: 0;
    color: #e65100;
    font-weight: 500;
}

/* Cookie Policy Tables */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: #1a237e;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.browser-instructions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.browser-instructions h4 {
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.browser-instructions p {
    margin-bottom: 1rem;
    font-family: monospace;
    background: white;
    padding: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #1a237e;
}

.consent-notice {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.consent-notice h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section, .contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2, .contact-info-section h2 {
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3949ab;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    flex: 1;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.contact-details h3 {
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
    color: #333;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
}

.contact-specialties {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-specialties h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.contact-specialties ul {
    list-style: none;
    padding: 0;
}

.contact-specialties li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contact-specialties li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.important-notice {
    background: #fff3e0;
    border: 1px solid #ffb74d;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.important-notice h3 {
    color: #e65100;
    margin-bottom: 1rem;
}

.important-notice p {
    color: #e65100;
    margin-bottom: 1rem;
}

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

.important-notice li {
    padding: 0.3rem 0;
    color: #e65100;
}

.contact-faq {
    padding: 80px 0;
    background: white;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.responsible-gaming-notice {
    padding: 80px 0;
    background: #f8f9fa;
}

.notice-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.notice-content h2 {
    color: #1a237e;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resource-item h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.resource-item ul {
    list-style: none;
    padding: 0;
}

.resource-item li {
    margin-bottom: 0.5rem;
}

.resource-item a {
    color: #3949ab;
    text-decoration: none;
}

.resource-item a:hover {
    text-decoration: underline;
}

.age-warning {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Logo link styling */
.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    color: inherit;
}

/* Responsive Design for Contact and Policy Pages */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-text {
        padding: 2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1,
    .policy-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
    
    .help-resources {
        grid-template-columns: 1fr;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1,
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section,
    .policy-text {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* Image placeholders */
.image-placeholder {
    margin: 2rem 0;
    text-align: center;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* General image styling for all content images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Specific styling for content section images */
.review-content img,
.sports-section img,
.casino-section img,
.esports-section img,
.payment-section img,
.support-section img,
.registration-section img,
.responsible-section img,
.proscons-section img {
    margin: 2.5rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive image sizing */
@media (max-width: 768px) {
    img {
        margin: 1.5rem auto;
        border-radius: 10px;
    }
    
    .review-content img,
    .sports-section img,
    .casino-section img,
    .esports-section img,
    .payment-section img,
    .support-section img,
    .registration-section img,
    .responsible-section img,
    .proscons-section img {
        margin: 2rem auto;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    img {
        margin: 1rem auto;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .review-content img,
    .sports-section img,
    .casino-section img,
    .esports-section img,
    .payment-section img,
    .support-section img,
    .registration-section img,
    .responsible-section img,
    .proscons-section img {
        margin: 1.5rem auto;
        border-radius: 10px;
    }
}

/* Hero intro styling */
.hero-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a237e;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #3949ab;
}

/* Casino stats */
.casino-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #3949ab;
}

.stat-item h4 {
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.casino-verdict {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.casino-verdict h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Mobile verdict */
.mobile-verdict {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.mobile-verdict h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

/* E-Sports Section */
.esports-section {
    padding: 80px 0;
    background: white;
}

.esports-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.esports-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-item {
    background: linear-gradient(135deg, #673ab7, #9c27b0);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-3px);
}

.game-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.game-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.esports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.esport-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.esport-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.esports-verdict {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.esports-verdict h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Sports Detailed Section */
.sports-detailed-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sports-detailed-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.sports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sports-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #4caf50;
}

.sports-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.sports-verdict {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.sports-verdict h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Payment methods section */
.payment-section {
    padding: 80px 0;
    background: white;
}

.payment-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.payment-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.payment-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.payment-card p {
    color: #666;
    margin-bottom: 1rem;
}

.payment-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.payment-features h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

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

.payment-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.payment-features li::before {
    content: "💳";
    position: absolute;
    left: 0;
}

/* Registration section */
.registration-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.registration-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #1a237e;
}


.registration-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3949ab;
}

.step-item h4 {
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.step-item p {
    margin: 0;
    color: #666;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .casino-stats,
    .esports-games,
    .sports-features,
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .esports-features {
        grid-template-columns: 1fr;
    }
    
    .hero-intro {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-item,
    .esport-card,
    .sports-card,
    .payment-card {
        padding: 1.5rem;
    }
    
    .casino-verdict,
    .mobile-verdict,
    .esports-verdict,
    .sports-verdict {
        padding: 1.5rem;
    }
}

/* Enhanced Pros and Cons Section */
.proscons-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.proscons-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #1a237e;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pros-container, .cons-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pros-container:hover, .cons-container:hover {
    transform: translateY(-5px);
}

.pros-header {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.cons-header {
    background: linear-gradient(135deg, #ff7043, #ff8a65);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pros-icon, .cons-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pros-header h3, .cons-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.pros-content, .cons-content {
    padding: 2rem;
}

.pro-item, .con-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pro-item:last-child, .con-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pro-item:hover, .con-item:hover {
    background: #f8f9fa;
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.pro-icon, .con-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pro-item .pro-icon {
    background: rgba(76, 175, 80, 0.1);
}

.con-item .con-icon {
    background: rgba(255, 112, 67, 0.1);
}

.pro-text h4, .con-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #1a237e;
    font-weight: 600;
}

.pro-text p, .con-text p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.proscons-summary {
    margin-top: 3rem;
}

.summary-card {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.summary-card h4 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.summary-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Responsive Design for Pros/Cons */
@media (max-width: 968px) {
    .proscons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pros-header, .cons-header {
        padding: 1.5rem;
    }
    
    .pros-content, .cons-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pro-item, .con-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pro-icon, .con-icon {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .proscons-section h2 {
        font-size: 2rem;
    }
    
    .pros-header h3, .cons-header h3 {
        font-size: 1.5rem;
    }
    
    .pros-content, .cons-content {
        padding: 1rem;
    }
    
    .pro-item, .con-item {
        padding: 1rem 0;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-card h4 {
        font-size: 1.3rem;
    }
    
    .summary-card p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.rating-fill {
    animation: fillAnimation 2s ease-in-out;
}

@keyframes fillAnimation {
    from { width: 0; }
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a237e, #3949ab);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 12px 0;
    border-radius: 30px;
}

.sticky-footer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    margin: 0 auto;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sticky-btn-casino {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #f57c00, #ffb300);
}

.sticky-btn-casino:hover {
    background: linear-gradient(135deg, #388e3c, #4caf50);
}

.sticky-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.sticky-text {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Add animation effect */
.sticky-btn::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.5s;
}

.sticky-btn:hover::before {
    left: 100%;
}

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 120px;
}

/* Language Selector */
.language-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-dropdown {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.language-dropdown:hover {
    border-color: #1a237e;
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.1);
}

.language-dropdown:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.language-dropdown option {
    padding: 10px;
    font-size: 0.95rem;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #666;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.lang-link:hover {
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
    transform: translateX(5px);
}

.lang-link.active {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.lang-link.active:hover {
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

@media (max-width: 768px) {
    .language-selector {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .language-dropdown {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 10px 14px;
        padding-right: 38px;
    }
    
    .lang-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Responsive Design for Sticky Footer */
@media (max-width: 768px) {
    .sticky-footer {
        padding: 10px 0;
    }
    
    .sticky-footer-container {
        gap: 10px;
        padding: 0 15px;
    }
    
    .sticky-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .sticky-text {
        font-size: 0.8rem;
    }
    
    .sticky-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sticky-footer-container {
        gap: 8px;
        padding: 0 10px;
    }
    
    .sticky-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .sticky-text {
        font-size: 0.75rem;
    }
    
    body {
        padding-bottom: 100px;
    }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-banner-text {
    flex: 1;
    color: white;
}

.cta-banner-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    padding-left: 0;
}

.cta-banner-text h3::before {
    display: none;
}

.cta-banner-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-banner-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-primary {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.cta-secondary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #f57c00, #ffb300);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #388e3c, #4caf50);
}

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

/* Shimmer effect */
.cta-banner-btn::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.6s;
}

.cta-banner-btn:hover::before {
    left: 100%;
}

/* Responsive Design for CTA Banner */
@media (max-width: 968px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-banner-text h3 {
        font-size: 2rem;
    }
    
    .cta-banner-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 0;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-banner-btn {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cta-banner-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 30px 0;
    }
    
    .cta-banner-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-banner-text p {
        font-size: 0.95rem;
    }
    
    .cta-banner-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* Casino-Styled CTA Banner */
.casino-cta-banner {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.casino-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: casinoGlow 4s ease-in-out infinite alternate;
}

@keyframes casinoGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.casino-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.casino-cta-decoration {
    flex-shrink: 0;
}

.casino-chips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: chipFloat 3s ease-in-out infinite;
    position: relative;
}

.chip::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.1));
    z-index: -1;
}

.chip-red {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    animation-delay: 0s;
}

.chip-blue {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    animation-delay: 1s;
}

.chip-gold {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    animation-delay: 2s;
}

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

.casino-cta-main {
    flex: 1;
    text-align: center;
    color: white;
}

.casino-cta-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    padding-left: 0;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

.casino-cta-text h3::before {
    display: none;
}

@keyframes textShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.casino-cta-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.casino-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.casino-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.casino-cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.casino-primary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 140, 0, 0.9));
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.casino-secondary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(75, 0, 130, 0.9));
    color: white;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.casino-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.casino-primary:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 1), rgba(255, 140, 0, 1));
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.casino-secondary:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(75, 0, 130, 1));
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
}

.casino-icon {
    font-size: 2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: rotate(15deg);
}

.card {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: cardSway 4s ease-in-out infinite;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: 6px;
    z-index: -1;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 1s; transform: translateX(-10px); }
.card-3 { animation-delay: 2s; transform: translateX(-20px); }

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

/* Responsive Design for Casino CTA Banner */
@media (max-width: 1200px) {
    .casino-cta-decoration {
        display: none;
    }
    
    .casino-cta-content {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .casino-cta-banner {
        padding: 60px 0;
    }
    
    .casino-cta-text h3 {
        font-size: 2rem;
    }
    
    .casino-cta-text p {
        font-size: 1.1rem;
    }
    
    .casino-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .casino-cta-btn {
        min-width: 250px;
    }
    
    .casino-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .casino-cta-banner {
        padding: 40px 0;
    }
    
    .casino-cta-text h3 {
        font-size: 1.7rem;
    }
    
    .casino-cta-text p {
        font-size: 1rem;
    }
    
    .casino-cta-btn {
        min-width: 200px;
        padding: 15px 20px;
    }
    
    .btn-title {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
    }
}

/* Author Card Section */
.author-card-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-top: 1px solid #dee2e6;
    position: relative;
}

.author-card-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a237e, transparent);
}

.author-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab, #5e72e4);
}

.author-avatar {
    flex-shrink: 0;
    position: relative;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.author-avatar::after {
    content: '✓';
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #28a745;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 8px;
    line-height: 1.2;
}

.author-title {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.credential {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #90caf9;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
    background: linear-gradient(135deg, #3949ab, #5e72e4);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Author Card Responsive Design */
@media (max-width: 768px) {
    .author-card-section {
        padding: 40px 0;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .author-avatar {
        align-self: center;
    }
    
    .author-name {
        font-size: 1.5rem;
    }
    
    .author-title {
        font-size: 1rem;
    }
    
    .author-credentials {
        justify-content: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .author-card {
        margin: 0 10px;
        padding: 25px 15px;
    }
    
    .author-image {
        width: 100px;
        height: 100px;
    }
    
    .author-name {
        font-size: 1.3rem;
    }
    
    .author-bio {
        font-size: 0.95rem;
    }
    
    .credential {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
