/* style/hi88-game-features-theme-graphics.css */

/* Base styling for the page content area */
.page-hi88-game-features-theme-graphics {
    font-family: 'Arial', sans-serif;
    color: #0A192F; /* Dark blue for primary text */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for readability */
}

/* Container for consistent content width */
.page-hi88-game-features-theme-graphics__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-hi88-game-features-theme-graphics__hero {
    background: linear-gradient(135deg, #0A192F 0%, #3a4a61 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hi88-game-features-theme-graphics__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title to stand out */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-hi88-game-features-theme-graphics__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-hi88-game-features-theme-graphics__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Section Styling */
.page-hi88-game-features-theme-graphics__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-hi88-game-features-theme-graphics__section:last-of-type {
    border-bottom: none;
}

.page-hi88-game-features-theme-graphics__section-title {
    font-size: 2.5em;
    color: #0A192F;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-hi88-game-features-theme-graphics__subsection-title {
    font-size: 1.8em;
    color: #0A192F;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

/* Paragraphs and Text */
.page-hi88-game-features-theme-graphics p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333; /* Darker text for good contrast on light background */
}

.page-hi88-game-features-theme-graphics strong {
    color: #0A192F; /* Use main color for strong text on light background */
}

.page-hi88-game-features-theme-graphics__text-center {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-top: 30px;
}