/* style/resources-best-jackpot-game-platforms-2024.css */

/* Base Styles for the Page Content */
.page-resources-best-jackpot-game-platforms-2024 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff; /* Explicitly set to match body for safety */
}

.page-resources-best-jackpot-game-platforms-2024__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-best-jackpot-game-platforms-2024__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources-best-jackpot-game-platforms-2024__section-title {
    font-size: 32px;
    font-weight: bold;
    color: #017439; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-best-jackpot-game-platforms-2024__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-resources-best-jackpot-game-platforms-2024 p {
    margin-bottom: 15px;
    color: #333333; /* Ensure dark text on light background */
}

/* Hero Section */
.page-resources-best-jackpot-game-platforms-2024__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); /* Fixed header offset */
    background: linear-gradient(135deg, #e0ffe0, #ffffff); /* Light gradient for hero background */
    color: #333333;
}

.page-resources-best-jackpot-game-platforms-2024__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.page-resources-best-jackpot-game-platforms-2024__main-title {
    font-size: 48px;
    font-weight: 800;
    color: #017439; /* Primary color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-best-jackpot-game-platforms-2024__intro-text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-resources-best-jackpot-game-platforms-2024__hero-image {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-resources-best-jackpot-game-platforms-2024__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

/* CTA Buttons */
.page-resources-best-jackpot-game-platforms-2024__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-best-jackpot-game-platforms-2024__btn-register {
    background: #C30808; /* Register color */
    color: #FFFF00; /* Register font color */
    border: 2px solid #C30808;
}

.page-resources-best-jackpot-game-platforms-2024__btn-register:hover {
    background: #a00606;
    border-color: #a00606;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-best-jackpot-game-platforms-2024__btn-primary {
    background: #017439; /* Primary color */
    color: #ffffff; /* White text for primary button */
    border: 2px solid #017439;
}

.page-resources-best-jackpot-game-platforms-2024__btn-primary:hover {
    background: #005a2d;
    border-color: #005a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-best-jackpot-game-platforms-2024__btn-secondary {
    background: #ffffff;
    color: #017439; /* Primary color text for secondary button */
    border: 2px solid #017439;
}

.page-resources-best-jackpot-game-platforms-2024__btn-secondary:hover {
    background: #f0f0f0;
    color: #005a2d;
    border-color: #005a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-best-jackpot-game-platforms-2024__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px;
    margin-top: 40px;
}

/* Card Layouts */
.page-resources-best-jackpot-game-platforms-2024__platform-grid,
.page-resources-best-jackpot-game-platforms-2024__features-grid,
.page-resources-best-jackpot-game-platforms-2024__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-best-jackpot-game-platforms-2024__card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333333; /* Dark text for card content */
}

.page-resources-best-jackpot-game-platforms-2024__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-best-jackpot-game-platforms-2024__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #017439; /* Primary color for card titles */
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-resources-best-jackpot-game-platforms-2024__card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}