@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #370b6a;
    --secondary-purple: #4a1580;
    --dark-purple: #2d0854;
    --deep-purple: #1a0530;
    --light-grey: #e8e8e8;
    --medium-grey: #d8d8d8;
    --dark-grey: #8a8a8a;
    --darker-grey: #666666;
    --white: #ffffff;
    --off-white: #f4f2f7;
    --surface: #faf9fc;
    --accent-green: #10b759;
    --text-dark: #2a2a2a;
    --text-muted: #5c5c5c;
    --text-purple: #370b6a;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(45, 8, 84, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 8, 84, 0.1);
    --shadow-lg: 0 16px 40px rgba(45, 8, 84, 0.14);
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 12% 8%, rgba(55, 11, 106, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 88% 92%, rgba(74, 21, 128, 0.05) 0%, transparent 38%),
        var(--off-white);
    min-height: 100vh;
}

img, svg {
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s;
}

/* ─── Header ─── */
header {
    background: var(--white);
    color: var(--text-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(55, 11, 106, 0.08), 0 4px 16px rgba(45, 8, 84, 0.06);
    border-bottom: 1px solid rgba(55, 11, 106, 0.1);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mobile-menu-toggle {
    display: none;
    background: var(--off-white);
    border: 1px solid rgba(55, 11, 106, 0.12);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.55rem;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--primary-purple);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

nav a:hover {
    background: rgba(55, 11, 106, 0.08);
    color: var(--primary-purple);
}

/* ─── Hero ─── */
.hero {
    background: transparent;
    color: var(--text-dark);
    padding: 2.5rem 1.5rem 0;
    text-align: left;
    position: relative;
    overflow: visible;
    margin: 0;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(145deg, var(--dark-purple) 0%, var(--primary-purple) 50%, #5a1a96 100%);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-content::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 183, 89, 0.7);
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-shadow: none;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 1.1rem 1rem;
    backdrop-filter: blur(8px);
    transition: transform 0.2s, background 0.2s;
}

.hero-stat:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.hero-stat span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    line-height: 1.35;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-purple);
    padding: 0.85rem 1.65rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: none;
}

.cta-button::after {
    content: "→";
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: #f0ebf8;
}

.cta-button:hover::after {
    transform: translateX(3px);
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s, border-color 0.2s;
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
}

/* ─── Trust Gallery (Bento) ─── */
.image-gallery {
    background: transparent;
    padding: 2rem 1.5rem 0.5rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.gallery-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    padding: 1.35rem 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(55, 11, 106, 0.08);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    opacity: 0;
    transition: opacity 0.25s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item svg,
.gallery-item img {
    filter: none;
    transition: transform 0.25s;
    display: block;
    width: 100%;
    max-width: 72px;
    height: auto;
    margin: 0 auto;
}

.gallery-item:hover svg,
.gallery-item:hover img {
    transform: scale(1.08);
    filter: none;
}

.gallery-item p {
    margin-top: 0.85rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

/* ─── Main Content ─── */
main {
    max-width: 1240px;
    margin: 2rem auto 2.5rem;
    padding: 0 1.5rem;
}

section {
    background-color: var(--white);
    margin-bottom: 1.25rem;
    padding: 2rem 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(55, 11, 106, 0.07);
    border-left: none;
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0.5;
}

h2 {
    color: var(--primary-purple);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    margin-bottom: 1.1rem;
    font-weight: 800;
    border-left: none;
    padding-left: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h3 {
    color: var(--secondary-purple);
    font-size: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 0.65rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h4 {
    color: var(--primary-purple);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

p {
    margin-bottom: 0.85rem;
    line-height: 1.75;
    color: var(--text-dark);
}

strong {
    color: var(--primary-purple);
    font-weight: 700;
}

article .content-inline-link,
.content-inline-link {
    color: var(--secondary-purple);
    text-decoration: underline;
    text-decoration-color: rgba(55, 11, 106, 0.25);
    text-underline-offset: 0.18em;
    font-weight: 600;
}

article .content-inline-link:hover,
.content-inline-link:hover {
    color: var(--dark-purple);
    text-decoration-color: rgba(55, 11, 106, 0.5);
}

/* Tables & callouts */
.content-table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(55, 11, 106, 0.08);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.content-table th,
.content-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #ece8f2;
}

.content-table th {
    background: var(--off-white);
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.content-table tbody tr:hover {
    background: rgba(55, 11, 106, 0.03);
}

.tip-callout {
    margin: 1.25rem 0;
    padding: 1.15rem 1.25rem;
    background: var(--off-white);
    border: 1px solid rgba(55, 11, 106, 0.1);
    border-radius: var(--radius-sm);
    box-shadow: none;
    position: relative;
    padding-left: 3.25rem;
}

.tip-callout::before {
    content: "💡";
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    font-size: 1.1rem;
}

.tip-callout h4 {
    margin: 0 0 0.5rem;
    color: var(--primary-purple);
    font-size: 1rem;
}

.tip-callout p,
.tip-callout ul {
    margin-bottom: 0.5rem;
}

.tip-callout ul {
    padding-left: 1.25rem;
}

/* Card layouts */
.game-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
}

.game-compare-card {
    padding: 1.15rem 1.2rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.09);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-compare-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.game-compare-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--primary-purple);
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(55, 11, 106, 0.1);
}

.game-compare-card dl {
    margin: 0;
}

.game-compare-card dl > div {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0.35rem 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(55, 11, 106, 0.06);
}

.game-compare-card dl > div:last-child {
    border-bottom: none;
}

.game-compare-card dt {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--darker-grey);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.game-compare-card dd {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0 1.25rem;
}

.strategy-card {
    padding: 1.15rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.08);
    box-shadow: var(--shadow-sm);
}

.strategy-card-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--primary-purple);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.6rem;
}

