/* style/game-introductions.css */
.page-game-introductions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-game-introductions .text-center {
    text-align: center;
}

.page-game-introductions .text-light {
    color: #f8f8f8;
}

.page-game-introductions .bg-dark {
    background-color: #2C3E50;
    color: #f8f8f8;
}

.page-game-introductions .bg-primary-dark {
    background-color: #2C3E50;
    color: #f8f8f8;
}

/* Hero Section */
.page-game-introductions .hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50, #F39C12);
    color: #f8f8f8;
    text-align: center;
}

.page-game-introductions .hero-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: left;
}

.page-game-introductions .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f8f8f8;
}

.page-game-introductions .hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-game-introductions .hero-image-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.page-game-introductions .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-introductions .hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.page-game-introductions .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-game-introductions .btn-primary {
    background-color: #F39C12;
    color: #2C3E50;
    border: 2px solid #F39C12;
}

.page-game-introductions .btn-primary:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introductions .btn-secondary {
    background-color: transparent;
    color: #f8f8f8;
    border: 2px solid #f8f8f8;
}

.page-game-introductions .btn-secondary:hover {
    background-color: #f8f8f8;
    color: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introductions .btn-link {
    color: #F39C12;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 5px 0;
}

.page-game-introductions .btn-link:hover {
    color: #e08e0b;
    text-decoration: none;
}

.page-game-introductions .btn-accent {
    background-color: #F39C12;
    color: #2C3E50;
    border: 2px solid #F39C12;
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-game-introductions .btn-accent:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-game-introductions .content-section {
    padding: 60px 0;
}

.page-game-introductions .section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2C3E50;
    text-align: center;
}

.page-game-introductions .section-description {
    font-size: 1.05em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Game Categories */
.page-game-introductions .game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-introductions .game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-game-introductions .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-introductions .game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-game-introductions .game-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-introductions .game-card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2C3E50;
}

.page-game-introductions .game-card-title a {
    text-decoration: none;
    color: inherit;
}

.page-game-introductions .game-card-title a:hover {
    color: #F39C12;
}

.page-game-introductions .game-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

/* CTA Section */
.page-game-introductions .cta-section {
    padding: 80px 0;
    background-color: #2C3E50;
}

.page-game-introductions .cta-section .section-title,
.page-game-introductions .cta-section .section-description {
    color: #f8f8f8;
}

.page-game-introductions .cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-game-introductions .cta-card:hover {
    transform: translateY(-5px);
    background-color: #4a5c6c;
}

.page-game-introductions .cta-card-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-game-introductions .cta-card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #F39C12;
}

.page-game-introductions .cta-card-description {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 25px;
}

/* Security & Support Section */
.page-game-introductions .security-support-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-game-introductions .security-support-section .section-title {
    color: #2C3E50;
}

.page-game-introductions .security-support-section .section-description {
    color: #444;
}

/* Conclusion Section */
.page-game-introductions .conclusion-section {
    padding: 80px 0;
    background-color: #2C3E50;
}

.page-game-introductions .conclusion-section .section-title,
.page-game-introductions .conclusion-section .section-description {
    color: #f8f8f8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-game-introductions .hero-section {
        flex-direction: column;
    }

    .page-game-introductions .hero-content {
        text-align: center;
    }

    .page-game-introductions .hero-title {
        font-size: 2.5em;
    }

    .page-game-introductions .section-title {
        font-size: 2em;
    }

    .page-game-introductions .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-game-introductions .hero-title {
        font-size: 2em;
    }

    .page-game-introductions .hero-description {
        font-size: 1em;
    }

    .page-game-introductions .section-title {
        font-size: 1.8em;
    }

    .page-game-introductions .section-description {
        font-size: 0.95em;
    }

    .page-game-introductions .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-introductions .game-card-title {
        font-size: 1.3em;
    }

    .page-game-introductions .cta-card-title {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .page-game-introductions .hero-section {
        padding: 50px 0;
    }

    .page-game-introductions .hero-title {
        font-size: 1.8em;
    }

    .page-game-introductions .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-game-introductions .btn {
        width: 100%;
    }

    .page-game-introductions .content-section,
    .page-game-introductions .cta-section,
    .page-game-introductions .security-support-section,
    .page-game-introductions .conclusion-section {
        padding: 40px 0;
    }

    .page-game-introductions .section-title {
        font-size: 1.5em;
    }

    .page-game-introductions .game-list,
    .page-game-introductions .cta-cards {
        grid-template-columns: 1fr;
    }

    .page-game-introductions .game-card-content,
    .page-game-introductions .cta-card {
        padding: 20px;
    }

    .page-game-introductions .game-card-title {
        font-size: 1.2em;
    }

    .page-game-introductions .cta-card-title {
        font-size: 1.3em;
    }
}