* {
    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.5;
    color: #e2e8f0;
    background: #0a0a0a;
    font-size: 14px;
}

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

.warning-banner {
    background: #d97706;
    color: #000;
    text-align: center;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
}

header {
    background: #000;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #1a1a1a;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
}

.checkmark {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.logo-uk {
    color: white;
}

.logo-scores {
    color: #f59e0b;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #a8a29e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 14px;
}

nav a:hover {
    color: #f59e0b;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 32px 0;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

.updated-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #f59e0b;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid #2a2a2a;
}

h1 {
    font-size: 32px;
    color: #f5f5f4;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 14px;
    color: #78716c;
    margin: 4px 0;
}

.casinos-table {
    padding: 32px 0;
    background: #0a0a0a;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
}

tbody tr {
    background: #1a1a1a;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #2a2a2a;
}

tbody tr:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

tbody td {
    padding: 16px 12px;
    vertical-align: middle;
}

tbody tr td:first-child {
    border-radius: 6px 0 0 6px;
}

tbody tr td:last-child {
    border-radius: 0 6px 6px 0;
}

.rank {
    font-size: 20px;
    font-weight: 700;
    color: #57534e;
    width: 50px;
}

.casino-brand {
    width: 120px;
}

.casino-logo {
    background: #000;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    border: 1px solid #2a2a2a;
}

.casino-888 {
    background: #000;
    color: #a3e635;
    font-family: Arial, sans-serif;
}

.casino-32red {
    background: white;
    color: #ef4444;
    border: 2px solid #ef4444;
    font-style: italic;
}

.casino-midnite {
    background: #000;
    color: white;
    font-family: Georgia, serif;
}

.bonus-amount {
    font-size: 13px;
    font-weight: 700;
    color: #f5f5f4;
    margin-bottom: 3px;
}

.bonus-spins {
    font-size: 12px;
    color: #f59e0b;
    font-weight: 600;
}

.rating {
    text-align: center;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 3px;
}

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

.cta {
    text-align: center;
}

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

.visit-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 6px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.visit-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.terms {
    font-size: 10px;
    color: #57534e;
    line-height: 1.3;
}

.features {
    background: #0f0f0f;
    padding: 32px 0;
    border-top: 1px solid #2a2a2a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: #1a1a1a;
    padding: 24px 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #f5f5f4;
}

.feature-card p {
    color: #78716c;
    font-size: 13px;
    line-height: 1.5;
}

.audit-process {
    background: #0a0a0a;
    padding: 32px 0;
}

.audit-process h2 {
    text-align: center;
    font-size: 24px;
    color: #f59e0b;
    margin-bottom: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step-card {
    background: #1a1a1a;
    padding: 20px 16px;
    border-radius: 6px;
    border-top: 3px solid #f59e0b;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #f59e0b;
}

.step-number {
    font-size: 32px;
    font-weight: 200;
    color: #3f3f46;
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #f5f5f4;
}

.step-card p {
    color: #78716c;
    font-size: 13px;
    line-height: 1.5;
}

.info-section {
    background: #0f0f0f;
    padding: 32px 0;
    border-top: 1px solid #2a2a2a;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-column h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f5f5f4;
    border-left: 3px solid #f59e0b;
    padding-left: 12px;
}

.info-column p {
    color: #a8a29e;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.checkmark-list {
    list-style: none;
    margin-top: 12px;
}

.checkmark-list li {
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
    color: #e7e5e4;
    font-weight: 500;
    font-size: 13px;
}

.checkmark-list li:before {
    content: '✓';
    color: #f59e0b;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.pro-tip {
    background: #1a1a1a;
    border-left: 3px solid #f59e0b;
    padding: 12px 16px;
    margin-top: 16px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #f59e0b;
}

.faq {
    background: #0a0a0a;
    padding: 32px 0;
}

.faq h2 {
    text-align: center;
    font-size: 24px;
    color: #f59e0b;
    margin-bottom: 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    background: #1a1a1a;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
}

.faq-item h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #f5f5f4;
}

.faq-item p {
    color: #78716c;
    font-size: 13px;
    line-height: 1.5;
}

footer {
    background: #000;
    color: #78716c;
    padding: 32px 0 16px;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-column h4 {
    color: #f5f5f4;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.location {
    color: #57534e;
    font-size: 12px;
}

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

.footer-column li {
    margin-bottom: 6px;
}

.footer-column a {
    color: #78716c;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #f59e0b;
}

.disclaimer {
    background: #0a0a0a;
    padding: 16px;
    border-radius: 6px;
    margin-top: 24px;
    position: relative;
    border: 1px solid #1a1a1a;
}

.disclaimer-badge {
    background: #dc2626;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    margin-right: 10px;
    vertical-align: middle;
}

.disclaimer h3 {
    display: inline;
    color: #f5f5f4;
    font-size: 14px;
    margin-bottom: 12px;
}

.disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
    color: #78716c;
}

.copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
    color: #57534e;
    font-size: 12px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .feature-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 13px;
    }

    .feature-grid,
    .steps-grid,
    .info-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .logo {
        font-size: 16px;
    }

    nav {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    nav a {
        font-size: 12px;
    }

    table {
        font-size: 12px;
    }

    thead {
        display: none;
    }

    tbody tr {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
        padding: 12px;
        margin-bottom: 12px;
    }

    tbody td {
        padding: 8px 0;
    }

    .rank {
        grid-column: 1;
        grid-row: 1 / 4;
        font-size: 28px;
        display: flex;
        align-items: center;
        width: auto;
        padding-right: 12px;
    }

    .casino-brand {
        grid-column: 2;
        grid-row: 1;
        width: auto;
    }

    .casino-logo {
        padding: 10px;
        font-size: 14px;
        display: inline-block;
    }

    tbody td:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    tbody td:nth-child(4) {
        grid-column: 2;
        grid-row: 3;
    }

    tbody td:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: 4;
    }

    .rating {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rating-score {
        font-size: 20px;
    }

    .stars {
        font-size: 12px;
    }

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

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

    .cta {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .visit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .terms {
        font-size: 9px;
        margin-top: 6px;
    }

    .hero {
        padding: 20px 0;
    }

    .casinos-table,
    .features,
    .audit-process,
    .info-section,
    .faq {
        padding: 20px 0;
    }

    footer {
        padding: 20px 0 12px;
    }

    .feature-card,
    .step-card,
    .faq-item {
        padding: 16px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .step-number {
        font-size: 24px;
    }

    .info-column h2 {
        font-size: 18px;
    }

    .checkmark-list li {
        font-size: 12px;
    }

    .pro-tip {
        font-size: 12px;
        padding: 10px 12px;
    }

    .warning-banner {
        font-size: 11px;
        padding: 5px 12px;
    }
}

.content-page {
    display: none;
    padding: 32px 0;
    background: #0a0a0a;
    min-height: 500px;
}

.content-page.active {
    display: block;
}

.page-title {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #f59e0b;
}

.review-intro,
.methodology-intro,
.safer-intro,
.contact-intro {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid #2a2a2a;
}

.review-detailed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-block {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #2a2a2a;
}

.review-score {
    text-align: right;
}

.score-number {
    font-size: 32px;
    font-weight: 700;
    color: #f59e0b;
}

.review-content h3 {
    font-size: 20px;
    color: #f5f5f4;
    margin-bottom: 12px;
}

.review-content h4 {
    font-size: 16px;
    color: #e7e5e4;
    margin: 16px 0 8px;
}

.review-content p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-cons {
    list-style: none;
    margin: 12px 0;
}

.review-cons li {
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
    color: #78716c;
    font-size: 13px;
}

.review-cons li:before {
    content: '−';
    color: #57534e;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.methodology-section,
.safer-section,
.contact-method {
    margin-bottom: 32px;
}

.methodology-section h3,
.safer-section h3 {
    font-size: 20px;
    color: #f59e0b;
    margin-bottom: 12px;
}

.methodology-section h4,
.safer-section h4 {
    font-size: 16px;
    color: #e7e5e4;
    margin: 16px 0 8px;
}

.methodology-section p,
.safer-section p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.methodology-note {
    background: #1a1a1a;
    border-left: 3px solid #f59e0b;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 13px;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #f59e0b;
}

.scoring-table {
    margin: 16px 0;
}

.scoring-table table {
    width: 100%;
    border-spacing: 0;
}

.scoring-table tr {
    border-bottom: 1px solid #2a2a2a;
}

.scoring-table td {
    padding: 12px;
    font-size: 13px;
    color: #a8a29e;
}

.scoring-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #f5f5f4;
}

.methodology-final {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
    border: 1px solid #2a2a2a;
}

.score-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.score-item {
    background: #0f0f0f;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #f59e0b;
}

.score-item span {
    display: block;
    font-weight: 700;
    color: #f5f5f4;
    margin-bottom: 4px;
}

.score-item p {
    font-size: 13px;
    color: #78716c;
    margin: 0;
}

.warning-box {
    background: #1a0a0a;
    border: 2px solid #dc2626;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.warning-box h3 {
    color: #ef4444;
    font-size: 18px;
    margin-bottom: 8px;
}

.warning-box p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.support-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 16px 0;
}

.support-card,
.tip-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #f59e0b;
}

