* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
}

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

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1200;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.site-logo {
    display: inline-block;
    font-size: 1.05em;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2c3e50;
    text-decoration: none;
    text-transform: uppercase;
}

.site-logo:hover {
    color: #667eea;
}

.site-nav {
    display: flex;
    gap: 18px;
}

.site-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #667eea;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header-subtitle {
    font-size: 1.1em;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: -30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #667eea;
    font-size: 2em;
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    font-weight: 600;
}

h3 {
    color: #764ba2;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

h4 {
    color: #667eea;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.05em;
    text-align: justify;
}

ul,
ol {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

li {
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    background: #f8f9ff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-bottom: 40px;
}

/* NEW CASINO CARD STYLE - Like the image */
.casino-cards-container {
    margin: 30px 0;
}

.casino-card-new {
    background: white;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.casino-card-new:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.casino-card-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
}

.casino-rank {
    font-size: 2em;
    font-weight: 700;
    color: #667eea;
    min-width: 60px;
}

.casino-info-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.casino-brand-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.casino-logo-wrap {
    width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    flex-shrink: 0;
}

.casino-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-name-new {
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.casino-rating-new {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-rating {
    color: #ffd700;
    font-size: 1.1em;
}

.rating-score {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1em;
}

.casino-bonus-new {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    border-radius: 8px;
}

.bonus-label {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 1.2em;
    font-weight: 700;
    color: #667eea;
    line-height: 1.3;
}

.casino-cta-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}

.btn-play-new {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-play-new:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-review-new {
    background: transparent;
    color: #667eea;
    padding: 10px 20px;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-review-new:hover {
    background: #667eea;
    color: white;
}

/* Detailed review cards for top 5 */
.casino-review-detailed {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.casino-review-detailed h4 {
    margin-top: 0;
    font-size: 1.5em;
}

.review-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.review-highlight-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.review-highlight-item strong {
    display: block;
    color: #667eea;
    margin-bottom: 5px;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95em;
}

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: #f8f9ff;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Comparison Tables */
.comparison-table td:first-child {
    font-weight: 600;
    color: #667eea;
    width: 40%;
}

/* Pros and Cons */
.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros-box,
.cons-box {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pros-box {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
}

.cons-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.pros-box h3,
.cons-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

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

.pros-box li,
.cons-box li {
    padding: 10px 0 10px 35px;
    position: relative;
    line-height: 1.6;
}

.pros-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: bold;
    font-size: 1.3em;
}

.cons-box li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c1121f;
    font-weight: bold;
    font-size: 1.3em;
}

/* Info Boxes */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.success-box {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-question {
    color: #667eea;
    font-weight: 600;
    font-size: 1.15em;
    margin-bottom: 12px;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

/* Payment Methods Icons */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.payment-method {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.15);
}

.payment-method h4 {
    color: #667eea;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .casino-card-inner {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .casino-bonus-new {
        grid-column: 2;
        margin: 10px 0;
    }

    .casino-cta-new {
        grid-column: 3;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    .content {
        padding: 25px 20px;
    }

    .casino-card-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .casino-rank {
        font-size: 1.5em;
        display: none;
    }

    .casino-bonus-new,
    .casino-cta-new {
        grid-column: 1;
    }

    .pros-cons-container {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.9em;
    }

    th,
    td {
        padding: 10px 8px;
    }

    .casino-brand {
        flex-direction: column;
        align-items: center;
        justify-content: center;

        ;
    }

    .casino-brand-text {
        align-items: center;
    }
}


/* Table of Contents */
.toc {
    background: #f8f9ff;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.toc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667eea;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.toc summary::after {
    content: "+";
    font-weight: 700;
}

.toc[open] summary::after {
    content: "-";
}

.toc summary::-webkit-details-marker {
    display: none;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.toc-image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 16px;
    border-radius: 8px;
    max-width: 600px;
    margin: 16px auto;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 20px 0 10px;
    color: #555;
    font-size: 0.95em;
}

.article-meta strong {
    color: #2c3e50;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f8f9ff;
    border-radius: 10px;
    border: 1px solid #e8ebff;
    margin-bottom: 20px;
}

.author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #2c3e50;
}

.toc[open] ul {
    max-height: 1200px;
    opacity: 1;
}

.toc li {
    padding: 8px 0;
}

.toc a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}

.toc a:hover {
    background: white;
    padding-left: 20px;
    font-weight: 600;
}

.highlight-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 10px;
}