/* style/poker.css */

/* Base styles for the poker page content */
.page-poker {
    color: #333333; /* Dark text on light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF;
}

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

.page-poker__section-title {
    font-size: 2.8em;
    color: #000000; /* Main brand color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.page-poker__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.page-poker__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

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

.page-poker__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.page-poker__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-poker__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-poker__hero-btn {
    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;
}

.page-poker__hero-btn--register {
    background-color: #FFFFFF; /* Register button background */
    color: #000000; /* Register button text color */
    border: 2px solid #FFFFFF;
}

.page-poker__hero-btn--register:hover {
    background-color: #F0F0F0;
    color: #000000;
}

.page-poker__hero-btn--login {
    background-color: #FCBC45; /* Login button background */
    color: #000000; /* Login button text color */
    border: 2px solid #FCBC45;
}

.page-poker__hero-btn--login:hover {
    background-color: #E0A83A;
    color: #000000;
}

.page-poker__about-section {
    background-color: #f9f9f9;
}

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

.page-poker__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-poker__feature-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-poker__feature-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

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

.page-poker__jackpot-meter-section {
    background-color: #FFFFFF;
}

.page-poker__jackpot-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-poker__jackpot-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__jackpot-info {
    text-align: center;
    max-width: 700px;
}

.page-poker__jackpot-info-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 20px;
}

.page-poker__jackpot-info-description {
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 30px;
}

.page-poker__jackpot-btn {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-poker__jackpot-btn:hover {
    background-color: #E0A83A;
}

.page-poker__strategy-section {
    background-color: #f9f9f9;
}

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

.page-poker__strategy-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-poker__strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-poker__strategy-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-poker__strategy-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-poker__strategy-title a:hover {
    color: #FCBC45;
}

.page-poker__strategy-description {
    font-size: 1em;
    color: #666666;
}

.page-poker__responsible-gaming-section {
    background-color: #FFFFFF;
    text-align: center;
}

.page-poker__responsible-btn {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.page-poker__responsible-btn:hover {
    background-color: #333333;
}

.page-poker__cta-section {
    background-color: #000000; /* Main brand color for CTA background */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-poker__cta-section .page-poker__section-title,
.page-poker__cta-section .page-poker__section-text {
    color: #FFFFFF; /* Ensure text is white on dark background */
}

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

.page-poker__cta-btn {
    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;
}

.page-poker__cta-btn--register {
    background-color: #FFFFFF; /* Register button background */
    color: #000000; /* Register button text color */
    border: 2px solid #FFFFFF;
}

.page-poker__cta-btn--register:hover {
    background-color: #F0F0F0;
    color: #000000;
}

.page-poker__cta-btn--download {
    background-color: #FCBC45; /* Download button background */
    color: #000000; /* Download button text color */
    border: 2px solid #FCBC45;
}

.page-poker__cta-btn--download:hover {
    background-color: #E0A83A;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-poker__hero-title {
        font-size: 3em;
    }
    .page-poker__hero-description {
        font-size: 1.2em;
    }
    .page-poker__section-title {
        font-size: 2.2em;
    }
    .page-poker__jackpot-image {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-poker__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px);
    }
    .page-poker__hero-title {
        font-size: 2.5em;
    }
    .page-poker__hero-description {
        font-size: 1em;
    }
    .page-poker__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__hero-btn {
        width: 100%;
        max-width: 300px;
    }
    .page-poker__section-title {
        font-size: 1.8em;
    }
    .page-poker__section-text {
        font-size: 0.95em;
    }
    .page-poker__features-grid,
    .page-poker__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-poker__feature-icon {
        width: 150px;
        height: 100px;
    }
    .page-poker__jackpot-display {
        flex-direction: column;
    }
    .page-poker__jackpot-image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content images are responsive and do not overflow */
    .page-poker img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-poker__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-poker__cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-poker__hero-section {
        min-height: 400px;
    }
    .page-poker__hero-title {
        font-size: 2em;
    }
    .page-poker__hero-description {
        font-size: 0.9em;
    }
    .page-poker__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-poker__section-title {
        font-size: 1.5em;
    }
    .page-poker__section-text {
        font-size: 0.9em;
    }
    .page-poker__content-block {
        padding: 40px 15px;
    }
    .page-poker__cta-section {
        padding: 60px 15px;
    }
}