:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #f0f0f0;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
    --button-hover-bg: #1f8ac2; /* Slightly darker primary for hover */
    --button-secondary-hover-text: #1f8ac2;
    --header-offset: 120px; /* Default value, will be overridden by shared.css */
}

.page-resources-789club-game-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--secondary-color); /* Matches body background if shared is white */
}

/* Hero Section */
.page-resources-789club-game-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #aee3f7 100%); /* Light blue gradient */
    color: var(--text-light); /* Light text on gradient background */
    overflow: hidden; /* Prevent image overflow */
}

.page-resources-789club-game-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-789club-game-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-789club-game-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-789club-game-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-789club-game-guide__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-789club-game-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px; /* Ensure minimum width for buttons */
}

.page-resources-789club-game-guide__cta-button--primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-789club-game-guide__cta-button--primary:hover {
    background: var(--button-hover-bg);
    border-color: var(--button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}