/* style/index-nohu90-game-product-matrix.css */

/* Variables */
:root {
    --page-index-nohu90-game-product-matrix-primary-color: #FFD700; /* Gold */
    --page-index-nohu90-game-product-matrix-secondary-color: #DC143C; /* Deep Red */
    --page-index-nohu90-game-product-matrix-background-dark: #1A1A2E; /* Dark Blue/Near Black */
    --page-index-nohu90-game-product-matrix-text-light: #F0F0F0; /* Light Gray */
    --page-index-nohu90-game-product-matrix-text-dark: #333333; /* Dark Gray */
    --page-index-nohu90-game-product-matrix-accent-color: #FF4500; /* Orange Red for highlights */
}

/* Base styles for the page content container */
.page-index-nohu90-game-product-matrix {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-index-nohu90-game-product-matrix-text-light);
    background-color: var(--page-index-nohu90-game-product-matrix-background-dark);
}

.page-index-nohu90-game-product-matrix .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
.page-index-nohu90-game-product-matrix .section-padding {
    padding: 80px 0;
}

/* Backgrounds */
.page-index-nohu90-game-product-matrix .bg-dark {
    background-color: var(--page-index-nohu90-game-product-matrix-background-dark);
}

.page-index-nohu90-game-product-matrix .bg-gold {
    background-color: var(--page-index-nohu90-game-product-matrix-primary-color);
    color: var(--page-index-nohu90-game-product-matrix-text-dark); /* Ensure contrast */
}

/* Text Colors */
.page-index-nohu90-game-product-matrix .text-gold {
    color: var(--page-index-nohu90-game-product-matrix-primary-color);
}

.page-index-nohu90-game-product-matrix .text-light {
    color: var(--page-index-nohu90-game-product-matrix-text-light);
}

.page-index-nohu90-game-product-matrix .text-dark {
    color: var(--page-index-nohu90-game-product-matrix-text-dark);
}

.page-index-nohu90-game-product-matrix .text-center {
    text-align: center;
}

/* Headings */
.page-index-nohu90-game-product-matrix h1,
.page-index-nohu90-game-product-matrix h2,
.page-index-nohu90-game-product-matrix h3 {
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--page-index-nohu90-game-product-matrix-primary-color); /* Default heading color */
}

.page-index-nohu90-game-product-matrix h1 {
    font-size: 3.5em;
    line-height: 1.1;
    color: var(--page-index-nohu90-game-product-matrix-primary-color);
}

.page-index-nohu90-game-product-matrix h2 {
    font-size: 2.8em;
    color: var(--page-index-nohu90-game-product-matrix-primary-color);
}

.page-index-nohu90-game-product-matrix h3 {
    font-size: 1.8em;
    color: var(--page-index-nohu90-game-product-matrix-text-light);
}

/* Paragraphs */
.page-index-nohu90-game-product-matrix p {
    margin-bottom: 1em;
    color: var(--page-index-nohu90-game-product-matrix-text-light);
}

/* Buttons */
.page-index-nohu90-game-product-matrix .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-index-nohu90-game-product-matrix .btn-primary {
    background-color: var(--page-index-nohu90-game-product-matrix-primary-color);
    color: var(--page-index-nohu90-game-product-matrix-background-dark);
}

.page-index-nohu90-game-product-matrix .btn-primary:hover {
    background-color: #FFC000; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-index-nohu90-game-product-matrix .btn-secondary {
    background-color: var(--page-index-nohu90-game-product-matrix-secondary-color);
    color: var(--page-index-nohu90-game-product-matrix-text-light);
}

.page-index-nohu90-game-product-matrix .btn-secondary:hover {
    background-color: #C01230; /* Slightly darker red */
    transform: translateY(-2px);
}

.page-index-nohu90-game-product-matrix .btn-dark {
    background-color: var(--page-index-nohu90-game-product-matrix-background-dark);
    color: var(--page-index-nohu90-game-product-matrix-primary-color);
    border: 2px solid var(--page-index-nohu90-game-product-matrix-primary-color);
}

.page-index-nohu90-game-product-matrix .btn-dark:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Hero Section */
.page-index-nohu90-game-product-matrix__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--page-index-nohu90-game-product-matrix-background-dark) 0%, #301934 50%, var(--page-index-nohu90-game-product-matrix-background-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    justify-content: center;
}

.page-index-nohu90-game-product-matrix__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1), transparent 50%),
                radial-gradient(circle at bottom right, rgba(220, 20, 60, 0.1), transparent 50%);
    z-index: 0;
}

.page-index-nohu90-game-product-matrix .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-index-nohu90-game-product-matrix .hero-title {
    font-size: 4.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-index-nohu90-game-product-matrix .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-index-nohu90-game-product-matrix-text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-nohu90-game-product-matrix .hero-image-container {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
}

.page-index-nohu90-game-product-matrix .hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Section Titles and Descriptions */
.page-index-nohu90-game-product-matrix .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3em;
}

.page-index-nohu90-game-product-matrix .section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: var(--page-index-nohu90-game-product-matrix-text-light);
}

/* Game Categories Grid */
.page-index-nohu90-game-product-matrix .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-nohu90-game-product-matrix .game-card {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 550px; /* Ensure consistent card height */
}

.page-index-nohu90-game-product-matrix .game-card:hover {
    transform: translateY(-10px);
    background-color: rgba(0, 0, 0, 0.6);
}

.page-index-nohu90-game-product-matrix .game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--page-index-nohu90-game-product-matrix-primary-color);
}