/**
 * Variant-01 Template Styles
 * CSS Prefix: gcf90
 *
 * This file is processed by CssGenerator to replace gcf90 with site-specific prefix.
 * Colorway CSS variables are injected at the beginning of the generated file.
 */

/* ============================================
   CSS Variables (defaults, overridden by colorway)
   ============================================ */

:root {
    /* Colorway variables - defaults for fallback */
    --color-primary: #1e3a5f;
    --color-secondary: #374151;
    --color-accent: #1976d2;
    --color-background: #f5f5f5;
    --color-surface: #ffffff;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-button: #1976d2;
    --color-button-hover: #1565c0;
    --color-button-text: #ffffff;
    --color-border: #e0e0e0;
    --color-success: #2e7d32;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-rating: #f5a623;

    /* Variant-specific variables */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --v1-shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --v1-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --v1-transition: 0.2s ease;
}

/* ============================================
   Base Layout
   ============================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   Header
   ============================================ */

.gcf90-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.gcf90-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gcf90-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
}

.gcf90-logo:hover {
    color: var(--color-button-hover);
}

.gcf90-logo-img {
    height: 48px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    vertical-align: middle;
}

/* ============================================
   Navigation
   ============================================ */

.gcf90-nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.gcf90-nav-link {
    padding: 0.5rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--v1-transition);
}

.gcf90-nav-link:hover,
.gcf90-nav-link.active {
    background: var(--color-background);
}

/* Dropdown */
.gcf90-dropdown {
    position: relative;
}

.gcf90-dropdown-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: inherit;
    font-family: inherit;
}

.gcf90-dropdown-btn:hover,
.gcf90-dropdown.active .gcf90-dropdown-btn {
    background: var(--color-background);
}

.gcf90-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 100;
    padding: 0.5rem 0;
}

.gcf90-dropdown:hover .gcf90-dropdown-content {
    display: block;
}

.gcf90-dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-text);
    text-decoration: none;
}

.gcf90-dropdown-content a:hover,
.gcf90-dropdown-content a.active {
    background: var(--color-background);
}

/* ============================================
   Main Content
   ============================================ */

.gcf90-main {
    padding: 1.25rem 0;
}

.gcf90-content {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--v1-shadow-sm);
    overflow-wrap: break-word;
    min-width: 0;
}

.gcf90-content h1 {
    margin-top: 0;
    color: var(--color-accent);
    overflow-wrap: break-word;
}

.gcf90-content h2 {
    color: var(--color-text);
    margin: 2rem 0 1rem;
}

.gcf90-content p {
    margin-bottom: 1rem;
}

.gcf90-content ul,
.gcf90-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.gcf90-content li {
    margin-bottom: 0.35rem;
}

.gcf90-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.gcf90-content figure {
    margin: 1.5rem 0;
}

.gcf90-content img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Offer Cards (Listings)
   ============================================ */

.gcf90-offer-listing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gcf90-offer-card {
    display: grid;
    grid-template-columns: 120px 1fr 200px;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    align-items: center;
    position: relative;
}

.gcf90-offer-card:hover {
    box-shadow: var(--v1-shadow-md);
}

.gcf90-offer-logo img {
    max-width: 100px;
    height: auto;
}

.gcf90-offer-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.gcf90-rating {
    color: var(--color-rating);
    margin-bottom: 0.5rem;
}

.gcf90-bonus {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-success);
}

.gcf90-pros {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.gcf90-pros li {
    margin: 0.25rem 0;
}

.gcf90-pros li::before {
    content: "\2713 ";
    color: var(--color-success);
}

.gcf90-offer-action {
    text-align: center;
}

.gcf90-promo {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.gcf90-promo code {
    background: var(--color-background);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.gcf90-no-code {
    color: color-mix(in srgb, var(--color-text-muted) 70%, transparent);
}

.gcf90-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    min-height: 54px;             /* prominent CTA, exceeds 44px touch standard with room to breathe */
    min-width: 140px;             /* prevents narrow short buttons when text is one word */
    background: var(--color-button);
    color: var(--color-button-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 800;             /* heavier weight = readable across any colorway */
    font-size: 1rem;              /* matches body font size, no more shrinkage */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    /* Subtle dark outline derived from button color itself — boosts contrast
       on both light and dark button backgrounds without locking the text
       color (colorways still control it). */
    text-shadow: 0 1px 2px color-mix(in srgb, var(--color-button) 70%, black);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--color-button) 30%, transparent);
    transition: background var(--v1-transition), transform var(--v1-transition), box-shadow var(--v1-transition);
    white-space: nowrap;
    cursor: pointer;
}

.gcf90-btn-cta:hover {
    background: var(--color-button-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color-button) 45%, transparent);
}

