/* Prive Casino France - Site 13 | Prefix: tp3 | Font: Mulish */
:root {
    --tp3-bg: #180820;
    --tp3-bg-alt: #1e0e2e;
    --tp3-bg-card: #241438;
    --tp3-bg-section: #120618;
    --tp3-primary: #6860a0;
    --tp3-accent: #f8e840;
    --tp3-accent-hover: #f0d020;
    --tp3-text: #f8f8f8;
    --tp3-text-muted: #9898a0;
    --tp3-border: #302040;
    --tp3-radius: 14px;
    --tp3-card-radius: 16px;
    --tp3-btn-radius: 10px;
    --tp3-shadow: 0 2px 12px rgba(0,0,0,0.35);
    --tp3-frame: 1200px;
    --tp3-gap: 22px;
}

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

body {
    font-family: 'Mulish', sans-serif;
    background: var(--tp3-bg);
    color: var(--tp3-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--tp3-accent); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--tp3-accent-hover); }

.tp3-frame {
    max-width: var(--tp3-frame);
    margin: 0 auto;
    padding: 0 24px;
}

/* Promo Bar */
.tp3-promo-bar {
    background: var(--tp3-accent);
    color: var(--tp3-bg);
    text-align: center;
    padding: 11px 24px;
    font-weight: 600;
    font-size: 0.88rem;
    position: relative;
    z-index: 100;
}
.tp3-promo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.tp3-promo-cta {
    background: var(--tp3-bg);
    color: var(--tp3-accent);
    padding: 5px 16px;
    border-radius: var(--tp3-btn-radius);
    font-weight: 700;
    font-size: 0.82rem;
    transition: opacity 0.2s;
}
.tp3-promo-cta:hover { opacity: 0.85; color: var(--tp3-accent); }
.tp3-promo-close {
    background: none;
    border: none;
    color: var(--tp3-bg);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* Header */
.tp3-header {
    background: rgba(13, 4, 24, 0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid var(--tp3-border);
}
.tp3-header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.tp3-logo-link img { height: 42px; width: auto; }
.tp3-nav { flex: 1; }
.tp3-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}
.tp3-nav a {
    color: var(--tp3-text-muted);
    font-size: 0.87rem;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}
.tp3-nav a:hover { color: var(--tp3-accent); }
.tp3-header-cta {
    background: var(--tp3-accent);
    color: var(--tp3-bg);
    padding: 9px 24px;
    border-radius: var(--tp3-btn-radius);
    font-weight: 700;
    font-size: 0.84rem;
    white-space: nowrap;
    transition: background 0.25s;
}
.tp3-header-cta:hover { background: var(--tp3-accent-hover); color: var(--tp3-bg); }
.tp3-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.tp3-burger span {
    width: 26px;
    height: 2px;
    background: var(--tp3-text);
    border-radius: 2px;
    transition: transform 0.3s;
}

/* Hero */
.tp3-hero-wrap {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.tp3-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.tp3-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(24,8,32,0.93), rgba(24,8,32,0.5));
    z-index: 1;
}
.tp3-hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 60px 0;
    margin: 0 auto;
    text-align: center;
}
.tp3-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
    color: #fff;
}
.tp3-hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(248,248,248,0.88);
    margin-bottom: 24px;
}

/* Primary Button */
.tp3-btn-primary {
    display: inline-block;
    background: var(--tp3-accent);
    color: var(--tp3-bg);
    padding: 13px 30px;
    border-radius: var(--tp3-btn-radius);
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.tp3-btn-primary:hover {
    background: var(--tp3-accent-hover);
    color: var(--tp3-bg);
    transform: translateY(-3px);
}

/* TOC */
.tp3-toc {
    background: var(--tp3-bg-card);
    border-bottom: 1px solid var(--tp3-border);
    padding: 26px 0;
}
.tp3-toc-title {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--tp3-accent);
}
.tp3-toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px 28px;
    padding-left: 22px;
}
.tp3-toc-list a {
    color: var(--tp3-text-muted);
    font-size: 0.87rem;
}
.tp3-toc-list a:hover { color: var(--tp3-accent); }