.strategy-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--primary-purple);
}

.strategy-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.info-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0 1.25rem;
}

.info-card {
    padding: 1.15rem 1.2rem;
    background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.08);
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--primary-purple);
}

.info-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.highlight-card {
    margin: 1rem 0 1.25rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, rgba(55, 11, 106, 0.07) 0%, var(--white) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.12);
}

.highlight-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--primary-purple);
}

.highlight-card p {
    margin: 0;
}

.steps-card {
    margin: 0.75rem 0 1.25rem;
    padding: 1.15rem 1.25rem 1.15rem 2.75rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.08);
}

.steps-card ol {
    margin: 0;
    padding-left: 1.25rem;
}

.steps-card li {
    margin-bottom: 0.55rem;
    line-height: 1.65;
}

.content-card.tip-card {
    margin: 1.25rem 0;
    padding: 1.2rem 1.3rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.1);
    box-shadow: var(--shadow-sm);
}

.content-card.tip-card h4 {
    margin: 0 0 0.65rem;
    color: var(--primary-purple);
    font-size: 1rem;
}

.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.faq-cards-grid .faq-item {
    margin-bottom: 0;
    height: 100%;
}

.related-pages {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(55, 11, 106, 0.08);
}

.related-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.related-card {
    display: block;
    padding: 0.85rem 1rem;
    text-align: center;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-purple);
    background: var(--off-white);
    border: 1px solid rgba(55, 11, 106, 0.1);
    border-radius: var(--radius-sm);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.related-card:hover {
    background: var(--white);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    color: var(--dark-purple);
}

/* Bonus mini cards */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 0.5rem;
}

.bonus-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(55, 11, 106, 0.09);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.bonus-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-decoration: none;
}

.bonus-card-link:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.bonus-card-media {
    line-height: 0;
    background: linear-gradient(160deg, var(--off-white) 0%, #ece6f4 100%);
}

.bonus-card-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.bonus-card-body {
    padding: 1.1rem 1.15rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.bonus-card-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--primary-purple);
    padding: 0.22rem 0.55rem;
    border-radius: var(--radius-pill);
}

.bonus-card-tag.is-tournament {
    background: var(--secondary-purple);
}

.bonus-card-tag.is-crypto {
    background: #5a1a96;
}

.bonus-card-body h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--primary-purple);
}

.bonus-card-summary {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.bonus-card-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.65rem;
}

.bonus-card-meta li {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--text-dark);
    background: var(--off-white);
    border-radius: 8px;
    padding: 0.45rem 0.55rem;
    border: 1px solid rgba(55, 11, 106, 0.07);
}

.bonus-card-meta li span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--darker-grey);
    margin-bottom: 0.12rem;
}

.bonus-card-details {
    margin-top: auto;
    border: 1px solid rgba(55, 11, 106, 0.1);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.bonus-card-details summary {
    cursor: pointer;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-purple);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    user-select: none;
}

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

.bonus-card-details summary::after {
    content: "+";
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary-purple);
}

.bonus-card-details[open] summary::after {
    content: "−";
}

.bonus-card-details summary:hover {
    background: rgba(55, 11, 106, 0.04);
}

.bonus-rules {
    margin: 0;
    padding: 0.65rem 0.85rem 0.85rem 2rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--text-muted);
    border-top: 1px solid rgba(55, 11, 106, 0.08);
}

.bonus-rules li {
    margin-bottom: 0.45rem;
}

.bonus-rules li:last-child {
    margin-bottom: 0;
}

.bonus-card-note {
    margin: 0;
    font-size: 0.78rem;
    font-style: italic;
    color: var(--darker-grey);
}

.bonus-cards-outro {
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }

    .bonus-card-meta {
        grid-template-columns: 1fr;
    }
}

/* Slot gallery */
.slot-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.slot-game-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(55, 11, 106, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.slot-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slot-game-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 1rem;
    background: linear-gradient(160deg, var(--dark-purple) 0%, var(--deep-purple) 100%);
}

.slot-game-card-media img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.slot-game-card-body {
    padding: 1.1rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.slot-game-card-body h4 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--primary-purple);
}