.gcf90-terms {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--color-text-muted) 70%, transparent);
}

.gcf90-rank-badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--color-rating);
    color: var(--color-button-text);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Compact cards (top offers) */
.gcf90-top-offers {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gcf90-compact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 250px;
    background: var(--color-surface);
}

.gcf90-compact-logo {
    width: 50px;
    height: auto;
    background: var(--color-surface);
    background: color-mix(in srgb, var(--color-text) 10%, var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 3px;
    box-sizing: border-box;
}

.gcf90-compact-info {
    flex: 1;
}

.gcf90-btn-sm {
    padding: 0.4rem 0.75rem;
    background: var(--color-success);
    color: var(--color-button-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--v1-transition);
}

.gcf90-btn-sm:hover {
    background: color-mix(in srgb, var(--color-success) 85%, #000);
}

.gcf90-rank {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-rating);
}

/* ============================================
   Article Images (inserted by PlaceholderReplacer)
   ============================================ */

.gcf90-img-figure {
    margin: 1.25rem 0;
    text-align: center;
}

.gcf90-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* ============================================
   Footer
   ============================================ */

.gcf90-footer {
    background: var(--color-primary);
    color: var(--color-text-muted);
    padding: 1rem 0;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.gcf90-footer p {
    margin: 0.25rem 0;
}

.gcf90-disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
}

.gcf90-footer-links {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gcf90-footer-link,
.gcf90-footer-link:visited {
    color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
    text-decoration: none;
    font-size: 0.9rem;
}

.gcf90-footer-link:hover {
    color: var(--color-text);
    text-decoration: underline;
}

.gcf90-footer-trust {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.gcf90-footer-trust a,
.gcf90-footer-trust a:visited {
    color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
    text-decoration: none;
    font-size: 0.9rem;
}

.gcf90-footer-trust a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* Geo Switcher */
.gcf90-geo-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-border);
}

.gcf90-geo-link,
.gcf90-geo-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.15rem 0.35rem;
    border-radius: var(--radius-sm);
    transition: all var(--v1-transition);
}

.gcf90-geo-link:hover {
    color: var(--color-text);
}

.gcf90-geo-link.active,
.gcf90-geo-link.active:visited {
    color: var(--color-text);
    font-weight: 600;
}

.gcf90-geo-flag {
    font-size: 1.1rem;
}

.gcf90-geo-name {
    font-size: 0.8rem;
}

/* Footer Org & License */
.gcf90-footer-org {
    margin: 0.4rem 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.gcf90-footer-org .gcf90-org-name {
    font-weight: 600;
    margin: 0;
    display: inline;
}

.gcf90-footer-org .gcf90-org-name::after {
    content: " — ";
}

.gcf90-footer-org .gcf90-org-address {
    margin: 0;
    opacity: 0.8;
    display: inline;
}

.gcf90-footer-org .gcf90-org-address br {
    display: none;
}

.gcf90-footer-license {
    font-size: 0.8rem;
    opacity: 0.75;
    margin: 0.5rem 0;
}

.gcf90-footer-license p {
    margin: 0;
}

.gcf90-footer-license a {
    color: var(--color-text);
    text-decoration: underline;
}

/* ============================================
   Sitemap Page
   ============================================ */

.gcf90-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcf90-sitemap-item {
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
    padding: 0.75rem 0;
}

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

.gcf90-sitemap-link {
    display: block;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--v1-transition);
}

.gcf90-sitemap-link:hover {
    color: var(--color-button-hover);
    text-decoration: underline;
}

/* ============================================
   Sidebar Layout
   ============================================ */

.gcf90-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

.gcf90-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gcf90-sidebar-widget {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--v1-shadow-sm);
}

.gcf90-sidebar-widget h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.gcf90-sticky-offer {
    position: sticky;
    top: 1rem;
    text-align: center;
}

.gcf90-sidebar-bonus {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: 0.75rem;
}

.gcf90-mini-offer {
    padding: 0.75rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
}

.gcf90-mini-offer:last-child {
    border-bottom: none;
}

