/* Neon Casino Design CSS */
.container * {
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}
.container h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5), 0 0 40px rgba(0, 234, 255, 0.3);
}
.container h2 {
    font-size: 2em;
    font-weight: 600;
    color: #00eaff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00eaff;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}
.container h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #00ffff;
    margin-top: 30px;
    margin-bottom: 15px;
}
.container h4 {
    font-size: 1.25em;
    font-weight: 600;
    color: #00ffff;
    margin-top: 20px;
    margin-bottom: 10px;
}
.container p {
    margin-bottom: 15px;
    color: #000000;
    text-align: justify;
}
.container strong {
    font-weight: 600;
    color: #00eaff;
}
/* Tables */
.container table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 234, 255, 0.3);
}
.container th {
    background: linear-gradient(135deg, #00eaff 0%, #0099cc 100%);
    color: #0a0f1e;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}
.container table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 234, 255, 0.2);
    color: #ffffff;
}
.container table ul,
.container table ol,
.container table li {
    color: #ffffff;
}
.container tr:hover {
    background: rgba(0, 234, 255, 0.1);
}
.container tr:last-child td {
    border-bottom: none;
}
/* Lists */
.container ul, .container ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #000000;
}
li {
    margin-bottom: 10px;
    line-height: 1.8;
}
/* Images */
.intro-image-wrapper {
    width: 100%;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 234, 255, 0.3);
    border: 2px solid rgba(0, 234, 255, 0.2);
}
.intro-image {
    width: 100%;
    height: auto;
    display: block;
}
/* Casino Cards */
.casino-card {
    background: linear-gradient(135deg, #1e1e2e 0%, #252540 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 30px rgba(0, 234, 255, 0.2), inset 0 0 50px rgba(0, 234, 255, 0.05);
    border: 2px solid rgba(0, 234, 255, 0.3);
}
.casino-card p {
    color: #ffffff;
}
.casino-card li {
    color: #ffffff;
}
.casino-card .casino-name {
    color: #00eaff;
    margin-top: 0;
    font-size: 1.6em;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}
/* Pros / Cons */
.pros-cons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.pros-list, .cons-list {
    flex: 1;
    min-width: 250px;
    background: rgba(0, 234, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
}
.pros-list {
    border-left: 4px solid #28a745;
}
.cons-list {
    border-left: 4px solid #dc3545;
}
.pros-list h4, .cons-list h4 {
    margin-top: 0;
}
/* FAQ Section */
.faq-item {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #00eaff;
    box-shadow: 0 3px 15px rgba(0, 234, 255, 0.1);
}
.faq-item h3 {
    color: #00eaff;
    margin-top: 0;
    margin-bottom: 15px;
}
.faq-item p {
    color: #ffffff;
}
/* Author Block */
.author-block {
    background: linear-gradient(135deg, #1e1e2e 0%, #252540 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid rgba(0, 234, 255, 0.3);
}
.author-content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.author-avatar {
    flex-shrink: 0;
}
.author-avatar svg {
    border-radius: 50%;
    border: 3px solid #00eaff;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}
.author-info .author-name {
    font-size: 1.3em;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 10px;
}
.author-info .author-bio {
    color: #ffffff;
    margin-bottom: 15px;
}
.author-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 234, 255, 0.15);
    color: #00eaff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 234, 255, 0.3);
}
.social-link:hover {
    background: rgba(0, 234, 255, 0.3);
    transform: translateY(-2px);
}
/* Update Info */
.update-info {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-top: 3px solid #00eaff;
}
.update-info p {
    color: #ffffff;
}
.update-info .update-date {
    font-weight: 600;
}
.update-info .modifications-title {
    font-weight: 600;
    color: #00eaff;
}
.update-info .modifications-list {
    color: #ffffff;
}
.update-info .modifications-list li {
    color: #ffffff;
}
/* Table of Contents */
.table-of-contents {
    background: linear-gradient(135deg, #1e1e2e 0%, #252540 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid rgba(0, 234, 255, 0.3);
}
.table-of-contents .section-title {
    margin-top: 0;
    border-bottom: none;
}
.toc-list {
    list-style: none;
    padding-left: 0;
    counter-reset: toc;
}
.toc-list li {
    counter-increment: toc;
    margin-bottom: 8px;
}
.toc-list li a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.toc-list li a:hover {
    background: rgba(0, 234, 255, 0.15);
    color: #00eaff;
    transform: translateX(5px);
}
/* Content Sections */
.content-section {
    margin: 40px 0;
}
.content-article {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 5px 0;
}
/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 30px;
}
.hero-section p {
    text-align: justify;
}
/* Comparator Shortcode */
.comparator-shortcode {
    margin: 30px 0;
}
/* Casino Ranking Section */
.casino-ranking-section {
    margin: 40px 0;
}
/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #252540 100%);
    border-top: 2px solid #00eaff;
    box-shadow: 0 -5px 30px rgba(0, 234, 255, 0.3);
    z-index: 9999;
    padding: 10px 20px;
}
.bottom-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.bottom-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.bottom-bar-icon {
    border-radius: 8px;
    border: 1px solid rgba(0, 234, 255, 0.3);
}
.bottom-bar-text strong {
    color: #00eaff;
    display: block;
    font-size: 0.95em;
}
.bottom-bar-text p {
    color: #ffffff;
    margin: 0;
    font-size: 0.85em;
}
.bottom-bar-cta {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
    border: 2px solid #1e7e34;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}
.bottom-bar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
}
/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .container h1 {
        font-size: 2em;
    }
    .container h2 {
        font-size: 1.75em;
    }
    .casino-card {
        padding: 20px;
    }
    .pros-cons {
        flex-direction: column;
    }
    .author-content {
        flex-direction: column;
        text-align: center;
    }
    .container table {
        font-size: 0.9em;
        display: block;
        overflow-x: auto;
    }
    .bottom-bar-text p {
        display: none;
    }
    .bottom-bar-left {
        gap: 10px;
    }
    .bottom-bar-cta {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}
@media (max-width: 480px) {
    .container h1 {
        font-size: 1.75em;
    }
    .bottom-bar-icon {
        display: none;
    }
}