.support-card h4,
.tip-card h4 {
    color: #f5f5f4;
    font-size: 16px;
    margin-bottom: 8px;
}

.support-card p,
.tip-card p {
    color: #a8a29e;
    font-size: 13px;
    line-height: 1.5;
    margin: 4px 0;
}

.support-card a,
.contact-method a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.support-card a:hover,
.contact-method a:hover {
    text-decoration: underline;
}

.safer-final {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin-top: 24px;
    border: 1px solid #2a2a2a;
}

.safer-final p {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
}

.contact-method h3 {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-method p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
}

.contact-note {
    font-size: 12px;
    color: #78716c;
    font-style: italic;
    margin-top: 8px;
}

.contact-response,
.contact-disclaimer {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #2a2a2a;
}

.contact-response h3 {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-response p,
.contact-disclaimer p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
}

.legal-intro,
.about-intro {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #2a2a2a;
}

.legal-intro p,
.about-intro p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
}

.legal-section,
.about-section {
    margin-bottom: 32px;
}

.legal-section h3,
.about-section h3 {
    font-size: 20px;
    color: #f59e0b;
    margin-bottom: 12px;
    padding-top: 8px;
}

.legal-section h4 {
    font-size: 16px;
    color: #e7e5e4;
    margin: 16px 0 8px;
}

