/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


.bookmaker-review {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: #aaa;
}


.hero-wrapper {
    margin-bottom: 30px;
}

.title-bar {
    background: #1E1E1E;
    margin: 10px 0;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.title-bar h1 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
}

/* Mobile title size */
@media (max-width: 768px) {
    .title-bar h1 {
        font-size: 30px;
    }
}

.stats-container {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 30px;
}

.logo-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    width: 120px;
    height: 60px;
    object-fit: fill;
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: right;
    flex-grow: 1;
    word-break: break-word;
    white-space: normal;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-bottom: 30px;
}

.stat-pair {
    display: flex;
    flex-direction: column;
}

.label {
    font-weight: bold;
    color: #aaa;
    margin-bottom: 6px;
}

.value {
    color: #fff;
    font-size: 1.1rem;
}

.play-now {
    background: #00cc66;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-brand-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        text-align: center;
    }

    .logo {
        width: 90px;
        height: 60px;
    }

    .brand-name {
        font-size: 1.6rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr; /* stack vertically on mobile */
        gap: 20px;
    }

    .play-now {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Payment Section Wrapper */
.payment-section {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
}

/* Payment Title */
.payment-title {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 600; /* not as bold as main title */
    color: #fff;
    text-align: left;
}

/* Payment Grid (inline left-aligned) */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 35px;
    justify-content: flex-start; /* left-aligned */
}

/* Each Payment Item */
.payment-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left-aligned content */
    max-width: 120px;
    text-align: center;
}

.payment-logo {
    width: 100px;
    height: 40px;
    object-fit: fill;
    object-position: center;
    margin-bottom: 10px;
    border-radius: 6px;
}

.payment-name {
    font-size: 0.95rem;
    color: #ddd;
    word-break: break-word;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .payment-title {
        font-size: 24px;
    }

    .payment-grid {
        gap: 20px 25px;
        justify-content: flex-start;
    }

    .payment-item {
        max-width: 100px;
    }

    .payment-logo {
        width: 80px;
        height: 32px;
    }

    .payment-name {
        font-size: 0.9rem;
    }
}


/* Pros & Cons Section Wrapper */
.pros-cons-section {
    margin: 40px 0;
}

.pros-cons-wrapper {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 40px;
}

/* Pros & Cons Columns */
.pros, .cons {
    flex: 1;
}

.pros h3, .cons h3 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

/* Mobile title size */
@media (max-width: 768px) {
    .pros h3, .cons h3 {
        font-size: 24px;
    }

    .pros-cons-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

/* Pros List */
.pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 1.05rem;
}

.pros .checkmark {
    color: #00cc66; /* brand green */
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Cons List */
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cons li {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 1.05rem;
}

.cons .x-mark {
    color: #ff4d4d; /* red */
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.3rem;
}


/* Pros & Cons Icons */
.pros .checkmark,
.cons .x-mark {
    font-size: 1.3rem;
    margin-right: 12px;
    font-weight: bold;
}

/* Pros checkmark - brand green */
.pros .checkmark {
    color: #00cc66 !important; /* your green */
}

/* Cons X-mark - red */
.cons .x-mark {
    color: #ff4d4d !important; /* red */
}

/* Ensure Font Awesome is loaded (if not already) */
@import url('https://use.fontawesome.com/releases/v5.15.4/css/all.css'); /* or v6 if you have newer version */

.user-reviews .review-cards {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
}

/* User Reviews Section Wrapper */
.user-reviews-section {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

/* User Reviews Title */
.reviews-title {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

/* Mobile title size */
@media (max-width: 768px) {
    .reviews-title {
        font-size: 24px;
    }
}

/* Overall Rating */
.overall-rating {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}

.overall-rating .stars {
    color: #00cc66; /* theme green */
}

/* Review Cards Wrapper (horizontal scroll) */
.review-cards-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
	margin-top: 10px;
    margin-bottom: 30px;
    scrollbar-width: none; /* hide scrollbar on Firefox */
    -ms-overflow-style: none;  /* hide scrollbar on IE/Edge */
}

.review-cards-wrapper::-webkit-scrollbar {
    display: none; /* hide scrollbar on Chrome/Safari */
}

/* Review Card */
.review-card {
    background: #343333;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #fff;
    min-width: 250px;
    max-width: 320px; /* ← NEW: max width to prevent stretching */
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    height: auto; /* flexible height */
}

/* Force text wrapping inside review card */
.review-card p {
    word-break: break-word; /* break long words */
    white-space: pre-wrap;  /* preserve line breaks + wrap */
    overflow-wrap: break-word;
    hyphens: auto; /* optional: hyphenate long words */
    margin: 10px 0 0 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Write a Review */
.write-review h3 {
    font-size: 1.4rem;
    font-weight: 500; /* less prominent */
    color: #ddd;
    margin-bottom: 15px;
}

.write-review textarea {
    width: 100%;
    min-height: 100px;
    background: #f5f5f5; /* off-white */
    border: none;
    padding: 10px;
    border-radius: 6px;
    max-width: 600px;
}

.rating-input {
    margin: 15px 0;
    font-weight: 600;
    color: #fff;
    max-width: 600px;
}

.rating-input input {
    margin-left: 10px;
    width: 80px;
}

.write-review input[type="submit"] {
    background: #00cc66;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    max-width: 600px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .write-review h3 {
        font-size: 20px;
    }

    .rating-input {
        margin-bottom: 5px;
    }
}
.write-review textarea {
    color: #000 !important; /* black text for contrast */
}


.scroll-controls {
    display: flex;
    justify-content: right;
    gap: 10px;
    margin-top: 15px;
}

.scroll-btn {
    background: #00cc66;
    color: white;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: right;
    justify-content: center;
    transition: background 0.3s;
}

.scroll-btn:hover {
    background: #00a853;
}

.stars {
    color: #FFD700 !important; /* bright yellow */
}

.comment-success-message {
    background: #00cc66;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}