/* Sections */
.tp3-section {
    padding: 60px 0;
}
.tp3-section-alt {
    background: var(--tp3-bg-alt);
}
.tp3-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}
.tp3-section h3 {
    font-size: 1.22rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--tp3-accent);
}
.tp3-section p {
    margin-bottom: 16px;
    color: var(--tp3-text);
    font-size: 0.94rem;
}

/* Split Layout */
.tp3-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 22px;
}
.tp3-split-img img {
    border-radius: var(--tp3-card-radius);
    box-shadow: var(--tp3-shadow);
}

/* Steps */
.tp3-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--tp3-gap);
    margin: 26px 0;
}
.tp3-step {
    background: var(--tp3-bg-card);
    border: 1px solid var(--tp3-border);
    border-radius: var(--tp3-card-radius);
    padding: 24px;
    position: relative;
}
.tp3-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--tp3-accent);
    color: var(--tp3-bg);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.tp3-step h3 {
    margin-top: 0;
    font-size: 1.02rem;
    color: #fff;
}
.tp3-step p {
    font-size: 0.87rem;
    color: var(--tp3-text-muted);
    margin-bottom: 0;
}
.tp3-steps-compact .tp3-step {
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.tp3-steps-compact .tp3-step-num { flex-shrink: 0; margin-bottom: 0; }
.tp3-steps-compact .tp3-step p { margin-bottom: 0; }

/* Ordered guide */
.tp3-guide-ol {
    padding-left: 26px;
    margin: 18px 0 26px;
}
.tp3-guide-ol li {
    margin-bottom: 10px;
    color: var(--tp3-text);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Card Grids */
.tp3-card-grid {
    display: grid;
    gap: var(--tp3-gap);
    margin: 22px 0;
}
.tp3-grid-6 { grid-template-columns: repeat(6, 1fr); }
.tp3-grid-4 { grid-template-columns: repeat(4, 1fr); }
.tp3-grid-3 { grid-template-columns: repeat(3, 1fr); }

.tp3-game-card {
    background: var(--tp3-bg-card);
    border-radius: var(--tp3-card-radius);
    overflow: hidden;
    border: none;
    transition: transform 0.25s;
}
.tp3-game-card:hover { transform: translateY(-3px); }
.tp3-game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.tp3-game-card-name {
    display: block;
    padding: 11px 14px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--tp3-text);
    text-align: center;
}

/* Bonus Cards */
.tp3-bonus-card {
    background: var(--tp3-bg-card);
    border-radius: var(--tp3-card-radius);
    overflow: hidden;
    border: none;
    transition: transform 0.25s;
}
.tp3-bonus-card:hover { transform: translateY(-3px); }
.tp3-bonus-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.tp3-bonus-info { padding: 15px 18px; }
.tp3-bonus-badge {
    display: inline-block;
    background: var(--tp3-accent);
    color: var(--tp3-bg);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.tp3-bonus-info p {
    font-size: 0.87rem;
    color: var(--tp3-text);
    margin-bottom: 0;
}

.tp3-cta-area {
    margin-top: 30px;
    text-align: center;
}

/* Sport Chips */
.tp3-sport-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.tp3-sport-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--tp3-bg-card);
    border: 1px solid var(--tp3-border);
    border-radius: var(--tp3-card-radius);
    padding: 11px 16px;
    font-size: 0.83rem;
    color: var(--tp3-text);
}

/* Payment Strip */
.tp3-pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0;
    align-items: center;
}
.tp3-pay-row img {
    border: none;
    height: 36px;
    max-width: 80px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    object-fit: contain;
}

