/* style/games.css */

/* Base styles for the games page */
.page-games {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
    overflow-x: hidden;
}

.page-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Highlight color for text */
.page-games__highlight {
    color: #FFD700; /* Auxiliary golden color */
}

/* Hero Section */
.page-games__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A5F 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #f0f0f0;
}

.page-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff; /* White for main title */
}

.page-games__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #d0d0d0;
}

.page-games__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-games__btn--primary {
    background-color: #FFD700; /* Golden accent */
    color: #0A2342; /* Dark blue text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Golden text */
    border: 2px solid #FFD700;
}

.page-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-games__btn--link {
    background: none;
    border: none;
    color: #FFD700;
    padding: 10px 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-games__btn--link:hover {
    color: #e6c200;
}

.page-games__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-games__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* General Section Styles */
.page-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.page-games__section-subtitle {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #d0d0d0;
}

/* Game Categories Grid */
.page-games__game-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games__game-category-card {
    background-color: #1A3A5F; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-games__game-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-games__card-title {
    font-size: 1.8em;
    color: #FFD700; /* Golden title */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-games__card-sub-title {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.page-games__card-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows description to take available space */
}

.page-games__card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-games__card-list li {
    background-color: rgba(255, 215, 0, 0.1); /* Light golden background for list items */
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 0.95em;
    border-left: 3px solid #FFD700;
    text-align: left;
}

.page-games__game-category-card .page-games__btn {
    margin-top: 15px;
    width: fit-content;
}

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

.page-games__benefit-item {
    background-color: #1A3A5F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-games__benefit-item:hover {
    transform: translateY(-8px);
}

.page-games__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Golden shadow for icons */
}

.page-games__benefit-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-games__benefit-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* Responsible Gambling Section */
.page-games__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 30px;
    text-align: left;
}