/* style/game-types-poker-details.css */

.page-game-types-poker-details {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
}

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

.page-game-types-poker-details__hero {
    background: linear-gradient(135deg, #003366 0%, #0a1128 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFCC00; /* Golden yellow for hero title */
    position: relative;
    overflow: hidden;
}

.page-game-types-poker-details__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_card_pattern,subtle_gaming_background]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-game-types-poker-details__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-types-poker-details__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-game-types-poker-details__section-title {
    font-size: 2.5em;
    color: #FFCC00; /* Golden yellow for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-game-types-poker-details__introduction,
.page-game-types-poker-details__game-types,
.page-game-types-poker-details__strategy,
.page-game-types-poker-details__why-hm88,
.page-game-types-poker-details__faq {
    padding: 80px 0;
    background-color: #1a1a2e;
}

.page-game-types-poker-details__introduction {
    background-color: #0a1128;
}

.page-game-types-poker-details__description {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 60px;
    color: #c0c0c0;
}

.page-game-types-poker-details__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-game-types-poker-details__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-game-types-poker-details__text-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-game-types-poker-details__text-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-game-types-poker-details__text-content ul li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #e0e0e0;
}

.page-game-types-poker-details__text-content ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-size: 1.2em;
}

.page-game-types-poker-details__image-wrapper {
    text-align: center;
}

.page-game-types-poker-details__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-poker-details__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-game-types-poker-details__game-card {
    background-color: #0a1128;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-poker-details__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-game-types-poker-details__game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-game-types-poker-details__game-card-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-game-types-poker-details__game-card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.page-game-types-poker-details__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-game-types-poker-details__feature-item {
    background-color: #0a1128;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-poker-details__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 51, 102, 0.5));
}

.page-game-types-poker-details__feature-title {
    font-size: 1.6em;
    color: #FFCC00;
    margin-bottom: 10px;
}

.page-game-types-poker-details__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-game-types-poker-details__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

.page-game-types-poker-details__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: 10px;
    border: none;
    cursor: pointer;
}

.page-game-types-poker-details__btn--primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue */
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-game-types-poker-details__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.page-game-types-poker-details__btn--secondary {
    background-color: #003366; /* Deep blue */
    color: #FFCC00; /* Golden yellow */
    border: 2px solid #FFCC00;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
}

.page-game-types-poker-details__btn--secondary:hover {
    background-color: #002244;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.6);
}

.page-game-types-poker-details__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: 15px;
}

.page-game-types-poker-details__accordion-item {
    background-color: #0a1128;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-game-types-poker-details__accordion-header {
    background-color: #003366;
    color: #FFCC00;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-types-poker-details__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-types-poker-details__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-types-poker-details__accordion-header:hover {
    background-color: #004488;
}

.page-game-types-poker-details__accordion-content {
    padding: 0 25px;
    background-color: #1a1a2e;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-types-poker-details__accordion-content p {
    padding: 15px 0;
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-game-types-poker-details__accordion-content .page-game-types-poker-details__btn {
    margin-top: 0;
    margin-bottom: 15px;
}

.page-game-types-poker-details__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFCC00;
    color: #003366;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    max-width: 300px;
    text-align: center;
    animation: slideIn 0.5s ease-out forwards;
}

.page-game-types-poker-details__floating-promo-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #003366;
}

.page-game-types-poker-details__floating-promo-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
}

.page-game-types-poker-details__floating-promo .page-game-types-poker-details__btn--primary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
    box-shadow: none;
}

.page-game-types-poker-details__floating-promo .page-game-types-poker-details__btn--primary:hover {
    background-color: #002244;
    color: #FFCC00;
    transform: translateY(-2px);
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-types-poker-details__hero-title {
        font-size: 2.8em;
    }
    .page-game-types-poker-details__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-types-poker-details__section-title {
        font-size: 2em;
    }
    .page-game-types-poker-details__content-grid,
    .page-game-types-poker-details__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-game-types-poker-details__content-grid--reverse .page-game-types-poker-details__image-wrapper {
        order: -1;
    }
    .page-game-types-poker-details__floating-promo {
        right: 10px;
        bottom: 10px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-game-types-poker-details__hero {
        padding: 80px 0;
    }
    .page-game-types-poker-details__hero-title {
        font-size: 2.2em;
    }
    .page-game-types-poker-details__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-types-poker-details__introduction,
    .page-game-types-poker-details__game-types,
    .page-game-types-poker-details__strategy,
    .page-game-types-poker-details__why-hm88,
    .page-game-types-poker-details__faq {
        padding: 60px 0;
    }
    .page-game-types-poker-details__game-card-grid,
    .page-game-types-poker-details__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-game-types-poker-details__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-types-poker-details__floating-promo {
        max-width: 90%;
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .page-game-types-poker-details__hero-title {
        font-size: 1.8em;
    }
    .page-game-types-poker-details__hero-subtitle {
        font-size: 1em;
    }
    .page-game-types-poker-details__section-title {
        font-size: 1.8em;
    }
    .page-game-types-poker-details__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-types-poker-details__game-card,
    .page-game-types-poker-details__feature-item {
        padding: 20px;
    }
}