.page-game-guides-event-specific-guides {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Light background for readability */
}

/* Color Palette */
.page-game-guides-event-specific-guides .text-primary { color: #007bff; }
.page-game-guides-event-specific-guides .text-secondary { color: #ffc107; }
.page-game-guides-event-specific-guides .bg-primary { background-color: #007bff; }
.page-game-guides-event-specific-guides .bg-secondary { background-color: #ffc107; }
.page-game-guides-event-specific-guides .bg-light { background-color: #e9ecef; }
.page-game-guides-event-specific-guides .bg-dark { background-color: #343a40; }
.page-game-guides-event-specific-guides .text-white { color: #fff; }

/* General Spacing and Containers */
.page-game-guides-event-specific-guides .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-guides-event-specific-guides .section-spacing {
    padding: 60px 0;
}

/* Hero Section */
.page-game-guides-event-specific-guides__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-event-specific-guides__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,fishing,water,pattern]') no-repeat center center/cover; /* Abstract background for hero */
    opacity: 0.1;
    z-index: 0;
}

.page-game-guides-event-specific-guides__hero .container {
    position: relative;
    z-index: 1;
}

.page-game-guides-event-specific-guides__hero .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff; /* Ensure high contrast */
}

.page-game-guides-event-specific-guides__hero .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef; /* Slightly off-white for subtitle */
}

/* Buttons */
.page-game-guides-event-specific-guides .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-game-guides-event-specific-guides .btn-primary {
    background-color: #ffc107; /* Secondary color for primary action */
    color: #333; /* Dark text for high contrast on yellow */
    border: 2px solid #ffc107;
}

.page-game-guides-event-specific-guides .btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-game-guides-event-specific-guides .btn-secondary {
    background-color: transparent;
    color: #ffc107; /* Secondary color for text */
    border: 2px solid #ffc107;
    margin-left: 15px;
}

.page-game-guides-event-specific-guides .btn-secondary:hover {
    background-color: #ffc107;
    color: #333; /* Dark text on hover */
    transform: translateY(-2px);
}

.page-game-guides-event-specific-guides .btn-lg {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Section Titles */
.page-game-guides-event-specific-guides .section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-guides-event-specific-guides .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Accent underline */
    border-radius: 2px;
}

.page-game-guides-event-specific-guides .section-title.text-white::after {
    background-color: #007bff; /* Accent for white titles */
}

/* Content Area */
.page-game-guides-event-specific-guides p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
}

.page-game-guides-event-specific-guides .highlight-keyword {
    color: #007bff;
    font-weight: 600;
}

.page-game-guides-event-specific-guides .image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-game-guides-event-specific-guides .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-event-specific-guides .content-image-small {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Event Types Grid */
.page-game-guides-event-specific-guides .grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-event-specific-guides .event-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-event-specific-guides .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-guides-event-specific-guides .event-card h3 {
    color: #007bff;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-game-guides-event-specific-guides .event-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.page-game-guides-event-specific-guides .event-card ul li {
    margin-bottom: 8px;
    color: #555;
}

/* Lists */
.page-game-guides-event-specific-guides .bullet-list {
    list-style: none;
    padding-left: 25px;
}

.page-game-guides-event-specific-guides .bullet-list li {
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #495057;
}

.page-game-guides-event-specific-guides .bullet-list li::before {
    content: '★'; /* Star icon */
    color: #ffc107;
    position: absolute;
    left: -25px;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-game-guides-event-specific-guides .bullet-list.ol-style {
    list-style-type: decimal;
    padding-left: 20px;
}

.page-game-guides-event-specific-guides .bullet-list.ol-style li::before {
    content: none;
}

/* Strategy Articles */
.page-game-guides-event-specific-guides .strategy-article {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.page-game-guides-event-specific-guides .strategy-article h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.page-game-guides-event-specific-guides .strategy-article ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.page-game-guides-event-specific-guides .strategy-article ul li {
    margin-bottom: 10px;
    color: #495057;
}

/* Call to Action */
.page-game-guides-event-specific-guides .cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

/* Responsible Gaming */
.page-game-guides-event-specific-guides__responsible-gaming {
    padding: 50px 0;
    background-color: #0056b3; /* Darker blue for contrast */
    color: #fff;
}

.page-game-guides-event-specific-guides__responsible-gaming .section-title {
    color: #fff;
}

.page-game-guides-event-specific-guides__responsible-gaming p {
    color: #e9ecef;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Links within text */
.page-game-guides-event-specific-guides a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides-event-specific-guides a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides-event-specific-guides__hero .hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-event-specific-guides__hero .hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-guides-event-specific-guides .section-title {
        font-size: 2em;
    }
    .page-game-guides-event-specific-guides .grid-2-columns {
        grid-template-columns: 1fr;
    }
    .page-game-guides-event-specific-guides .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides-event-specific-guides .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-game-guides-event-specific-guides__hero {
        padding: 80px 0;
    }
    .page-game-guides-event-specific-guides__hero .hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-event-specific-guides__hero .hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides-event-specific-guides .section-spacing {
        padding: 40px 0;
    }
    .page-game-guides-event-specific-guides .section-title {
        font-size: 1.8em;
    }
    .page-game-guides-event-specific-guides p,
    .page-game-guides-event-specific-guides .bullet-list li,
    .page-game-guides-event-specific-guides .strategy-article ul li {
        font-size: 1em;
    }
    .page-game-guides-event-specific-guides .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-game-guides-event-specific-guides .btn-lg {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-event-specific-guides__hero .hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-event-specific-guides__hero .hero-subtitle {
        font-size: 1em;
    }
    .page-game-guides-event-specific-guides .section-title {
        font-size: 1.6em;
    }
    .page-game-guides-event-specific-guides .btn-lg {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}