/* style/resources-how-to-choose-best-98vin-games.css */

/* Base Styles */
.page-resources-how-to-choose-best-98vin-games {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    line-height: 1.6;
    padding-top: 0; /* Assumes shared.css handles body padding-top */
}

.page-resources-how-to-choose-best-98vin-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-how-to-choose-best-98vin-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-how-to-choose-best-98vin-games__section-title {
    font-size: 38px;
    font-weight: 700;
    color: #FFD700; /* Gold color for titles */
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-best-98vin-games__section-paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Links within content */
.page-resources-how-to-choose-best-98vin-games a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-how-to-choose-best-98vin-games a:hover {
    color: #e6c200; /* Darker gold on hover */
    text-decoration: underline;
}

/* Buttons */
.page-resources-how-to-choose-best-98vin-games__btn-primary,
.page-resources-how-to-choose-best-98vin-games__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-how-to-choose-best-98vin-games__btn-primary {
    background: #FFD700; /* Gold background */
    color: #000080; /* Dark blue text for contrast */
    border: 2px solid #FFD700;
}

.page-resources-how-to-choose-best-98vin-games__btn-primary:hover {
    background: #e6c200;
    border-color: #e6c200;
    color: #000050;
}

.page-resources-how-to-choose-best-98vin-games__btn-secondary {
    background: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-resources-how-to-choose-best-98vin-games__btn-secondary:hover {
    background: #FFD700;
    color: #000080;
}

/* Hero Section (Page specific intro) */
.page-resources-how-to-choose-best-98vin-games__hero-section {
    background: linear-gradient(135deg, #000080, #121212); /* Dark blue to dark background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-resources-how-to-choose-best-98vin-games__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-resources-how-to-choose-best-98vin-games__hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-resources-how-to-choose-best-98vin-games__hero-description {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-resources-how-to-choose-best-98vin-games__hero-cta {
    margin-bottom: 40px;
}

.page-resources-how-to-choose-best-98vin-games__hero-image {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-how-to-choose-best-98vin-games__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Introduction Section */
.page-resources-how-to-choose-best-98vin-games__introduction {
    background: #1a1a1a; /* Slightly lighter dark background */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Factors Section */
.page-resources-how-to-choose-best-98vin-games__factors {
    background: #0d0d0d;
}

.page-resources-how-to-choose-best-98vin-games__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}