/* style/resources-popular-games-strategy-tips.css */
:root {
    --primary-color: #017439;
    --secondary-color: #C30808; /* For register/login buttons */
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-light: #f8f8f8;
    --background-dark: #017439;
    --border-color: #e0e0e0;
    --link-font-color: #FFFF00; /* For register/login font specifically */
}

.page-resources-popular-games-strategy-tips {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.page-resources-popular-games-strategy-tips h1,
.page-resources-popular-games-strategy-tips h2,
.page-resources-popular-games-strategy-tips h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-resources-popular-games-strategy-tips h1 {
    font-size: 3.2em;
    text-align: center;
    color: var(--text-color-light);
}

.page-resources-popular-games-strategy-tips h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-resources-popular-games-strategy-tips h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-resources-popular-games-strategy-tips p {
    margin-bottom: 1em;
}

.page-resources-popular-games-strategy-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-resources-popular-games-strategy-tips__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); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d2b 100%); /* Darker gradient for text contrast */
    color: var(--text-color-light);
    overflow: hidden;
}

.page-resources-popular-games-strategy-tips__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-resources-popular-games-strategy-tips__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-popular-games-strategy-tips__hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-resources-popular-games-strategy-tips__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}