/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF; /* White for headings */
    font-weight: 700;
}

a {
    color: #FFC107; /* Warm yellow for links */
    text-decoration: none;
}

a:hover {
    color: #FFD700; /* Brighter yellow on hover */
    text-decoration: underline;
}

.container {
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4CAF50; /* Vibrant green accent */
    border-radius: 2px;
}

/* Header */
.main-header {
    background-color: rgba(26, 26, 46, 0.95); /* Slightly transparent dark background */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF !important;
}

.navbar-brand:hover {
    color: #FFC107 !important;
}

.logo-img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
}

.developer-info {
    color: #999999;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-section h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.game-rating i {
    color: #FFC107; /* Warm yellow for stars */
    font-size: 1.8rem;
}

.game-rating span {
    font-size: 1.2rem;
    font-weight: 600;
}

.play-now-btn {
    background-color: #4CAF50; /* Vibrant green */
    border-color: #4CAF50;
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.play-now-btn:hover {
    background-color: #66BB6A; /* Lighter green on hover */
    border-color: #66BB6A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* Game Details Section */
.game-details-section {
    background-color: #2a2a4a; /* Slightly lighter dark background */
    color: #E0E0E0;
}

.game-details-section .lead {
    font-size: 1.25rem;
    color: #CCCCCC;
}

.game-features li, .feature-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.game-features i, .feature-list i {
    color: #FFC107; /* Yellow icons */
    font-size: 1.2rem;
}

.game-details-section img {
    max-width: 100%;
    height: auto;
    border: 5px solid #4CAF50;
}

/* Screenshots Section */
.screenshots-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%); /* Dark gradient background */
}

.carousel-item img {
    max-height: 550px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

.carousel-indicators button {
    background-color: #FFC107;
}

/* How to Play Section */
.how-to-play-section {
    background-color: #1a1a2e;
}

.step-card {
    background-color: #2a2a4a;
    border: 1px solid #4CAF50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: #FFC107;
}

.step-card h3 {
    color: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 10px;
}

.step-card p {
    color: #CCCCCC;
}

/* Player Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a2e 100%);
}

.review-card {
    background-color: #3a3a5a;
    border: 1px solid #FFC107;
    color: #E0E0E0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.review-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.review-stars i {
    color: #FFC107;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #CCCCCC;
}

.review-date {
    font-size: 0.85rem;
    color: #999999;
}

/* Related Games Section */
.related-games-section {
    background-color: #1a1a2e;
}

.game-card {
    background-color: #2a2a4a;
    border: 1px solid #4CAF50;
    color: #E0E0E0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.game-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.game-card .card-title {
    color: #FFFFFF;
    font-size: 1.3rem;
}

.game-card .card-text {
    color: #CCCCCC;
    font-size: 0.95rem;
}

.game-card .btn-secondary {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #333333;
    transition: all 0.3s ease;
}

.game-card .btn-secondary:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #333333;
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background-color: #111122; /* Even darker for footer */
    padding: 30px 0;
    border-top: 1px solid #333344;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF !important;
}

.footer-brand:hover {
    color: #FFC107 !important;
}

.footer-brand .logo-img {
    height: 35px;
}

.footer-brand .logo-text {
    color: #FFFFFF;
}

.main-footer p {
    color: #999999;
    font-size: 0.9rem;
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4CAF50 !important; /* Green on hover */
}

.footer-links li a {
    color: #CCCCCC;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #4CAF50; /* Green on hover */
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    .play-now-btn {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
    .section-title {
        font-size: 2rem;
    }
    .game-details-section img {
        margin-top: 2rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .logo-img {
        height: 35px;
    }
    .developer-info {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        min-height: 70vh;
        padding: 80px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .game-rating i {
        font-size: 1.5rem;
    }
    .game-rating span {
        font-size: 1rem;
    }
    .play-now-btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .main-footer .text-md-start, .main-footer .text-md-end {
        text-align: center !important;
    }
    .footer-links {
        margin-top: 15px;
    }
    .developer-info {
        display: none !important; /* Hide developer info on small screens */
    }
    .navbar-brand .logo-text {
        font-size: 1.2rem;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
}
/* Styles for the complianceVaultNode container */
.complianceVaultNode {
    padding: 40px 20px; /* Top/bottom padding 40px, left/right padding 20px */
    margin: 20px 0; /* Margin above and below the content block for separation */
    background-color: #2a2a4a; /* A slightly lighter dark background for content blocks */
    border-radius: 8px; /* Slightly rounded corners for a softer look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    color: #E0E0E0; /* Default text color for the container, inherited by p, li */
}

/* Heading 1 styles within complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 2.2rem; /* Moderate size for H1, not overly large */
    margin-top: 1.5em; /* Top margin relative to font size */
    margin-bottom: 0.8em; /* Bottom margin relative to font size */
    line-height: 1.2; /* Line height for readability */
    color: #FFFFFF; /* White color for headings, overrides container default */
}

/* Heading 2 styles within complianceVaultNode */
.complianceVaultNode h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    color: #FFFFFF;
}

/* Heading 3 styles within complianceVaultNode */
.complianceVaultNode h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    color: #FFFFFF;
}

/* Heading 4 styles within complianceVaultNode */
.complianceVaultNode h4 {
    font-size: 1.2rem; /* Moderate size for H4 */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    color: #FFFFFF;
}

/* Heading 5 styles within complianceVaultNode */
.complianceVaultNode h5 {
    font-size: 1rem; /* Moderate size for H5, similar to body text */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Paragraph styles within complianceVaultNode */
.complianceVaultNode p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1em; /* Bottom margin for paragraphs */
    line-height: 1.6; /* Line height for improved readability */
    /* Color inherited from .complianceVaultNode */
}

/* Unordered list styles within complianceVaultNode */
.complianceVaultNode ul {
    margin-top: 1em; /* Top margin for lists */
    margin-bottom: 1em; /* Bottom margin for lists */
    padding-left: 25px; /* Indentation for list items with bullets */
    list-style-type: disc; /* Default disc bullet points */
}

/* List item styles within complianceVaultNode */
.complianceVaultNode li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5em; /* Bottom margin for individual list items */
    line-height: 1.6; /* Line height for improved readability */
    /* Color inherited from .complianceVaultNode */
}

.navbar>.container-fluid{
    flex-direction: column !important;
    justify-content: start;
    align-items: start;
}

.hero-section{
    padding-top: 150px !important;
}

@media (min-width: 992px){
    .hero-section{
        padding-top: 200px !important;
    }
}

@media (max-width: 767px){
    .footer-brand{
        justify-content: center;
    }
}