/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1A1A; /* Main dark background */
    line-height: 1.6;
}

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

.page-game-guides__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-guides__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-guides__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-title {
    font-size: 3.8em;
    color: #FFD700; /* Gold for hero title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-game-guides__hero-subtitle {
    font-size: 1.3em;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-game-guides__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    overflow: hidden;
}

.page-game-guides__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-game-guides__hero > .page-game-guides__container {
    position: relative;
    z-index: 1;
}

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

.page-game-guides__button--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A1A1A; /* Dark text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-guides__button--secondary {
    background-color: #333333; /* Dark grey background */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
}

.page-game-guides__button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides__button--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-guides__button--tertiary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.page-game-guides__introduction p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #B0B0B0;
}

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

.page-game-guides__game-type-card {
    background-color: #2A2A2A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-guides__game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-game-guides__game-type-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-guides__game-type-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides__game-type-card p {
    font-size: 1em;
    color: #B0B0B0;
}

.page-game-guides__tips {
    font-style: italic;
    margin-top: 15px;
    color: #C0C0C0;
}

.page-game-guides__detailed-guides {
    background-color: #1A1A1A;
}

.page-game-guides__detailed-guides p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #B0B0B0;
}

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

.page-game-guides__guide-item {
    background-color: #2A2A2A;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-guides__guide-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-guides__guide-description {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__winning-tips {
    background-color: #222222;
}

.page-game-guides__winning-tips p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #B0B0B0;
}

.page-game-guides__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-guides__tip-list li {
    background-color: #1A1A1A;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__tip-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-guides__tip-list p {
    font-size: 1em;
    color: #E0E0E0;
    margin: 0;
    max-width: none;
}

.page-game-guides__responsible-gambling p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #B0B0B0;
}

.page-game-guides__cta {
    background-color: #2A2A2A;
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-game-guides__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

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

.page-game-guides__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides__hero-title {
        font-size: 3em;
    }
    .page-game-guides__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides__hero-image-wrapper {
        width: 60%;
    }
    .page-game-guides__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-title {
        font-size: 2.5em;
    }
    .page-game-guides__hero-subtitle {
        font-size: 1em;
    }
    .page-game-guides__hero-image-wrapper {
        width: 80%;
        height: 80%;
        top: 0;
        right: -20%;
        opacity: 0.05;
    }
    .page-game-guides__section {
        padding: 40px 0;
    }
    .page-game-guides__game-type-grid, .page-game-guides__guide-list {
        grid-template-columns: 1fr;
    }
    .page-game-guides__cta-title {
        font-size: 2.2em;
    }
    .page-game-guides__cta-description {
        font-size: 1em;
    }
    .page-game-guides__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-game-guides__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-title {
        font-size: 2em;
    }
    .page-game-guides__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-guides__section-title {
        font-size: 1.8em;
    }
    .page-game-guides__game-type-card, .page-game-guides__guide-item {
        padding: 20px;
    }
    .page-game-guides__game-type-title {
        font-size: 1.5em;
    }
    .page-game-guides__tip-title {
        font-size: 1.3em;
    }
}