/* style/game-guides-slot.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-main: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-game-guides-slot {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
}

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

.page-game-guides-slot__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small decorative top padding, body handles header offset */
    padding-bottom: 80px;
    overflow: hidden;
}

.page-game-guides-slot__hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.page-game-guides-slot__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.page-game-guides-slot__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.page-game-guides-slot__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-game-guides-slot__hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-game-guides-slot__btn-primary,
.page-game-guides-slot__btn-secondary {
    display: inline-block;
    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;
    text-align: center;
}

.page-game-guides-slot__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-game-guides-slot__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-game-guides-slot__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 20px;
}

.page-game-guides-slot__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-main);
}

.page-game-guides-slot__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: 700;
}

.page-game-guides-slot__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-game-guides-slot__dark-section {
    background-color: var(--deep-green);
}

.page-game-guides-slot__feature-grid,
.page-game-guides-slot__steps-grid,
.page-game-guides-slot__term-grid,
.page-game-guides-slot__strategy-grid,
.page-game-guides-slot__type-grid {
    display: grid;
    gap: 30px;
    padding-bottom: 60px;
}

.page-game-guides-slot__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-game-guides-slot__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-guides-slot__term-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-game-guides-slot__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-game-guides-slot__type-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-game-guides-slot__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-game-guides-slot__card:hover {
    transform: translateY(-5px);
}

.page-game-guides-slot__feature-icon,
.page-game-guides-slot__strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-game-guides-slot__feature-title,
.page-game-guides-slot__step-title,
.page-game-guides-slot__term-title,
.page-game-guides-slot__strategy-title,
.page-game-guides-slot__type-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-game-guides-slot__feature-text,
.page-game-guides-slot__step-text,
.page-game-guides-slot__term-text,
.page-game-guides-slot__strategy-text,
.page-game-guides-slot__type-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-game-guides-slot__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--glow-color);
    margin-bottom: 20px;
    background: rgba(var(--glow-color), 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glow-color);
}

.page-game-guides-slot__faq-section {
    padding-bottom: 60px;
}

.page-game-guides-slot__faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.page-game-guides-slot__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-game-guides-slot__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
}

.page-game-guides-slot__faq-item[open] .page-game-guides-slot__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-game-guides-slot__faq-item:last-child .page-game-guides-slot__faq-question {
    border-bottom: none;
}

.page-game-guides-slot__faq-qtext {
    flex-grow: 1;
}

.page-game-guides-slot__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-game-guides-slot__faq-item[open] .page-game-guides-slot__faq-toggle {
    content: '−';
}

.page-game-guides-slot__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-game-guides-slot__faq-answer p {
    margin-bottom: 0;
}

/* Details element specific styling */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

.page-game-guides-slot__conclusion-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--deep-green);
}

.page-game-guides-slot__conclusion-section .page-game-guides-slot__btn-primary {
    margin-top: 40px;
    margin-left: 0; /* Override default margin-left */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-guides-slot__hero-content {
        padding: 20px;
    }
    .page-game-guides-slot__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }
    .page-game-guides-slot__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-game-guides-slot__container,
    .page-game-guides-slot__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-game-guides-slot__hero-section {
        padding-bottom: 60px;
    }

    .page-game-guides-slot__hero-description {
        font-size: 1rem;
    }

    .page-game-guides-slot__btn-primary,
    .page-game-guides-slot__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-game-guides-slot__feature-grid,
    .page-game-guides-slot__steps-grid,
    .page-game-guides-slot__term-grid,
    .page-game-guides-slot__strategy-grid,
    .page-game-guides-slot__type-grid {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    .page-game-guides-slot__feature-icon,
    .page-game-guides-slot__strategy-image,
    .page-game-guides-slot img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px; /* Ensure min size is kept for content images */
        min-height: 200px; /* Ensure min size is kept for content images */
    }

    .page-game-guides-slot__card {
        padding: 20px;
    }

    .page-game-guides-slot__section-title {
        padding-top: 40px;
        margin-bottom: 30px;
    }

    .page-game-guides-slot__section-description {
        margin-bottom: 40px;
    }

    .page-game-guides-slot__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-game-guides-slot__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-game-guides-slot__conclusion-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-slot__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-game-guides-slot__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}