/* Tables */
.tp3-table-wrap {
    overflow-x: auto;
    margin: 18px 0 26px;
}
.tp3-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}
.tp3-data-table th {
    background: var(--tp3-bg-card);
    color: var(--tp3-accent);
    padding: 13px 18px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.tp3-data-table td {
    padding: 11px 18px;
    border-bottom: 1px solid var(--tp3-border);
    color: var(--tp3-text);
}
.tp3-data-table tr:hover td { background: rgba(104,96,160,0.08); }

/* FAQ */
.tp3-faq-list { margin-top: 18px; }
.tp3-faq-item {
    background: var(--tp3-bg-card);
    border: 1px solid var(--tp3-border);
    border-radius: var(--tp3-card-radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.tp3-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tp3-faq-item summary::-webkit-details-marker { display: none; }
.tp3-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tp3-accent);
    flex-shrink: 0;
    margin-left: 18px;
}
.tp3-faq-item[open] summary::after { content: '-'; }
.tp3-faq-item summary h3 {
    margin: 0;
    font-size: 0.97rem;
    color: var(--tp3-text);
}
.tp3-faq-body { padding: 0 22px 18px; }
.tp3-faq-body p {
    color: var(--tp3-text-muted);
    font-size: 0.87rem;
}

/* Author */
.tp3-author-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--tp3-bg-card);
    border: 1px solid var(--tp3-border);
    border-radius: var(--tp3-card-radius);
    padding: 28px;
}
.tp3-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.tp3-author-label {
    font-size: 0.76rem;
    color: var(--tp3-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tp3-author-name {
    display: block;
    font-size: 1.12rem;
    color: #fff;
    margin: 4px 0 8px;
}
.tp3-author-bio {
    font-size: 0.87rem;
    color: var(--tp3-text-muted);
    margin-bottom: 0;
}

/* Footer */
.tp3-footer {
    background: var(--tp3-bg-section);
    border-top: 1px solid var(--tp3-border);
    padding: 48px 0 26px;
}
.tp3-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.tp3-footer-desc {
    color: var(--tp3-text-muted);
    font-size: 0.83rem;
    margin-top: 14px;
}
.tp3-footer h4 {
    color: var(--tp3-accent);
    font-size: 0.9rem;
    margin-bottom: 14px;
}
.tp3-footer ul { list-style: none; }
.tp3-footer li { margin-bottom: 9px; }
.tp3-footer li a {
    color: var(--tp3-text-muted);
    font-size: 0.83rem;
}
.tp3-footer li a:hover { color: var(--tp3-accent); }
.tp3-footer-bottom {
    border-top: 1px solid var(--tp3-border);
    padding-top: 22px;
    text-align: center;
}
.tp3-footer-bottom p {
    color: var(--tp3-text-muted);
    font-size: 0.77rem;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tp3-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .tp3-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .tp3-hero-wrap { min-height: 380px; }
    .tp3-hero-content h1 { font-size: 1.8rem; }
    .tp3-hero-content { padding: 40px 0; }
    .tp3-split { grid-template-columns: 1fr; gap: 26px; }
    .tp3-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .tp3-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .tp3-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .tp3-steps { grid-template-columns: 1fr; }
    .tp3-section { padding: 40px 0; }
    .tp3-section h2 { font-size: 1.5rem; }
    .tp3-footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .tp3-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--tp3-bg); border-bottom: 1px solid var(--tp3-border); padding: 18px 24px; }
    .tp3-nav.tp3-nav-open { display: block; }
    .tp3-nav ul { flex-direction: column; gap: 14px; }
    .tp3-burger { display: flex; }
    .tp3-header-cta { display: none; }
    .tp3-author-block { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    .tp3-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .tp3-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .tp3-grid-3 { grid-template-columns: 1fr; }
    .tp3-hero-content h1 { font-size: 1.5rem; }
    .tp3-section h2 { font-size: 1.28rem; }
    .tp3-game-card img { height: 120px; }
    .tp3-bonus-card img { height: 140px; }
    .tp3-toc-list { grid-template-columns: 1fr; }
    .tp3-promo-bar-inner { font-size: 0.78rem; }
}

@media (max-width: 320px) {
    .tp3-frame { padding: 0 14px; }
    .tp3-hero-content h1 { font-size: 1.28rem; }
    .tp3-section h2 { font-size: 1.15rem; }
    .tp3-game-card img { height: 100px; }
}