/* style/original.css */

.page-original {
    color: #333333; /* Dark text for default light body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
    background-color: #fcfcfc; /* Slightly off-white background for the page content */
}

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

/* Hero Section */
.page-original__hero-section {
    background-color: #0A2463; /* Dark blue background */
    color: #ffffff; /* Light text on dark background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-original__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-original__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B23C; /* Gold for emphasis */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-original__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-original__hero-button {
    display: inline-block;
    background-color: #E3B23C; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-original__hero-button:hover {
    background-color: #f5db9c; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-original__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-original__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
}

/* Introduction Section */
.page-original__introduction-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-original__introduction-title {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #0A2463; /* Dark blue title */
    font-weight: bold;
}

.page-original__introduction-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #555555;
}

/* Features Section */
.page-original__features-section {
    padding: 80px 0;
    background-color: #0A2463; /* Dark blue background */
    color: #ffffff;
    text-align: center;
}

.page-original__features-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #E3B23C; /* Gold title */
    font-weight: bold;
}

.page-original__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-original__feature-card {
    background-color: rgba(255, 255, 255, 0.08); /* Subtle card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-original__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-original__feature-icon {
    width: 250px; /* Ensure images are >= 200px */
    height: 167px; /* Maintain aspect ratio */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-original__feature-card-title {
    font-size: 1.5em;
    color: #E3B23C; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-original__feature-card-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Game Showcase Section */
.page-original__game-showcase-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f8f8; /* Light background for this section */
}

.page-original__game-showcase-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2463;
    font-weight: bold;
}

.page-original__game-showcase-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

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

.page-original__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-original__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-original__game-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-original__game-card-title {
    font-size: 1.6em;
    color: #0A2463;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-original__game-card-text {
    font-size: 0.95em;
    color: #666666;
    padding: 0 20px 20px;
    flex-grow: 1; /* Allow text to take available space */
}

.page-original__game-card-button {
    display: block;
    background-color: #E3B23C;
    color: #0A2463;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.page-original__game-card-button:hover {
    background-color: #f5db9c;
}

/* Why Play Section */
.page-original__why-play-section {
    padding: 80px 0;
    background-color: #0A2463;
    color: #ffffff;
    text-align: center;
}

.page-original__why-play-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #E3B23C;
    font-weight: bold;
}

.page-original__why-play-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-original__why-play-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-original__why-play-item-title {
    font-size: 1.5em;
    color: #E3B23C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-original__why-play-item-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-original__why-play-button {
    display: inline-block;
    background-color: #E3B23C;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-original__why-play-button:hover {
    background-color: #f5db9c;
    transform: translateY(-3px);
}

/* Call to Action Section */
.page-original__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff; /* Light background for CTA */
}

.page-original__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2463;
    font-weight: bold;
}

.page-original__cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-original__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-original__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-original__cta-button--primary {
    background-color: #E3B23C;
    color: #0A2463;
}

.page-original__cta-button--primary:hover {
    background-color: #f5db9c;
    transform: translateY(-3px);
}

.page-original__cta-button--secondary {
    background-color: transparent;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.page-original__cta-button--secondary:hover {
    background-color: #0A2463;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-original__hero-title {
        font-size: 3em;
    }
    .page-original__introduction-title,
    .page-original__features-title,
    .page-original__game-showcase-title,
    .page-original__why-play-title,
    .page-original__cta-title {
        font-size: 2.2em;
    }
    .page-original__feature-icon,
    .page-original__game-card-image {
        height: 200px; /* Adjust height for tablet, ensure >= 200px */
    }
}

@media (max-width: 768px) {
    .page-original__hero-section {
        padding: 60px 20px;
        min-height: 400px;
    }
    .page-original__hero-title {
        font-size: 2.5em;
    }
    .page-original__hero-description {
        font-size: 1em;
    }
    .page-original__introduction-section,
    .page-original__features-section,
    .page-original__game-showcase-section,
    
    .page-original__why-play-section,
    .page-original__cta-section {
        padding: 40px 0;
    }
    .page-original__introduction-title,
    .page-original__features-title,
    .page-original__game-showcase-title,
    .page-original__why-play-title,
    .page-original__cta-title {
        font-size: 1.8em;
    }
    .page-original__features-grid,
    .page-original__game-showcase-grid,
    .page-original__why-play-content {
        grid-template-columns: 1fr;
    }
    .page-original__game-card-image {
        height: 200px; /* Fixed height for mobile, still >= 200px */
    }
    .page-original__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-original__cta-button {
        width: 100%;
        max-width: 300px; /* Constrain button width */
        margin: 0 auto;
    }
    /* Ensure all images in content section are responsive and not too small */
    .page-original img {
        max-width: 100%;
        height: auto;
    }
    /* Explicitly ensure min-width/height for content images */
    .page-original__feature-icon,
    .page-original__game-card-image {
        min-width: 200px; 
        min-height: 133px; /* Adjusted to maintain ratio for 200px width */
    }
}

@media (max-width: 480px) {
    .page-original__hero-title {
        font-size: 2em;
    }
    .page-original__introduction-title,
    .page-original__features-title,
    .page-original__game-showcase-title,
    .page-original__why-play-title,
    .page-original__cta-title {
        font-size: 1.5em;
    }
    .page-original__hero-button,
    .page-original__why-play-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}