.gcf90-mini-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.gcf90-mini-logo {
    width: 60px;
    height: 45px;
    object-fit: contain;
    background: color-mix(in srgb, var(--color-text) 10%, var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 3px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.gcf90-mini-name {
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcf90-mini-row .gcf90-btn-sm {
    flex-shrink: 0;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    background: var(--color-accent);
    color: var(--color-button-text);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.gcf90-mini-bonus {
    margin-top: 0.3rem;
    font-size: 0.78rem;
    color: var(--color-success);
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcf90-mini-rating {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.gcf90-trust-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcf90-trust-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
    font-size: 0.9rem;
}

.gcf90-trust-box li:last-child {
    border-bottom: none;
}

.gcf90-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcf90-sidebar-links li {
    padding: 0.35rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
    font-size: 0.9rem;
}

.gcf90-sidebar-links li:last-child {
    border-bottom: none;
}

.gcf90-sidebar-links a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--v1-transition);
}

.gcf90-sidebar-links a:hover {
    color: var(--color-button-hover);
    text-decoration: underline;
}

.gcf90-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcf90-toc li {
    margin: 0.5rem 0;
}

.gcf90-toc a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.gcf90-toc a:hover {
    text-decoration: underline;
}

/* ============================================
   Breadcrumbs
   ============================================ */

.gcf90-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    grid-column: 1 / -1;
}

.gcf90-breadcrumbs a {
    color: var(--color-accent);
    text-decoration: none;
}

.gcf90-breadcrumbs a:hover {
    text-decoration: underline;
}

.gcf90-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.gcf90-updated {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--color-text-muted) 70%, transparent);
}

/* ============================================
   Offer List (Listing) - Compact Horizontal Cards
   ============================================ */

.gcf90-offer-list-wrap {
    margin: 1.5rem 0;
}

.gcf90-list-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    color: var(--color-text);
}

.gcf90-offer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 12px;
}

.gcf90-offer-item {
    display: grid;
    grid-template-columns: 32px 120px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: box-shadow var(--v1-transition);
}

.gcf90-offer-item:hover {
    box-shadow: var(--v1-shadow-md);
}

.gcf90-offer-featured {
    border: 2px solid var(--color-success);
    background: color-mix(in srgb, var(--color-success) 3%, var(--color-surface));
    position: relative;
}

.gcf90-offer-featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    right: 12px;
    background: var(--color-success);
    color: var(--color-button-text);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcf90-offer-rank {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-accent);
    text-align: center;
}

.gcf90-offer-logo {
    width: 120px;
    min-width: 120px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 4px;
    box-sizing: border-box;
}

.gcf90-offer-info {
    min-width: 0;
}

