/* style/game-categories.css */
.page-game-categories {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-game-categories__hero {
    background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-game-categories__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
    z-index: 1;
}

.page-game-categories__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-categories__intro-text,
.page-game-categories__cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ffe0b2; /* Lighter shade for readability on dark background */
}

.page-game-categories__intro-text a, .page-game-categories__cta-text a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-categories__hero-buttons {
    margin-top: 30px;
}

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

.page-game-categories__btn--primary {
    background-color: #FFD700;
    color: #CC0000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-categories__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-game-categories__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #FFD700;
}

.page-game-categories__btn--secondary:hover {
    background-color: #FFD700;
    color: #CC0000;
    transform: translateY(-3px);
}

.page-game-categories__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-game-categories__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.page-game-categories__game-types {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-game-categories__section-title {
    font-size: 2.8em;
    color: #CC0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-categories__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-categories__section-description a {
    color: #CC0000;
    text-decoration: underline;
}

.page-game-categories__game-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-categories__game-card--reverse {
    flex-direction: row-reverse;
}

.page-game-categories__game-card-image-wrapper {
    flex: 1;
    min-width: 40%;
    height: 350px;
}

.page-game-categories__game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-game-categories__game-card-content {
    flex: 1.5;
    padding: 40px;
}

.page-game-categories__game-card-title {
    font-size: 2em;
    color: #CC0000;
    margin-bottom: 15px;
}

.page-game-categories__game-card-text {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.page-game-categories__game-card-text a {
    color: #CC0000;
    text-decoration: underline;
}

.page-game-categories__game-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-game-categories__game-card-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.page-game-categories__game-card-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-game-categories__btn--play {
    background-color: #CC0000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
}

.page-game-categories__btn--play:hover {
    background-color: #990000;
    transform: translateY(-2px);
}

.page-game-categories__why-choose {
    background-color: #f0f0f0;
    padding: 60px 0;
}

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

.page-game-categories__benefits-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    position: relative;
    padding-left: 50px;
    color: #444;
    transition: transform 0.2s ease;
}

.page-game-categories__benefits-list li:hover {
    transform: translateY(-3px);
}

.page-game-categories__benefits-list li::before {
    content: '★';
    color: #FFD700;
    font-size: 1.8em;
    position: absolute;
    left: 15px;
    top: 25px;
}

.page-game-categories__benefits-list li strong {
    color: #CC0000;
}

.page-game-categories__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #CC0000;
    color: #fff;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.page-game-categories__cta-bottom p {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

.page-game-categories__cta-bottom p a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-categories__highlight {
    color: #FFD700;
}

.page-game-categories__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: blur(3px);
    z-index: 0;
}

.page-game-categories__related-pages {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-game-categories__detail-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-game-categories__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-categories__detail-title {
    font-size: 1.4em;
    color: #CC0000;
    margin-bottom: 10px;
}

.page-game-categories__detail-title a {
    color: #CC0000;
    text-decoration: none;
}

.page-game-categories__detail-title a:hover {
    text-decoration: underline;
}

.page-game-categories__detail-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-game-categories__btn--detail {
    background-color: #FFD700;
    color: #CC0000;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9em;
}

.page-game-categories__btn--detail:hover {
    background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-categories__title {
        font-size: 2.8em;
    }
    .page-game-categories__game-card {
        flex-direction: column;
    }
    .page-game-categories__game-card--reverse {
        flex-direction: column;
    }
    .page-game-categories__game-card-image-wrapper {
        min-width: 100%;
        height: 250px;
    }
    .page-game-categories__game-card-content {
        padding: 30px;
    }
    .page-game-categories__section-title {
        font-size: 2.2em;
    }
    .page-game-categories__benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-game-categories__hero {
        padding: 60px 15px;
    }
    .page-game-categories__title {
        font-size: 2.2em;
    }
    .page-game-categories__intro-text,
    .page-game-categories__cta-text {
        font-size: 1em;
    }
    .page-game-categories__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-categories__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-game-categories__game-card-content {
        padding: 20px;
    }
    .page-game-categories__game-card-title {
        font-size: 1.6em;
    }
    .page-game-categories__section-title {
        font-size: 1.8em;
    }
    .page-game-categories__cta-bottom p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-game-categories__title {
        font-size: 1.8em;
    }
    .page-game-categories__section-title {
        font-size: 1.5em;
    }
    .page-game-categories__game-card-image-wrapper {
        height: 200px;
    }
    .page-game-categories__cta-bottom p {
        font-size: 1em;
    }
    .page-game-categories__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
}