/* ============================================
   TRUSTPILOT REVIEW & GIVEAWAY PAGE (/trustpilot/)
   ============================================ */

.trustpilot-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Hero ──────────────────────────────── */

.tp-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px 40px;
    margin-bottom: 28px;
    background: var(--card, #18062f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.tp-hero-logo {
    margin-bottom: 28px;
}

.tp-hero-logo a {
    display: inline-block;
}

.tp-hero-logo img {
    width: 240px;
    height: auto;
    display: block;
}

.tp-hero h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text, #f7eaff);
    margin: 0 0 16px;
    line-height: 1.25;
    width: 100%;
}

.tp-intro {
    font-size: 16px;
    color: var(--muted, #ccb6e6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Prize banner (inside form section) ── */

.tp-prize-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 198, 59, 0.15), rgba(255, 149, 0, 0.15));
    border: 1px solid rgba(255, 198, 59, 0.3);
    border-radius: 12px;
    color: var(--accent-2, #ffa83a);
    font-weight: 700;
    font-size: 15px;
}

/* ── Section titles ────────────────────── */

.tp-section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text, #f7eaff);
    margin: 0 0 16px;
    line-height: 1.3;
}

/* ── Steps ─────────────────────────────── */

.tp-how {
    margin-bottom: 32px;
    padding: 28px;
    background: var(--card, #18062f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.tp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.tp-step {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.tp-step-num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #ff5bbd), var(--accent-2, #ffa83a));
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    margin: 0 auto 12px;
}

.tp-step h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text, #f7eaff);
    margin: 0 0 6px;
}

.tp-step p {
    font-size: 13px;
    color: var(--muted, #ccb6e6);
    line-height: 1.5;
    margin: 0;
}

.tp-review-cta {
    text-align: center;
}

/* CTA button — uses theme button variables */

.tp-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--button-bg);
    background: linear-gradient(180deg, var(--button-bg), var(--button-bg-end));
    color: var(--button-text);
    border: 1px solid var(--button-border);
    font-weight: 800;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px var(--button-shadow);
}

.tp-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--button-shadow);
}

/* ── Casino Grid ───────────────────────── */

.tp-casinos {
    margin-bottom: 32px;
}

.tp-casinos-desc {
    font-size: 14px;
    color: var(--muted, #ccb6e6);
    line-height: 1.6;
    margin: 0 0 20px;
}

.tp-casino-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tp-casino-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card, #18062f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: border-color 0.2s, transform 0.15s;
    cursor: pointer;
}

.tp-casino-card:hover {
    border-color: rgba(255, 198, 59, 0.3);
    transform: translateY(-1px);
}

.tp-casino-logo {
    flex-shrink: 0;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.tp-casino-info {
    flex: 1;
    min-width: 0;
}

.tp-casino-name {
    display: block;
    font-weight: 800;
    font-size: 15px;
    color: var(--text, #f7eaff);
    margin-bottom: 2px;
}

.tp-casino-bonus {
    display: block;
    font-size: 13px;
    color: var(--accent-2, #ffa83a);
    font-weight: 600;
}

.tp-casino-meta {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted, #ccb6e6);
}

.tp-casino-rating {
    color: var(--rating, #ffc63b);
    font-weight: 700;
}

.tp-casino-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.tp-btn-casino {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-bg);
    background: linear-gradient(180deg, var(--button-bg), var(--button-bg-end));
    color: var(--button-text);
    border: 1px solid var(--button-border);
    font-weight: 800;
    font-size: 13px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s;
    box-shadow: 0 6px 16px var(--button-shadow);
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.tp-btn-casino:hover {
    transform: translateY(-1px);
}

.tp-link-review {
    font-size: 12px;
    color: var(--muted, #ccb6e6);
    text-decoration: none;
    text-align: right;
    width: 100%;
}

.tp-link-review:hover {
    color: var(--accent, #ff5bbd);
}

/* ── Form ──────────────────────────────── */

.tp-form-section {
    margin-bottom: 32px;
    padding: 28px;
    background: var(--card, #18062f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
}

.tp-form-section .tp-section-title,
.tp-form-section .tp-form-desc {
    text-align: center;
}

.tp-form-section .tp-form-field,
.tp-form-section .tp-form-check {
    text-align: left;
}

.tp-form-section .tp-btn-submit {
    margin: 0 auto;
    display: block;
}

.tp-form-desc {
    font-size: 14px;
    color: var(--muted, #ccb6e6);
    line-height: 1.6;
    margin: 0 0 24px;
}

.tp-form {
    max-width: 600px;
    margin: 0 auto;
}

.tp-form-field {
    margin-bottom: 18px;
}

.tp-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text, #f7eaff);
    margin-bottom: 6px;
}

.tp-form-field input[type="text"],
.tp-form-field input[type="email"],
.tp-form-field select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text, #f7eaff);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.tp-form-field input:focus,
.tp-form-field select:focus {
    border-color: rgba(255, 198, 59, 0.5);
}

.tp-form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ccb6e6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.tp-form-check {
    margin-bottom: 24px;
}

.tp-form-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    color: var(--muted, #ccb6e6);
    line-height: 1.5;
    cursor: pointer;
}

.tp-form-check input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #00b67a;
}

.tp-btn-submit {
    display: inline-block;
    padding: 14px 32px;
    background: var(--button-bg);
    background: linear-gradient(180deg, var(--button-bg), var(--button-bg-end));
    color: var(--button-text);
    border: 1px solid var(--button-border);
    font-weight: 800;
    font-size: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.2s;
    box-shadow: 0 6px 16px var(--button-shadow);
    min-width: 200px;
}

.tp-btn-submit:hover {
    transform: translateY(-2px);
}

.tp-btn-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.tp-form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.tp-msg-success {
    background: rgba(0, 182, 122, 0.15);
    color: #00b67a;
    border: 1px solid rgba(0, 182, 122, 0.3);
}

.tp-msg-error {
    background: rgba(244, 67, 54, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.tp-terms {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: var(--muted, #ccb6e6);
    line-height: 1.6;
    opacity: 0.7;
}

.tp-terms p {
    margin: 0 0 8px;
}

/* ── FAQ ───────────────────────────────── */

.tp-faq {
    margin-bottom: 32px;
    padding: 28px;
    background: var(--card, #18062f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

/* ── Mobile ────────────────────────────── */

@media (max-width: 767px) {
    .tp-hero {
        padding: 32px 20px 28px;
    }

    .tp-hero h1 {
        font-size: 24px;
    }

    .tp-steps {
        grid-template-columns: 1fr;
    }

    .tp-casino-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }

    .tp-casino-actions {
        align-items: center;
        width: 100%;
    }

    .tp-btn-casino {
        width: 100%;
    }

    .tp-casino-meta {
        justify-content: center;
    }

    .tp-link-review {
        text-align: center;
    }

    .tp-form {
        max-width: 100%;
    }
}