.gcf90-offer-name {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.gcf90-offer-name-link {
    color: var(--color-text);
    text-decoration: none;
}

.gcf90-offer-name-link:hover {
    color: var(--color-accent);
}

.gcf90-offer-bonus {
    font-weight: 700;
    color: var(--color-success);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.gcf90-offer-terms {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.gcf90-offer-wagering,
.gcf90-offer-mindeposit {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.gcf90-offer-pros {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gcf90-offer-pros li {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.gcf90-offer-pros li::before {
    content: "\2713 ";
    color: var(--color-success);
}

.gcf90-offer-rating {
    text-align: center;
    min-width: 70px;
}

.gcf90-rating-stars {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 0.25rem;
}

.gcf90-star {
    color: var(--color-border);
    font-size: 1.1rem;
}

.gcf90-star.filled {
    color: var(--color-rating);
}

.gcf90-rating-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.gcf90-offer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    min-height: 54px;             /* match .btn-cta — was too short before */
    min-width: 140px;
    background: var(--color-success);
    color: var(--color-button-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Subtle dark outline derived from button color — keeps text readable
       on any colorway (e.g. mint text on emerald button) */
    text-shadow: 0 1px 2px color-mix(in srgb, var(--color-success) 70%, black);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--color-success) 30%, transparent);
    transition: background var(--v1-transition), transform var(--v1-transition), box-shadow var(--v1-transition);
    cursor: pointer;
}

.gcf90-offer-cta:hover {
    background: color-mix(in srgb, var(--color-success) 85%, #000);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color-success) 45%, transparent);
}

/* Legacy table styles for backward compatibility */
.gcf90-offer-table-wrap {
    margin: 1.5rem 0;
}

.gcf90-table-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gcf90-table-title .gcf90-star {
    color: var(--color-rating);
}

.gcf90-bonus-text {
    font-weight: 700;
    color: var(--color-success);
    font-size: 0.95rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcf90-btn-play {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: var(--color-button);
    color: var(--color-button-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    transition: background var(--v1-transition);
}

.gcf90-btn-play:hover {
    background: var(--color-button-hover);
}

.gcf90-col-action {
    text-align: center;
}

/* Alternatives Section (review/bonus pages) */
.gcf90-alternatives {
    margin: 2rem 0;
    padding: 1.5rem;
    background: color-mix(in srgb, var(--color-accent) 4%, var(--color-surface));
    border-radius: var(--radius-lg);
    border: 1px solid color-mix(in srgb, var(--color-accent) 15%, var(--color-border));
}

.gcf90-alternatives .gcf90-table-title {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--color-accent);
}

.gcf90-alternatives-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gcf90-alternatives-table .gcf90-offer-row {
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 30%, transparent);
}

.gcf90-alternatives-table .gcf90-offer-row:last-child {
    border-bottom: none;
}

.gcf90-alternatives-table .gcf90-table-logo {
    width: 120px;
    height: 65px;
    object-fit: contain;
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 3px;
    box-sizing: border-box;
}

/* Desktop styles for alternatives table cells */
.gcf90-casino-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gcf90-cell-casino {
    min-width: 200px;
}

.gcf90-cell-rating {
    text-align: center;
    min-width: 60px;
}

.gcf90-cell-bonus {
    min-width: 150px;
}

.gcf90-cell-action {
    text-align: center;
    min-width: 120px;
}

/* ============================================
   Brand Hero (Review/Bonus)
   ============================================ */

.gcf90-brand-hero {
    /* When a brand has its own color_primary, review.php inlines a per-page
       override. This default fires for brands without color data — use
       --color-accent (always vibrant) instead of --color-primary (which is
       a dark/light background tint on many colorways and produces invisible
       gradients). */
    background: linear-gradient(135deg, var(--color-accent) 0%, color-mix(in srgb, var(--color-accent) 60%, #000) 100%);
    color: var(--color-button-text);
    padding: 1rem 0;
}

.gcf90-hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.25rem;
    align-items: center;
}

.gcf90-hero-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gcf90-hero-logo {
    width: 150px;
    height: auto;
    min-height: 70px;
    max-height: 90px;
    object-fit: contain;
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gcf90-hero-info {
    flex: 1;
}

.gcf90-hero-name {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.gcf90-hero-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.gcf90-hero-rating .gcf90-star {
    color: rgba(255,255,255,0.3);
}

.gcf90-hero-rating .gcf90-star.filled {
    color: var(--color-rating);
}

.gcf90-rating-score {
    font-weight: 600;
    font-size: 1.1rem;
}

.gcf90-hero-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 0.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gcf90-hero-stats li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    opacity: 0.85;
}

.gcf90-stat-icon {
    font-size: 0.9rem;
}

.gcf90-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.gcf90-hero-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
}

.gcf90-hero-offer {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.gcf90-offer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.gcf90-offer-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcf90-offer-value {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.gcf90-offer-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
}

.gcf90-hero-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    margin-top: 0.35rem;
    background: var(--color-warning);
    color: var(--color-button-text);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: filter var(--v1-transition), transform var(--v1-transition);
}

.gcf90-hero-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.gcf90-min-deposit {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.gcf90-geo-flag {
    font-size: 1.25rem;
}

.gcf90-payment-icons {
    display: flex;
    gap: 0.5rem;
}

.gcf90-payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 24px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
}

.gcf90-providers-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.gcf90-providers-label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-right: 0.1rem;
}

.gcf90-provider-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

/* ============================================
   Pros/Cons Box
   ============================================ */

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

.gcf90-pros-box {
    background: color-mix(in srgb, var(--color-success) 10%, var(--color-surface));
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.gcf90-pros-box h3 {
    margin: 0 0 1rem;
    color: var(--color-success);
}

.gcf90-pros-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcf90-pros-box li {
    padding: 0.5rem 0;
    color: color-mix(in srgb, var(--color-success) 80%, #000);
}

/* ============================================
   Info Page Layout
   ============================================ */

.gcf90-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.gcf90-sidebar-block {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--v1-shadow-sm);
    margin-bottom: 1.5rem;
}

.gcf90-sidebar-block h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.gcf90-sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcf90-sidebar-block li {
    padding: 0.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
}

.gcf90-sidebar-block li:last-child {
    border-bottom: none;
}

.gcf90-sidebar-block a {
    color: var(--color-accent);
    text-decoration: none;
}

.gcf90-sidebar-block a:hover {
    text-decoration: underline;
}

/* ============================================
   Alternatives Table
   ============================================ */

.gcf90-alternatives-table th,
.gcf90-alternatives-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.gcf90-alternatives-table th {
    background: var(--color-background);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .gcf90-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .gcf90-with-sidebar {
        grid-template-columns: 1fr;
    }

    .gcf90-sidebar {
        order: 1;
    }

    .gcf90-sticky-offer {
        position: static;
    }

    .gcf90-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gcf90-header .container {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile offer list - card layout */
    .gcf90-offer-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
        text-align: center;
        padding: 1rem;
    }

    .gcf90-offer-rank {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        width: 28px;
        height: 28px;
        background: var(--color-accent);
        color: var(--color-button-text);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .gcf90-offer-item {
        position: relative;
        padding-top: 2rem;
        gap: 0.5rem;
    }

    /* Touch-friendly CTA on mobile — full-width, slightly tighter padding */
    .gcf90-btn-cta {
        width: 100%;
        padding: 1rem;
        min-height: 52px;
        min-width: 0;             /* don't enforce desktop min-width inside narrow cards */
        font-size: 1rem;
    }
    .gcf90-btn-cta:hover {
        transform: none;          /* mobile has no hover; prevents jitter on tap */
    }

    .gcf90-offer-featured::before {
        top: 0;
        right: 0;
        border-radius: 0 var(--radius-md) 0 var(--radius-sm);
    }

    .gcf90-offer-logo {
        margin: 0 auto;
        width: 120px;
        min-width: 120px;
        height: 65px;
    }

    .gcf90-offer-info {
        text-align: center;
    }

    .gcf90-offer-terms {
        justify-content: center;
    }

    .gcf90-offer-pros {
        display: none;
    }

    .gcf90-offer-cta {
        width: 100%;
        min-height: 52px;
        min-width: 0;             /* don't enforce desktop floor inside narrow cards */
    }
    .gcf90-offer-cta:hover {
        transform: none;          /* no jitter on tap */
    }

    .gcf90-offer-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gcf90-compact-card {
        min-width: 100%;
    }

    /* Mobile table - legacy */
    .gcf90-offer-table thead {
        display: none;
    }

    .gcf90-offer-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
        border-radius: var(--radius-lg);
        padding: 1rem;
    }

    .gcf90-offer-table td {
        display: block;
        padding: 0.5rem 0;
        border: none;
        text-align: left;
    }

    .gcf90-casino-info {
        flex-wrap: wrap;
    }

    .gcf90-cell-action {
        text-align: left;
        margin-top: 0.5rem;
    }

    .gcf90-btn-play {
        width: 100%;
        text-align: center;
    }

    /* Mobile hero — tighten to push CTA above fold */
    .gcf90-brand-hero {
        padding: 0.75rem 0;
    }

    .gcf90-hero-grid {
        gap: 0.75rem;
    }

    .gcf90-hero-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .gcf90-hero-logo {
        width: 180px;             /* desktop is 150px — mobile gets bigger since
                                     it's centered alone above the brand name */
        min-height: 100px;
        max-height: 140px;
        padding: 0.75rem;
    }

    .gcf90-hero-name {
        font-size: 1.15rem;
        margin-bottom: 0.15rem;
    }

    .gcf90-hero-rating .gcf90-star {
        font-size: 0.9rem;
    }

    .gcf90-rating-score {
        font-size: 0.95rem;
    }

    .gcf90-hero-stats {
        justify-content: center;
        gap: 0.35rem;
        margin-bottom: 0.2rem;
    }

    .gcf90-hero-stats li {
        font-size: 0.78rem;
    }

    .gcf90-hero-tags {
        justify-content: center;
        gap: 0.25rem;
    }

    .gcf90-hero-tag {
        padding: 0.15rem 0.4rem;
        font-size: 0.7rem;
    }

    .gcf90-payment-icons {
        justify-content: center;
    }

    .gcf90-providers-bar {
        justify-content: center;
        gap: 0.25rem;
        margin-top: 0.25rem;
    }

    .gcf90-provider-tag {
        font-size: 0.65rem;
        padding: 0.1rem 0.35rem;
    }

    .gcf90-providers-label {
        font-size: 0.7rem;
    }

    .gcf90-hero-offer {
        padding: 0.75rem;
    }

    .gcf90-offer-value {
        font-size: 1.1rem;
    }

    .gcf90-hero-cta {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .gcf90-meta-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .gcf90-breadcrumbs {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Alternatives table mobile */
    .gcf90-alternatives-table {
        display: block;
    }

    .gcf90-alternatives-table thead {
        display: none;
    }

    .gcf90-alternatives-table tbody {
        display: block;
    }

    .gcf90-alternatives-table tr {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-surface);
    }

    .gcf90-alternatives-table td {
        display: block;
        padding: 0.25rem 0;
        border: none;
    }

    .gcf90-alternatives-table .gcf90-casino-info {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .gcf90-alternatives-table .gcf90-cell-action {
        margin-top: 0.5rem;
    }

    .gcf90-alternatives-table .gcf90-btn-play {
        width: 100%;
    }
}

/* ============================================
   Content Tables
   ============================================ */

.gcf90-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.gcf90-content th,
.gcf90-content td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.gcf90-content th {
    background-color: var(--color-background);
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.gcf90-content tr:hover {
    background-color: color-mix(in srgb, var(--color-text) 2%, var(--color-surface));
}

.gcf90-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

.gcf90-table-wrap table {
    margin: 0;
}

@media (max-width: 768px) {
    .gcf90-content th,
    .gcf90-content td {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   FAQ Accordion
   ============================================ */

.gcf90-faq {
    margin: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.gcf90-faq-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.gcf90-faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--color-surface);
}

.gcf90-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    gap: 1rem;
    list-style: none;
    transition: background var(--v1-transition);
}

.gcf90-faq-question::-webkit-details-marker {
    display: none;
}

.gcf90-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: transform var(--v1-transition);
    flex-shrink: 0;
}

.gcf90-faq-item[open] .gcf90-faq-question::after {
    content: '\2212';
}

.gcf90-faq-question:hover {
    background: var(--color-background);
}

.gcf90-faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ answer content formatting */
.gcf90-faq-answer p {
    margin: 0 0 0.75rem;
}

.gcf90-faq-answer p:last-child {
    margin-bottom: 0;
}

.gcf90-faq-answer ul,
.gcf90-faq-answer ol {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.gcf90-faq-answer li {
    margin: 0.25rem 0;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .gcf90-faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .gcf90-faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Q&A Thread (Forum Style)
   ============================================ */

.gcf90-qa-thread {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--v1-shadow-sm);
}

.gcf90-qa-question {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
}

.gcf90-qa-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.gcf90-qa-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.gcf90-qa-author {
    font-weight: 500;
    color: var(--color-accent);
}

.gcf90-qa-dot {
    color: var(--color-border);
}

.gcf90-qa-time {
    color: var(--color-text-muted);
}

.gcf90-qa-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.gcf90-qa-body p {
    margin: 0 0 0.75rem;
}

.gcf90-qa-body p:last-child {
    margin-bottom: 0;
}

.gcf90-qa-votes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gcf90-qa-upvote {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.gcf90-qa-count {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Answers Header */
.gcf90-qa-answers-header {
    padding: 1rem 2rem;
    background: var(--color-background);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

/* Answer Cards */
.gcf90-qa-answer {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border);
}

.gcf90-qa-answer:last-child {
    border-bottom: none;
}

/* Top Answer - Highlighted */
.gcf90-qa-top-answer {
    background: color-mix(in srgb, var(--color-success) 5%, var(--color-surface));
    border-left: 3px solid var(--color-success);
}

.gcf90-qa-top-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-success);
    color: var(--color-button-text);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* Reply Answers - Nested/Threaded */
.gcf90-qa-reply {
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-border);
    background: color-mix(in srgb, var(--color-background) 50%, var(--color-surface));
    position: relative;
}

.gcf90-qa-reply-indicator {
    position: absolute;
    left: -1.25rem;
    top: 1.5rem;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .gcf90-qa-reply {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .gcf90-qa-reply-indicator {
        left: -0.75rem;
        font-size: 0.875rem;
    }
}

/* Answer Form */
.gcf90-qa-form {
    padding: 1.5rem 2rem;
    background: var(--color-background);
    border-top: 2px solid var(--color-border);
}

.gcf90-qa-form h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.gcf90-qa-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    background: var(--color-surface);
    color: var(--color-text);
    transition: border-color var(--v1-transition);
}

.gcf90-qa-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.gcf90-qa-textarea::placeholder {
    color: var(--color-text-muted);
}

.gcf90-qa-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.gcf90-qa-submit {
    padding: 0.6rem 1.5rem;
    background: var(--color-button);
    color: var(--color-button-text);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--v1-transition);
}

.gcf90-qa-submit:hover {
    background: var(--color-button-hover);
}

.gcf90-qa-form-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Q&A Responsive */
@media (max-width: 768px) {
    .gcf90-qa-question,
    .gcf90-qa-answer {
        padding: 1rem 1.25rem;
    }

    .gcf90-qa-answers-header {
        padding: 0.75rem 1.25rem;
    }

    .gcf90-qa-title {
        font-size: 1.25rem;
    }

    .gcf90-qa-meta {
        flex-wrap: wrap;
    }

    .gcf90-qa-body {
        font-size: 0.95rem;
    }

    .gcf90-qa-form {
        padding: 1rem 1.25rem;
    }

    .gcf90-qa-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .gcf90-qa-submit {
        width: 100%;
    }

    .gcf90-qa-form-hint {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ============================================
   Q&A Hub (Community Discussions List)
   ============================================ */

.gcf90-qa-hub {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--v1-shadow-sm);
}

.gcf90-qa-hub-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(135deg, var(--color-surface), color-mix(in srgb, var(--color-accent) 5%, var(--color-surface)));
}

.gcf90-qa-hub-header h1 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.gcf90-qa-hub-desc {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.gcf90-qa-hub-list {
    display: flex;
    flex-direction: column;
}

.gcf90-qa-hub-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: background-color var(--v1-transition);
}

.gcf90-qa-hub-item:last-child {
    border-bottom: none;
}

.gcf90-qa-hub-item:hover {
    background: color-mix(in srgb, var(--color-accent) 5%, var(--color-surface));
}

.gcf90-qa-hub-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gcf90-qa-hub-content {
    flex: 1;
    min-width: 0;
}

.gcf90-qa-hub-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcf90-qa-hub-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.gcf90-qa-hub-votes {
    color: var(--color-accent);
    font-weight: 500;
}

.gcf90-qa-hub-answers {
    color: var(--color-text-muted);
}

.gcf90-qa-hub-time {
    color: var(--color-text-muted);
}

.gcf90-qa-hub-arrow {
    color: var(--color-text-muted);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.gcf90-qa-hub-empty {
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--color-text-muted);
}

/* Q&A Hub Responsive */
@media (max-width: 768px) {
    .gcf90-qa-hub-header {
        padding: 1.5rem 1rem;
    }

    .gcf90-qa-hub-header h1 {
        font-size: 1.5rem;
    }

    .gcf90-qa-hub-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .gcf90-qa-hub-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .gcf90-qa-hub-icon {
        font-size: 1.25rem;
    }

    .gcf90-qa-hub-arrow {
        display: none;
    }
}

/* ============================================
   Article Date
   ============================================ */

.gcf90-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0 0.75rem;
}

.gcf90-author {
    font-weight: 500;
}

.gcf90-article-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form {
    max-width: 560px;
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border, rgba(255,255,255,0.1));
    border-radius: var(--radius-md);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-background);
    border: 1px solid var(--color-border, rgba(255,255,255,0.15));
    border-radius: var(--radius-md);
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-submit {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-button-text);
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-form .btn-submit:hover {
    opacity: 0.85;
}

/* ============================================
   Mobile Menu Toggle
   ============================================ */

.gcf90-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text);
    font-size: 1.5rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
}

.gcf90-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    margin: 4px auto;
    border-radius: 1px;
    transition: transform var(--v1-transition), opacity var(--v1-transition);
}

@media (max-width: 768px) {
    .gcf90-menu-toggle {
        display: block;
        order: 1;
    }

    .gcf90-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 2;
    }

    .gcf90-nav.active,
    .gcf90-nav.is-open {
        display: flex;
    }

    .gcf90-nav-link {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .gcf90-dropdown {
        width: 100%;
    }

    .gcf90-dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .gcf90-dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        background: var(--color-background);
    }

    .gcf90-header .container {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: left;
    }
}

/* ============================================
   Missing Class Definitions
   ============================================ */

/* Go-link cursor */
.go-link {
    cursor: pointer;
}

/* Listing content modifier (no special overrides needed, but define for completeness) */
.gcf90-listing-content {
    /* inherits from gcf90-content */
}

/* Review/bonus content modifier */
.gcf90-review-content {
    /* inherits from gcf90-content */
}

/* Intro section in listing */
.gcf90-intro {
    margin-bottom: 1rem;
}

.gcf90-intro p:first-child {
    margin-top: 0;
}

/* Promo banner in listing sidebar */
.gcf90-promo-banner {
    background: color-mix(in srgb, var(--color-accent) 8%, var(--color-surface));
    border: 1px solid color-mix(in srgb, var(--color-accent) 20%, var(--color-border));
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Mini-info container in review sidebar related offers */
.gcf90-mini-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

/* Footer description */
.gcf90-footer-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Casino name link in alternatives/recommendations table */
.gcf90-casino-name {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.gcf90-casino-name:hover {
    color: var(--color-accent);
}

/* Base offer-table styles (the <table> element itself) */
.gcf90-offer-table {
    width: 100%;
    border-collapse: collapse;
}

/* ============================================
   Typography Hierarchy (h3 + content links)
   ============================================ */

.gcf90-content h3 {
    color: var(--color-text);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.15rem;
}

.gcf90-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
    transition: color var(--v1-transition);
}

.gcf90-content a:hover {
    color: var(--color-button-hover);
    text-decoration-color: var(--color-button-hover);
}

/* ============================================
   Alternatives Table — Row Hover & Button Fix
   ============================================ */

.gcf90-alternatives-table .gcf90-offer-row:hover {
    background: color-mix(in srgb, var(--color-accent) 6%, var(--color-surface));
}

.gcf90-alternatives-table .gcf90-btn-play {
    background: var(--color-button);
    color: var(--color-button-text);
    box-shadow: 0 2px 6px color-mix(in srgb, var(--color-button) 35%, transparent);
    font-weight: 700;
    min-width: 80px;
}

.gcf90-alternatives-table .gcf90-btn-play:hover {
    background: var(--color-button-hover);
    box-shadow: 0 3px 10px color-mix(in srgb, var(--color-button) 50%, transparent);
}


/* ============================================
   Offer CTA — Extra Shadow for Contrast
   ============================================ */

.gcf90-offer-cta {
    box-shadow: 0 3px 10px color-mix(in srgb, var(--color-success) 40%, transparent);
}

/* ============================================
   Listing H1 — Tighter Top Margin
   ============================================ */

.gcf90-listing-content h1 {
    margin-bottom: 0.35rem;
}

/* ============================================
   Mobile — Tighter Listing Intro for Above-Fold CTA
   ============================================ */

@media (max-width: 768px) {
    .gcf90-listing-content h1 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.25rem;
    }

    .gcf90-article-meta {
        margin: 0.15rem 0 0.5rem;
        font-size: 0.8rem;
    }

    /* Limit intro to ~3 lines on mobile listing to push CTA above fold */
    .gcf90-listing-content .gcf90-intro {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0.5rem;
    }

    .gcf90-intro p {
        margin: 0.5rem 0;
    }

    .gcf90-list-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .gcf90-offer-list-wrap {
        margin: 0.75rem 0;
    }

    .gcf90-offer-list {
        gap: 0.5rem;
        padding-top: 8px;
    }

    /* Tighter content padding on mobile */
    .gcf90-content {
        padding: 1rem;
    }

    .gcf90-main {
        padding: 0.75rem 0;
    }

    /* Hide offer terms on mobile — bonus text is sufficient */
    .gcf90-offer-terms {
        display: none;
    }
}

/* ============================================
   Logo Go-Link Flex Safety
   ============================================ */

.gcf90-casino-info .go-link {
    flex-shrink: 0;
    line-height: 0;
}

.gcf90-offer-item .go-link {
    flex-shrink: 0;
    line-height: 0;
}

/* ============================================
   Table Logo — Ensure 120x65 with Safe Background
   ============================================ */

.gcf90-table-logo {
    width: 120px;
    min-width: 120px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 4px;
    box-sizing: border-box;
}

/* ============================================
   Cell Casino — Wider for 120px Logos
   ============================================ */

.gcf90-cell-casino {
    min-width: 280px;
}

/* Colorway: Golden Luxury | Radius: crisp */
:root {
    --color-primary: #1c1917;
    --color-secondary: #292524;
    --color-accent: #f59e0b;
    --color-background: #0c0a09;
    --color-surface: #1c1917;
    --color-text: #fefce8;
    --color-text-muted: #fcd34d;
    --color-button: #d97706;
    --color-button-hover: #b45309;
    --color-button-text: #ffffff;
    --color-border: #78350f;
    --color-success: #4ade80;
    --color-warning: #fde047;
    --color-error: #f87171;
    --color-rating: #fbbf24;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
}
