/* style/vinbet-review.css */
.page-vinbet-review {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-vinbet-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vinbet-review__hero {
    background: linear-gradient(135deg, #0A2E50 0%, #305A88 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vinbet-review__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-vinbet-review__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-vinbet-review__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vinbet-review__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-vinbet-review__section:last-of-type {
    border-bottom: none;
}

.page-vinbet-review__section-title {
    font-size: 2.5em;
    color: #0A2E50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-vinbet-review__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-vinbet-review h3 {
    font-size: 1.8em;
    color: #0A2E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-vinbet-review p {
    margin-bottom: 15px;
    color: #555;
}

.page-vinbet-review ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-vinbet-review ol {
    list-style: decimal inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-vinbet-review li {
    margin-bottom: 8px;
    color: #555;
}

.page-vinbet-review__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
}

.page-vinbet-review__btn--primary {
    background-color: #FFD700;
    color: #0A2E50;
    border: 2px solid #FFD700;
}

.page-vinbet-review__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-vinbet-review__btn--secondary {
    background-color: transparent;
    color: #0A2E50;
    border: 2px solid #0A2E50;
}

.page-vinbet-review__btn--secondary:hover {
    background-color: #0A2E50;
    color: #fff;
    transform: translateY(-2px);
}

.page-vinbet-review__btn--link {
    background-color: transparent;
    color: #0A2E50;
    border: none;
    padding: 0;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1em;
}

.page-vinbet-review__btn--link:hover {
    color: #FFD700;
    text-decoration: none;
}

.page-vinbet-review__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-vinbet-review__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-vinbet-review__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-vinbet-review__text-content {
    flex: 2;
}

.page-vinbet-review__image-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vinbet-review__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-vinbet-review__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-vinbet-review__grid-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-vinbet-review__grid-item:hover {
    transform: translateY(-5px);
}

.page-vinbet-review__grid-image {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-vinbet-review__grid-item h3 {
    font-size: 1.5em;
    color: #0A2E50;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-vinbet-review__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #0A2E50;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-vinbet-review__cta-block p {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #fff;
}

.page-vinbet-review__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vinbet-review__step-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vinbet-review__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-vinbet-review__step-item h3 {
    font-size: 1.6em;
    color: #0A2E50;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-vinbet-review__step-item ol {
    text-align: left;
    width: 100%;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-vinbet-review__articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-vinbet-review__article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-vinbet-review__article-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-vinbet-review__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-vinbet-review__article-title {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-vinbet-review__article-title a {
    color: #0A2E50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vinbet-review__article-title a:hover {
    color: #FFD700;
}

.page-vinbet-review__article-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-vinbet-review__hero-title {
        font-size: 2.8em;
    }

    .page-vinbet-review__hero-subtitle {
        font-size: 1.3em;
    }

    .page-vinbet-review__section-title {
        font-size: 2em;
    }

    .page-vinbet-review__content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-vinbet-review__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-vinbet-review__image-box {
        min-width: unset;
        width: 100%;
        max-width: 500px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-vinbet-review__hero {
        padding: 80px 0;
    }

    .page-vinbet-review__hero-title {
        font-size: 2.2em;
    }

    .page-vinbet-review__hero-subtitle {
        font-size: 1.1em;
    }

    .page-vinbet-review__section {
        padding: 40px 0;
    }

    .page-vinbet-review__section-title {
        font-size: 1.8em;
    }

    .page-vinbet-review h3 {
        font-size: 1.4em;
    }

    .page-vinbet-review__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-vinbet-review__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-vinbet-review__grid-item {
        padding: 20px;
    }

    .page-vinbet-review__cta-block p {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-vinbet-review__hero-title {
        font-size: 1.8em;
    }

    .page-vinbet-review__hero-subtitle {
        font-size: 1em;
    }

    .page-vinbet-review__section-title {
        font-size: 1.5em;
    }

    .page-vinbet-review h3 {
        font-size: 1.2em;
    }

    .page-vinbet-review__btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .page-vinbet-review__btn:last-child {
        margin-bottom: 0;
    }

    .page-vinbet-review__cta-block p {
        font-size: 1.2em;
    }

    .page-vinbet-review__grid {
        grid-template-columns: 1fr;
    }
    .page-vinbet-review__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-vinbet-review__articles-list {
        grid-template-columns: 1fr;
    }
}