.legal-section p,
.about-section p {
    color: #a8a29e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-section a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookie-category {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin: 16px 0;
    border: 1px solid #2a2a2a;
}

.cookie-category h4 {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-category > p {
    color: #78716c;
    font-size: 13px;
    margin-bottom: 12px;
}

.cookie-table {
    background: #0f0f0f;
    border-radius: 6px;
    padding: 16px;
    margin: 12px 0;
    border-left: 3px solid #f59e0b;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #f59e0b;
}

.cookie-table table {
    border-spacing: 0;
}

.cookie-table tr {
    border-bottom: 1px solid #2a2a2a;
}

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

.cookie-table td {
    padding: 8px 12px 8px 0;
    font-size: 13px;
    color: #a8a29e;
    vertical-align: top;
}

.cookie-table td:first-child {
    color: #78716c;
    width: 140px;
}

@media (max-width: 1024px) {
    .score-breakdown,
    .support-grid,
    .tips-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 22px;
    }

    .review-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .review-score {
        text-align: left;
    }

    .score-number {
        font-size: 24px;
    }

    .review-content h3 {
        font-size: 18px;
    }

    .review-content h4 {
        font-size: 15px;
    }

    .methodology-section h3,
    .safer-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    .logo {
        font-size: 14px;
    }

    .checkmark {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    nav a {
        font-size: 11px;
        padding: 4px;
    }

    .rank {
        font-size: 24px;
    }

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

    .audit-process h2,
    .faq h2 {
        font-size: 20px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 12px;
    }

    .disclaimer h3 {
        font-size: 13px;
        display: block;
        margin-top: 8px;
    }

    .disclaimer p {
        font-size: 11px;
    }

    .page-title {
        font-size: 20px;
    }

    .content-page {
        padding: 20px 0;
    }

    .review-block,
    .contact-method,
    .support-card,
    .tip-card {
        padding: 16px;
    }
}
