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

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

/* Hero Section */
.page-games-poker__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #E3B23C 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-poker__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-games-poker__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-games-poker__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-games-poker__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-games-poker__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-games-poker__btn--primary {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
}

.page-games-poker__btn--primary:hover {
    background-color: #d1a12a;
    border-color: #d1a12a;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-games-poker__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-games-poker__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-games-poker__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #0A2463;
    color: #E3B23C;
    border: 1px solid #0A2463;
}

.page-games-poker__btn--small:hover {
    background-color: #1c4d92;
    border-color: #1c4d92;
    color: #fff;
}

.page-games-poker__btn--link {
    display: inline-block;
    color: #E3B23C;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-games-poker__btn--link:hover {
    color: #d1a12a;
    text-decoration: underline;
}

/* General Section Styling */
.page-games-poker__section {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-games-poker__section:nth-child(even) {
    background-color: #f0f4f7;
}

.page-games-poker__section-title {
    font-size: 2.8em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-games-poker__section-subtitle {
    font-size: 1.3em;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-poker__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-games-poker__text-content {
    flex: 1;
}

.page-games-poker__text-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-games-poker__image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-games-poker__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Grid Layouts */
.page-games-poker__grid {
    display: grid;
    gap: 30px;
}

.page-games-poker__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-games-poker__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styling */
.page-games-poker__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-poker__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-games-poker__card-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-poker__card-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-games-poker__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

/* Feature Items */
.page-games-poker__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-games-poker__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-games-poker__feature-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-games-poker__feature-description {
    color: #555;
    font-size: 1.05em;
}

.page-games-poker__center-btn {
    text-align: center;
    margin-top: 50px;
}

/* Steps Grid */
.page-games-poker__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-games-poker__step-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border-top: 5px solid #0A2463;
}

.page-games-poker__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E3B23C;
    color: #0A2463;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-poker__step-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-games-poker__step-description {
    color: #555;
    margin-bottom: 25px;
}

.page-games-poker__download-app {
    background-color: #0A2463;
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-games-poker__download-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #E3B23C;
}

.page-games-poker__download-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Strategy List */
.page-games-poker__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-poker__strategy-list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
    border-left: 5px solid #E3B23C;
}

.page-games-poker__strategy-list li strong {
    color: #0A2463;
}

/* FAQ Section */
.page-games-poker__faq-item {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-games-poker__faq-question {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-games-poker__faq-answer {
    font-size: 1.05em;
    color: #555;
}

/* CTA Section */
.page-games-poker__cta-section {
    background: linear-gradient(45deg, #0A2463, #1c4d92);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-games-poker__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #E3B23C;
    font-weight: bold;
}

.page-games-poker__cta-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-games-poker__hero-title {
        font-size: 3em;
    }
    .page-games-poker__hero-description {
        font-size: 1.3em;
    }
    .page-games-poker__section-title {
        font-size: 2.5em;
    }
    .page-games-poker__section-subtitle {
        font-size: 1.2em;
    }
    .page-games-poker__grid--2-cols {
        grid-template-columns: 1fr;
    }
    .page-games-poker__content-wrapper {
        flex-direction: column;
    }
    .page-games-poker__image-content {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-games-poker__hero-title {
        font-size: 2.5em;
    }
    .page-games-poker__hero-description {
        font-size: 1.1em;
    }
    .page-games-poker__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-poker__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-games-poker__section {
        padding: 60px 0;
    }
    .page-games-poker__section-title {
        font-size: 2em;
    }
    .page-games-poker__section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-games-poker__grid--3-cols {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-games-poker__download-app {
        padding: 40px 20px;
    }
    .page-games-poker__download-title {
        font-size: 2em;
    }
    .page-games-poker__cta-title {
        font-size: 2.5em;
    }
    .page-games-poker__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-games-poker__hero-title {
        font-size: 2em;
    }
    .page-games-poker__hero-description {
        font-size: 1em;
    }
    .page-games-poker__btn {
        width: 90%;
    }
    .page-games-poker__section-title {
        font-size: 1.8em;
    }
    .page-games-poker__section-subtitle {
        font-size: 0.9em;
    }
    .page-games-poker__card-title {
        font-size: 1.5em;
    }
    .page-games-poker__feature-title {
        font-size: 1.5em;
    }
    .page-games-poker__step-title {
        font-size: 1.5em;
    }
    .page-games-poker__download-title {
        font-size: 1.8em;
    }
    .page-games-poker__cta-title {
        font-size: 2em;
    }
    .page-games-poker__cta-description {
        font-size: 1em;
    }
}