.slot-game-provider {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    color: var(--darker-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.slot-game-meta {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.75rem;
}

.slot-game-meta li {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.slot-game-meta li span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--darker-grey);
    margin-bottom: 0.1rem;
}

.slot-game-feature {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.player-review {
    margin: 0;
    margin-top: auto;
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-muted);
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(55, 11, 106, 0.07);
}

.player-review cite {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    color: var(--darker-grey);
}

.player-reviews-section blockquote {
    margin: 0.75rem 0 1rem;
    padding: 1rem 1.15rem;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(55, 11, 106, 0.08);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.player-reviews-section blockquote cite {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    color: var(--darker-grey);
}

.notice-box {
    margin: 1rem 0 1.25rem;
    padding: 0.9rem 1.1rem;
    background: #fff8e6;
    border: 1px solid #e8d9a8;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    line-height: 1.55;
}

.rtp-table-card {
    margin: 1rem 0 1.25rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.feature-card {
    padding: 1.35rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h3 {
    color: var(--primary-purple);
    margin-top: 0;
    font-size: 1.1rem;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card h3::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* FAQ */
.faq-item {
    margin-bottom: 1rem;
    padding: 1.15rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(55, 11, 106, 0.08);
    transition: box-shadow 0.25s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 1.02rem;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-accordion {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-accordion-item {
    border: 1px solid rgba(55, 11, 106, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-accordion-button {
    width: 100%;
    padding: 1.1rem 1.25rem;
    text-align: left;
    background: var(--surface);
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-accordion-button:hover {
    background: rgba(55, 11, 106, 0.05);
}

.faq-accordion-button.active {
    background: var(--primary-purple);
    color: var(--white);
}

.faq-accordion-button::after {
    content: "+";
    font-size: 1.35rem;
    font-weight: 400;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(55, 11, 106, 0.08);
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}

.faq-accordion-button.active::after {
    content: "−";
    background: rgba(255, 255, 255, 0.2);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-accordion-content.active {
    max-height: 1200px;
    transition: max-height 0.5s ease-in;
}

.faq-accordion-answer {
    padding: 0 1.25rem 1.15rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-accordion-button.active + .faq-accordion-content .faq-accordion-answer {
    padding-top: 0.25rem;
}

/* Lists */
ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.45rem;
    color: var(--text-dark);
    line-height: 1.65;
}

li::marker {
    color: var(--secondary-purple);
}

/* ─── Footer ─── */
footer {
    background: var(--white);
    color: var(--text-muted);
    padding: 2rem 1.5rem 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(55, 11, 106, 0.1);
}

.footer-content {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(55, 11, 106, 0.08);
}

.footer-brand {
    flex: 1;
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-purple);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-logo:hover {
    color: var(--secondary-purple);
}

.footer-tagline {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    color: var(--dark-grey);
    font-weight: 500;
    line-height: 1.4;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-social a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--darker-grey);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--primary-purple);
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 0.65rem;
}

.footer-nav a,
.footer-legal a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.15rem 0;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--primary-purple);
}

.footer-nav a:not(:last-child)::after,
.footer-legal a:not(:last-child)::after {
    content: "·";
    margin-left: 0.5rem;
    color: rgba(55, 11, 106, 0.25);
    font-weight: 400;
    pointer-events: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(55, 11, 106, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

.footer-meta {
    margin-top: 0.35rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}

.footer-domain-text {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 0.75rem;
}

.footer-sep {
    color: rgba(55, 11, 106, 0.25);
    font-size: 0.75rem;
}

.footer-meta a {
    color: var(--darker-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
}

.footer-meta a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

/* Page hero (subpages) */
.page-hero {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, var(--dark-purple) 0%, var(--primary-purple) 55%, #5a1a96 100%);
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.85rem;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.page-hero p {
    margin-bottom: 1.35rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-size: 1rem;
    line-height: 1.65;
}

.page-hero .cta-button {
    position: relative;
}

.affiliate-banner-wrap {
    margin: 0 0 1.5rem;
    max-width: 100%;
}

.affiliate-banner {
    display: block;
    line-height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(55, 11, 106, 0.08);
}

.affiliate-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.affiliate-banner:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 3px;
}

.affiliate-banner img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    header {
        position: sticky;
    }

    nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 1rem;
        width: calc(100% - 2rem);
        max-width: 320px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-md);
        border: 1px solid rgba(55, 11, 106, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.25s ease;
        z-index: 999;
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem;
    }

    nav ul li {
        margin: 0;
    }

    nav a {
        display: block;
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
    }

    .header-container {
        position: relative;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 2rem 1.75rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem 0;
    }

    .hero-content {
        padding: 1.75rem 1.35rem;
        border-radius: var(--radius-md);
    }

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

    section {
        padding: 1.35rem 1.25rem;
    }

    section::before {
        left: 1.25rem;
        right: 1.25rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .strategy-cards,
    .info-cards-row {
        grid-template-columns: 1fr;
    }

    .game-compare-card dl > div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .slot-games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .slot-game-meta {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 2rem 1.35rem;
        border-radius: var(--radius-md);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .footer-social {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-button-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .gallery-container {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-item {
        padding: 1rem 0.75rem;
    }

    .gallery-item img {
        max-width: 56px;
    }

    .logo img {
        height: 36px;
        max-width: 160px;
    }
}
