.page-poker {
    color: #333333; /* Default text color for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-poker__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #0d0d0d; /* Dark background for hero to make gold/red pop */
}

.page-poker__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly dim the image to make text more readable */
}

.page-poker__hero-container {
    position: relative;
    max-width: 100%; /* Prevents horizontal overflow */
    margin: 0 auto;
}

.page-poker__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
    z-index: 10;
}

.page-poker__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__intro-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.page-poker__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-poker__button--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    border: 2px solid #FFD700;
}

.page-poker__button--primary:hover {
    background-color: #e6c200;
    color: #6a0000;
}

.page-poker__button--secondary {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    border: 2px solid #8B0000;
}

.page-poker__button--secondary:hover {
    background-color: #6a0000;
    color: #e6c200;
}

.page-poker__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #FFD700;
    color: #8B0000;
    border: 1px solid #FFD700;
}

.page-poker__button--small:hover {
    background-color: #e6c200;
    color: #6a0000;
}

.page-poker__button--text {
    background: none;
    border: none;
    color: #FFD700;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
}

.page-poker__button--text:hover {
    color: #e6c200;
}

.page-poker__section-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark Red */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-poker__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-poker__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555555;
}

/* Why Us Section */
.page-poker__why-us-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-poker__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-poker__feature-card:hover {
    transform: translateY(-10px);
}

.page-poker__feature-icon {
    width: 200px; /* Min size 200px */
    height: 150px; 
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-poker__feature-title {
    font-size: 1.5em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 15px;
}

.page-poker__feature-description {
    color: #555555;
    font-size: 1em;
}

/* Getting Started Section */
.page-poker__getting-started-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-poker__step-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-poker__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    background-color: #8B0000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFD700;
}

.page-poker__step-title {
    font-size: 1.4em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 10px;
}

.page-poker__step-description {
    color: #555555;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Game Types Section */
.page-poker__game-types-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-poker__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-poker__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
    transform: translateY(-10px);
}

.page-poker__game-image {
    width: 100%;
    height: 250px; /* Ensure images are not small */
    object-fit: cover;
    display: block;
}

.page-poker__game-title {
    font-size: 1.6em;
    color: #8B0000; /* Dark Red */
    margin: 20px 15px 10px;
}

.page-poker__game-description {
    color: #555555;
    font-size: 1em;
    padding: 0 15px 20px;
}

/* Strategy Section */
.page-poker__strategy-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-poker__strategy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.page-poker__strategy-image {
    flex: 1 1 45%;
    min-width: 400px; /* Ensure image is not too small on larger screens */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-poker__strategy-text {
    flex: 1 1 45%;
    min-width: 400px; /* Ensure text content is not too small */
    color: #555555;
}

.page-poker__strategy-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-poker__strategy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-poker__strategy-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555555;
}

.page-poker__list-title {
    display: inline;
    color: #8B0000;
    font-size: 1.1em;
    margin-right: 5px;
}

/* Tournaments Section */
.page-poker__tournaments-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-poker__tournament-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-poker__tournament-card:hover {
    transform: translateY(-10px);
}

.page-poker__tournament-image {
    width: 100%;
    height: 250px; /* Ensure images are not small */
    object-fit: cover;
    display: block;
}

.page-poker__tournament-title {
    font-size: 1.6em;
    color: #8B0000; /* Dark Red */
    margin: 20px 15px 10px;
}

.page-poker__tournament-description {
    color: #555555;
    font-size: 1em;
    padding: 0 15px 20px;
}

.page-poker__tournament-cta {
    text-align: center;
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

/* FAQ Section */
.page-poker__faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-poker__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-poker__faq-question {
    font-size: 1.3em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-poker__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
}

.page-poker__faq-question.active::after {
    content: '-';
}

.page-poker__faq-answer {
    color: #555555;
    font-size: 1em;
    display: none;
    margin-top: 10px;
}

.page-poker__faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-poker__cta-section {
    padding: 80px 0;
    background-color: #8B0000; /* Dark Red */
    color: #ffffff;
    text-align: center;
}

.page-poker__cta-section .page-poker__section-title {
    color: #FFD700; /* Gold */
}

.page-poker__cta-section .page-poker__section-description {
    color: #f0f0f0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-poker__main-title {
        font-size: 3em;
    }
    .page-poker__intro-text {
        font-size: 1.1em;
    }
    .page-poker__hero-content {
        max-width: 700px;
    }
    .page-poker__strategy-image, .page-poker__strategy-text {
        min-width: unset;
        flex: 1 1 100%;
    }
    .page-poker__strategy-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-poker__hero-section {
        padding-top: var(--header-offset, 100px);
        padding: 40px 15px;
    }
    .page-poker__hero-content {
        padding: 15px;
    }
    .page-poker__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-poker__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-poker__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
    }
    .page-poker__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-poker__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-poker__features-grid, .page-poker__steps-grid, .page-poker__game-types-grid, .page-poker__tournament-grid {
        grid-template-columns: 1fr;
    }
    .page-poker__container {
        padding: 15px;
    }
    .page-poker__feature-card, .page-poker__step-card, .page-poker__game-card, .page-poker__tournament-card {
        padding: 20px;
    }
    .page-poker__feature-icon, .page-poker__game-image, .page-poker__tournament-image {
        height: 200px; /* Min size 200px */
        width: 100%;
    }
    .page-poker__strategy-image {
        min-width: 200px;
        width: 100%;
        height: auto;
    }
    .page-poker__faq-question {
        font-size: 1.1em;
    }
    .page-poker__faq-answer {
        font-size: 0.9em;
    }
    /* Mobile specific image sizing to prevent overflow */
    .page-poker img {
        max-width: 100%;
        height: auto;
    }
    .page-poker__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-poker__main-title {
        font-size: 1.8em;
    }
    .page-poker__intro-text {
        font-size: 0.9em;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__button {
        font-size: 0.9em;
    }
    .page-poker__feature-icon, .page-poker__game-image, .page-poker__tournament-image {
        height: 200px;
        width: 100%;
    }
    .page-poker__strategy-image {
        min-width: 200px;
        width: 100%;
        height: auto;
    }
}