/* style/resources-789-club-wiki-game-guide.css */

/* Base styles for the page content */
.page-resources-789-club-wiki-game-guide {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: #f9f9f9;
}

.page-resources-789-club-wiki-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-789-club-wiki-game-guide__container--dark-bg {
    background-color: #8B0000; /* Dark red background */
    color: #ffffff; /* White text for dark background */
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-789-club-wiki-game-guide__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources-789-club-wiki-game-guide__section-title {
    font-size: 2.8em;
    color: #8B0000; /* Dark red for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-resources-789-club-wiki-game-guide__section-title--light {
    color: #FFD700; /* Gold for titles on dark background */
}

.page-resources-789-club-wiki-game-guide__sub-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-789-club-wiki-game-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-789-club-wiki-game-guide__paragraph--light {
    color: #f0f0f0; /* Lighter text for dark background */
}

/* Hero Section */
.page-resources-789-club-wiki-game-guide__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    min-height: 500px;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFD700, #8B0000); /* Blend of brand colors */
}

.page-resources-789-club-wiki-game-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-resources-789-club-wiki-game-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff; /* White text for hero title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-789-club-wiki-game-guide__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-789-club-wiki-game-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-resources-789-club-wiki-game-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: none; /* Ensure no color filters */
}

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

.page-resources-789-club-wiki-game-guide__cta-buttons--center {
    justify-content: center;
}

.page-resources-789-club-wiki-game-guide__btn-primary,
.page-resources-789-club-wiki-game-guide__btn-secondary,
.page-resources-789-club-wiki-game-guide__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Include padding in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-resources-789-club-wiki-game-guide__btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #8B0000; /* Dark red text */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-789-club-wiki-game-guide__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-789-club-wiki-game-guide__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-resources-789-club-wiki-game-guide__btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-3px);
}

.page-resources-789-club-wiki-game-guide__btn-tertiary {
    background-color: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-789-club-wiki-game-guide__btn-tertiary:hover {
    background-color: #a30000;
    border-color: #a30000;
    transform: translateY(-3px);
}

/* Content Grid */
.page-resources-789-club-wiki-game-guide__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-resources-789-club-wiki-game-guide__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}}