/* style/slot-games.css */

/* Custom Colors */
:root {
    --page-slot-games-bg: #08160F;
    --page-slot-games-card-bg: #11271B;
    --page-slot-games-text-main: #F2FFF6;
    --page-slot-games-text-secondary: #A7D9B8;
    --page-slot-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-slot-games-border: #2E7A4E;
    --page-slot-games-glow: #57E38D;
    --page-slot-games-gold: #F2C14E;
    --page-slot-games-divider: #1E3A2A;
    --page-slot-games-deep-green: #0A4B2C;
}

.page-slot-games {
    background-color: var(--page-slot-games-bg);
    color: var(--page-slot-games-text-main); /* Main text color for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Ensure contrast for general text on dark background */
.page-slot-games p,
.page-slot-games li {
    color: var(--page-slot-games-text-secondary); /* Use secondary for paragraphs for slightly softer look */
}

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

.page-slot-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 3.2rem); /* H1 font size rule applied to H2s as well for consistency */
    color: var(--page-slot-games-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-slot-games__section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-slot-games-text-secondary);
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    margin-bottom: 40px; /* Space between image and content */
}

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

.page-slot-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    position: relative; /* Ensure content is above any potential background elements */
    z-index: 2;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* H1 font size clamp */
    color: var(--page-slot-games-gold); /* Use gold for H1 for emphasis */
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4); /* Subtle glow */
}

.page-slot-games__hero-description {
    font-size: 1.25rem;
    color: var(--page-slot-games-text-main);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-slot-games__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Button responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-slot-games__btn-primary {
    background: var(--page-slot-games-btn-gradient);
    color: var(--page-slot-games-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-slot-games__btn-secondary {
    background: transparent;
    color: var(--page-slot-games-glow);
    border: 2px solid var(--page-slot-games-glow);
}

.page-slot-games__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    transform: translateY(-3px);
}

.page-slot-games__btn-tertiary {
    background: var(--page-slot-games-deep-green);
    color: var(--page-slot-games-text-main);
    border: 1px solid var(--page-slot-games-border);
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.page-slot-games__btn-tertiary:hover {
    background: var(--page-slot-games-glow);
    color: #000;
}

/* Card styles */
.page-slot-games__card {
    background-color: var(--page-slot-games-card-bg);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--page-slot-games-text-main);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards in grid have same height */
    box-sizing: border-box;
    min-height: 200px; /* Card minimum height */
}

.page-slot-games__card h3 {
    color: var(--page-slot-games-gold);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-slot-games__card p {
    color: var(--page-slot-games-text-secondary);
    font-size: 1rem;
    flex-grow: 1; /* Allow text to fill space */
}

/* Why Choose Section */
.page-slot-games__why-choose {
    background-color: var(--page-slot-games-deep-green); /* Use deep green for a section */
    padding: 80px 0;
}

.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__feature-item {
    padding: 25px;
}

.page-slot-games__feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* Game Types Section */
.page-slot-games__game-types {
    background-color: var(--page-slot-games-bg);
    padding: 80px 0;
}

.page-slot-games__types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__type-card {
    padding: 25px;
}

.page-slot-games__type-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* How To Play Section */
.page-slot-games__how-to-play {
    background-color: var(--page-slot-games-card-bg); /* Use card background for this section */
    padding: 80px 0;
}

.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__step-item {
    text-align: center;
    padding: 25px;
}

.page-slot-games__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--page-slot-games-glow);
    margin-bottom: 15px;
    background: rgba(87, 227, 141, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__step-title {
    color: var(--page-slot-games-gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-slot-games__step-text {
    color: var(--page-slot-games-text-secondary);
}

.page-slot-games__cta-center {
    margin-top: 50px;
    text-align: center;
}

/* Strategies Section */
.page-slot-games__strategies {
    background-color: var(--page-slot-games-bg);
    padding: 80px 0;
}

.page-slot-games__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__strategy-item {
    padding: 25px;
}

.page-slot-games__strategy-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* Promotions Section */
.page-slot-games__promotions {
    background-color: var(--page-slot-games-deep-green);
    padding: 80px 0;
}

.page-slot-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__promo-card {
    padding: 25px;
}

.page-slot-games__promo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

/* FAQ Section */
.page-slot-games__faq {
    background-color: var(--page-slot-games-bg);
    padding: 80px 0;
}

.page-slot-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-color: var(--page-slot-games-divider);
    padding: 0; /* Remove padding from card, add to summary/answer */
    overflow: hidden;
}

.page-slot-games__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.15rem;
    color: var(--page-slot-games-text-main);
    background-color: var(--page-slot-games-card-bg);
    border-bottom: 1px solid var(--page-slot-games-divider);
    transition: background-color 0.3s ease;
}

.page-slot-games__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-slot-games__faq-item summary:hover {
    background-color: rgba(17, 168, 78, 0.2);
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
    color: var(--page-slot-games-gold);
}

.page-slot-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    width: 30px;
    text-align: center;
    color: var(--page-slot-games-glow);
}

.page-slot-games__faq-answer {
    padding: 20px 25px;
    background-color: rgba(17, 39, 27, 0.8); /* Slightly lighter card background for answer */
    color: var(--page-slot-games-text-secondary);
    font-size: 1rem;
    border-top: 1px solid var(--page-slot-games-divider);
}

.page-slot-games__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-slot-games__conclusion {
    padding-bottom: 80px;
}