/* style/poker.css */

/* General page styling based on body background and text color */
.page-poker {
    background-color: var(--site-bg, #0A0A0A); /* Inherit from shared or use default dark */
    color: #FFF6D6; /* Main text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.page-poker__dark-section {
    background-color: #111111; /* Card BG color for dark sections */
    color: #FFF6D6;
}

.page-poker__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD36B; /* Glow color for titles */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-poker__section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFF6D6;
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure responsiveness */
}

.page-poker__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    border: none;
    margin-right: 15px;
}

.page-poker__btn-primary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    color: #0A0A0A;
}

.page-poker__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Main color for text */
    border: 2px solid #F2C14E; /* Border color */
}

.page-poker__btn-secondary:hover {
    background: #F2C14E;
    color: #111111; /* Dark text for highlighted button */
}

.page-poker__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.page-poker__inline-link {
    color: #FFD36B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-poker__inline-link:hover {
    color: #F2C14E;
}

/* Hero Section */
.page-poker__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #0A0A0A;
}

.page-poker__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for image */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
}

.page-poker__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

/* H1 Font Size: No fixed large font-size. Use clamp() if absolutely necessary, otherwise font-weight, line-height, etc. */
.page-poker__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 800;
    color: #FFD36B;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-poker__hero-description {
    font-size: 1.2rem;
    color: #FFF6D6;
    margin-bottom: 40px;
}

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

.page-poker__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

/* Why OKBET Section */
.page-poker__why-okbet {
    background-color: #0A0A0A;
}

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

.page-poker__feature-card {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3A2A12; /* Border */
}

.page-poker__feature-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-poker__feature-text {
    color: #FFF6D6;
    margin-bottom: 20px;
}

.page-poker__game-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.page-poker__game-icons img {
    
    
    object-fit: contain;
    border-radius: 5px;
    /* No filter for colors */
}

.page-poker__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    /* No filter for colors */
}

.page-poker__image-center {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Get Started Section */
.page-poker__get-started {
    background-color: #0A0A0A;
}

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

.page-poker__step-card {
    background-color: #111111;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-poker__step-title {
    font-size: 1.3rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-poker__step-text {
    color: #FFF6D6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Tournaments Section */
.page-poker__tournaments {
    background-color: #0A0A0A;
}

.page-poker__tournament-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-poker__highlight-card {
    background-color: #111111;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3A2A12;
}

.page-poker__highlight-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-poker__highlight-text {
    color: #FFF6D6;
}

/* Strategies Section */
.page-poker__strategies {
    background-color: #0A0A0A;
}

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

.page-poker__strategy-card {
    background-color: #111111;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3A2A12;
}

.page-poker__strategy-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-poker__strategy-text {
    color: #FFF6D6;
}

/* Mobile Experience Section */
.page-poker__mobile-experience {
    background-color: #111111; /* Dark section background */
    color: #FFF6D6;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-poker__mobile-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
}

.page-poker__mobile-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-poker__mobile-text p {
    color: #FFF6D6;
    margin-bottom: 30px;
}

.page-poker__mobile-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-poker__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* No filter for colors */
}

/* Media Partners Section */
.page-poker__media-partners {
    background-color: #0A0A0A;
}

.page-poker__partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns for desktop */
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
    align-items: center;
}

.page-poker__partner-item {
    background-color: #111111;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3A2A12;
    box-sizing: border-box;
}

.page-poker__partner-item img {
     /* Fixed size for partner images */
    
    object-fit: contain;
    /* No filter for colors */
}

/* Support & Responsible Gaming Section */
.page-poker__support-responsible {
    background-color: #0A0A0A;
}

.page-poker__two-column-layout {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-poker__column {
    flex: 1;
    min-width: 300px;
    background-color: #111111;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #3A2A12;
}

.page-poker__column-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-poker__column-text {
    color: #FFF6D6;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-poker__faq-section {
    background-color: #111111; /* Dark section background */
    color: #FFF6D6;
}

.page-poker__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-poker__faq-item {
    background-color: #0A0A0A; /* Darker background for item */
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-poker__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-poker__faq-question h3 {
    margin: 0;
    color: #FFF6D6;
    font-size: 1.1rem;
}

.page-poker__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD36B;
}

.page-poker__faq-item.active .page-poker__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-poker__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #111111; /* Answer background */
    color: #FFF6D6;
}

.page-poker__faq-item.active .page-poker__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px;
}

.page-poker__faq-answer p {
    margin: 0;
    color: #FFF6D6;
}

/* Final Call to Action Section */
.page-poker__cta-final {
    background-color: #0A0A0A;
    padding-bottom: 80px;
}

.page-poker__text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-poker__section-title {
        font-size: 2rem;
    }
    .page-poker__hero-description {
        font-size: 1.1rem;
    }
    .page-poker__hero-section {
        padding-bottom: 40px;
    }
    .page-poker__hero-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-poker {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-poker__container {
        padding: 0 15px;
    }
    .page-poker__section {
        padding: 40px 0;
    }
    .page-poker__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-poker__hero-description {
        font-size: 1rem;
    }
    .page-poker__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-poker__btn-primary,
    .page-poker__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        margin-right: 0;
        padding: 12px 20px;
    }
    .page-poker__features-grid,
    .page-poker__steps-grid,
    .page-poker__tournament-highlights,
    .page-poker__strategy-grid,
    .page-poker__two-column-layout {
        grid-template-columns: 1fr;
    }
    .page-poker__mobile-content {
        flex-direction: column;
    }
    .page-poker__mobile-text,
    .page-poker__mobile-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-poker__partner-item {
        width: 100%; /* Ensure partners take full width if needed */
        max-width: 100%;
        padding: 8px;
    }
    .page-poker__partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
    .page-poker__partner-item img {
        width: 100%; /* Make image flexible within item */
        height: auto;
         /* Maintain aspect ratio and max size */
        
    }
    .page-poker img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-poker__section,
    .page-poker__card,
    .page-poker__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-poker__hero-section {
        padding-top: 10px !important; /* As per rule for video/hero section */
    }
    .page-poker__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-poker__faq-question h3 {
        font-size: 1rem;
    }
    .page-poker__faq-answer {
        padding: 0 20px;
    }
    .page-poker__faq-item.active .page-poker__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-poker__section-title {
        font-size: 1.8rem;
    }
    .page-poker__partners-grid {
        grid-template-columns: 1fr; /* 1 column on very small mobile */
    }
}