/* style/card-poker.css */

/* General page styling */
.page-card-poker {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page-card-poker-section {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-card-poker-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-card-poker-section:nth-of-type(even) {
    background-color: #1A2B47; /* Slightly lighter dark blue for contrast between sections */
}

.page-card-poker-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-card-poker-section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-card-poker-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-card-poker-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    margin-right: 15px;
}

.page-card-poker-btn-primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-card-poker-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
}

.page-card-poker-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-card-poker-btn-link {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-card-poker-btn-link:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Hero Section */
.page-card-poker-hero {
    background: linear-gradient(135deg, #0A192F, #1A2B47);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #FFFFFF;
}

.page-card-poker-hero-title {
    font-size: 4.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-card-poker-hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-card-poker-hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-card-poker-hero-image {
    position: absolute;
    bottom: -50px; /* Adjust to show cards/chips peeking */
    right: -100px;
    opacity: 0.3;
    z-index: 0;
    width: 600px; /* Adjust size */
    height: auto;
    transform: rotate(15deg);
}

.page-card-poker-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ensure content is above the image */
.page-card-poker-hero > .page-card-poker-container {
    position: relative;
    z-index: 1;
}

/* Introduction Section */
.page-card-poker-introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #B0B0B0;
    text-align: left;
}

/* Featured Games Grid */
.page-card-poker-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-card-poker-game-item {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-card-poker-game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.2);
}

.page-card-poker-game-item img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid #FFD700;
}

.page-card-poker-game-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-card-poker-game-description {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

/* Why Choose Section */
.page-card-poker-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-card-poker-advantage-item {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-card-poker-advantage-item:hover {
    background-color: #1A2B47;
}

.page-card-poker-advantage-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-card-poker-advantage-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-card-poker-advantage-item p {
    font-size: 1em;
    color: #B0B0B0;
}

/* Strategy Section */
.page-card-poker-strategy-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}

.page-card-poker-strategy-text {
    flex: 2;
    min-width: 300px;
}

.page-card-poker-strategy-text p {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-card-poker-strategy-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.page-card-poker-strategy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Promotions Section */
.page-card-poker-promotions p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #B0B0B0;
}

.page-card-poker-promotions-actions {
    margin-top: 40px;
}

/* App Download Section */
.page-card-poker-app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}

.page-card-poker-app-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.page-card-poker-app-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-card-poker-app-text {
    flex: 2;
    min-width: 300px;
}

.page-card-poker-app-text p {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-card-poker-app-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Detail Pages List */
.page-card-poker-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-card-poker-detail-item {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-card-poker-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.page-card-poker-detail-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-card-poker-detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-card-poker-detail-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-card-poker-detail-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-card-poker-hero-title {
        font-size: 3.5em;
    }
    .page-card-poker-section-title {
        font-size: 2.2em;
    }
    .page-card-poker-strategy-content,
    .page-card-poker-app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-card-poker-strategy-image,
    .page-card-poker-app-image {
        max-width: 80%;
        margin: 0 auto;
    }
    .page-card-poker-strategy-text,
    .page-card-poker-app-text {
        text-align: center;
    }
    .page-card-poker-introduction p,
    .page-card-poker-promotions p,
    .page-card-poker-strategy-text p,
    .page-card-poker-app-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-card-poker-hero {
        min-height: 500px;
        padding: 80px 0 30px;
    }
    .page-card-poker-hero-title {
        font-size: 2.8em;
    }
    .page-card-poker-hero-subtitle {
        font-size: 1.1em;
    }
    .page-card-poker-section {
        padding: 60px 0;
    }
    .page-card-poker-section-title {
        font-size: 1.8em;
    }
    .page-card-poker-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-card-poker-hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-card-poker-btn-primary {
        margin-right: 0;
    }
    .page-card-poker-game-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-card-poker-hero-title {
        font-size: 2.2em;
    }
    .page-card-poker-hero-subtitle {
        font-size: 1em;
    }
    .page-card-poker-section-title {
        font-size: 1.5em;
    }
    .page-card-poker-game-item img {
        height: 150px;
    }
    .page-card-poker-hero-image {
        width: 400px;
        right: -150px;
    }
}