/* style/slot-games.css */
/* Base styles for the slot-games page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #08160F; /* Ensure background consistency */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Enforce min image size */
}

.page-slot-games__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly for visual effect */
    position: relative;
    z-index: 1;
    background-color: #11271B; /* Card BG for content block */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styles */
.page-slot-games__intro-section,
.page-slot-games__game-categories,
.page-slot-games__latest-games,
.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-slot-games__why-choose-us,
.page-slot-games__promotions,
.page-slot-games__cta-bottom {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green, slightly different background for contrast */
}

.page-slot-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #13994A, #2AD16F); /* Button gradient colors */
    border-radius: 2px;
}

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

.page-slot-games__text-block {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Brighter green from gradient */
    border: 2px solid #2AD16F;
}

.page-slot-games__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
    transform: translateY(-2px);
}

.page-slot-games__btn-play {
    background: linear-gradient(180deg, #F2C14E 0%, #D4A93D 100%); /* Gold for play button */
    color: #08160F; /* Dark text on gold */
    border: none;
    padding: 8px 20px;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(242, 193, 78, 0.4);
}

.page-slot-games__btn-play:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 193, 78, 0.6);
}

/* Game Categories Section */
.page-slot-games__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    min-height: 200px; /* Ensure card content is visible */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
}

.page-slot-games__card-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 150px; /* Adjust min-height for card images */
}

.page-slot-games__card-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__card-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
}

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

.page-slot-games__feature-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__feature-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__feature-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
}

/* Latest Games Section */
.page-slot-games__game-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__game-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px);
}

.page-slot-games__game-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 150px; /* Adjust min-height for game images */
}

.page-slot-games__game-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 5px;
    font-weight: bold;
}