/* style/resources-yo88-sic-bo-strategy.css */

/* Base styles for the specific page content */
.page-resources-yo88-sic-bo-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css (#121212) */
}

/* Hero Section */
.page-resources-yo88-sic-bo-strategy__hero-section {
    position: relative;
    padding: 100px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    background-color: #1a1a1a; /* Dark background for hero */
}

.page-resources-yo88-sic-bo-strategy__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.page-resources-yo88-sic-bo-strategy__hero-title {
    font-size: 3.5em;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-yo88-sic-bo-strategy__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-yo88-sic-bo-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-yo88-sic-bo-strategy__btn-primary,
.page-resources-yo88-sic-bo-strategy__btn-secondary {
    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;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding/border included in width */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-yo88-sic-bo-strategy__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-yo88-sic-bo-strategy__btn-primary:hover {
    background-color: #1e87b8;
    transform: translateY(-3px);
}

.page-resources-yo88-sic-bo-strategy__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-yo88-sic-bo-strategy__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-3px);
}

.page-resources-yo88-sic-bo-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-resources-yo88-sic-bo-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly transparent to let content stand out */
    filter: none; /* No color filters */
}


/* General Section Styles */
.page-resources-yo88-sic-bo-strategy__section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-yo88-sic-bo-strategy__content-area {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-yo88-sic-bo-strategy__dark-bg {
    background-color: #121212; /* Matching body background */
    color: #ffffff;
}

.page-resources-yo88-sic-bo-strategy__light-bg {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #ffffff;
}