.page-resources {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is dark, so text is light */
    background-color: #121212; /* Matches body background */
}

.page-resources__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources__hero-section {
    position: relative;
    background-color: #017439; /* Brand color */
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Prevent content overflow */
}

.page-resources__hero-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources__hero-text {
    flex: 1;
    text-align: left;
}

.page-resources__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Custom color for H1 */
}

.page-resources__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources__hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources__video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer; /* Indicate clickable */
}

.page-resources__hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* General Section Styling */
.page-resources__overview-section,
.page-resources__game-guides-section,
.page-resources__platform-security-section,
.page-resources__financial-transactions-section,
.page-resources__faq-section,
.page-resources__cta-section {
    padding: 60px 0;
}

.page-resources__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter than body for contrast */
    color: #ffffff;
}

.page-resources__dark-section {
    background-color: #017439; /* Brand color for a section */
    color: #ffffff;
}

.page-resources__section-title {
    font-size: 2.5em;
    color: #FFFF00; /* Custom color for H2 */
    text-align: center;
    margin-bottom: 20px;
}

.page-resources__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-resources__text-block {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: left;
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.page-resources__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Card Grid */
.page-resources__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}