/* style/game-types.css */
.page-game-types {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2E36; /* Deep blue main background */
    line-height: 1.6;
}

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

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

.page-game-types__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-types__section-description {
    font-size: 1.1em;
    color: #C0C0C0; /* Lighter gray for descriptions */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-game-types__hero-section {
    position: relative;
    background: linear-gradient(135deg, #0A2E36 0%, #1A4F5B 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.page-game-types__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming_pattern,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-types__hero-section .page-game-types__container {
    position: relative;
    z-index: 1;
}

.page-game-types__hero-title {
    font-size: 4em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-types__hero-description {
    font-size: 1.3em;
    color: #FFFFFF; /* White for hero description */
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-game-types__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 0;
    opacity: 0.3;
}

.page-game-types__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.page-game-types__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;
    margin: 10px;
    border: none;
}

.page-game-types__btn--primary {
    background-color: #FFD700; /* Gold for primary actions */
    color: #0A2E36; /* Deep blue for text on gold */
}

.page-game-types__btn--primary:hover {
    background-color: #E0B700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold for secondary text */
    border: 2px solid #FFD700;
}

.page-game-types__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2E36;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Game List Section */
.page-game-types__game-list {
    background-color: #0A2E36;
}

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

.page-game-types__game-card {
    background-color: #1A4F5B; /* Slightly lighter blue for cards */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-game-types__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-game-types__game-card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 25px 15px 15px 15px;
}

.page-game-types__game-card-description {
    font-size: 1em;
    color: #C0C0C0;
    padding: 0 20px 20px 20px;
}

.page-game-types__game-card-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
}

/* Why Choose Us Section */
.page-game-types__why-choose-us {
    background-color: #0A2E36;
    padding: 80px 0;
}

.page-game-types__features-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-game-types__features-list li {
    background-color: #1A4F5B;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-types__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-types__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    text-align: center;
}

.page-game-types__feature-text {
    font-size: 0.95em;
    color: #C0C0C0;
    text-align: center;
}

.page-game-types__why-choose-image {
    width: 100%;
    max-width: 900px;
    margin-top: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsible Gaming Section */
.page-game-types__responsible-gaming {
    background-color: #0A2E36;
    padding: 80px 0;
}

.page-game-types__responsible-gaming-image {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.page-game-types__cta-section {
    background: linear-gradient(90deg, #0A2E36 0%, #1A4F5B 100%);
    padding: 80px 0;
    text-align: center;
}

.page-game-types__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-types__cta-description {
    font-size: 1.2em;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-types__hero-title {
        font-size: 3.5em;
    }
    .page-game-types__section-title {
        font-size: 2.2em;
    }
    .page-game-types__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-types__hero-title {
        font-size: 2.5em;
    }
    .page-game-types__hero-description {
        font-size: 1.1em;
    }
    .page-game-types__section-title {
        font-size: 1.8em;
    }
    .page-game-types__section-description {
        font-size: 1em;
    }
    .page-game-types__game-card-grid {
        grid-template-columns: 1fr;
    }
    .page-game-types__game-card-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-game-types__btn {
        width: 80%;
    }
    .page-game-types__features-list {
        grid-template-columns: 1fr;
    }
    .page-game-types__cta-title {
        font-size: 2em;
    }
    .page-game-types__cta-description {
        font-size: 1em;
    }
    .page-game-types__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-game-types__hero-title {
        font-size: 2em;
    }
    .page-game-types__btn {
        padding: 12px 20px;
        font-size: 0.9em;
        width: 90%;
    }
    .page-game-types__btn--large {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-game-types__section-title {
        font-size: 1.5em;
    }
    .page-game-types__game-card-title {
        font-size: 1.5em;
    }
    .page-game-types__cta-title {
        font-size: 1.8em;
    }
}