/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333; /* Standard text color */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for general sections */
}

/* Hero Section */
.hero-section {
    min-height: 80vh; /* Make it tall enough */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    background-color: #000; /* Fallback background */
}

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

.hero-section .container {
    z-index: 1;
}

.app-logo-header {
    max-width: 150px;
    height: auto;
    border-radius: 20px; /* Rounded corners for the logo */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); /* Subtle glow */
}

/* Call to Action Buttons */
.play-now-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500); /* Gold to Orange gradient */
    border: none;
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0s, transform 0s, box-shadow 0s; /* Zero duration transitions */
}

.play-now-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700); /* Reverse gradient on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    color: #212529; /* Darker color for titles */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

/* App Info Section */
.app-info-section {
    background-color: #fff;
}

.info-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    transition: box-shadow 0s; /* Zero duration transition */
}

.info-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* How to Play & Why You'll Love It Lists */
.how-to-list li,
.love-it-list li {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0s, box-shadow 0s; /* Zero duration transitions */
}

.how-to-list li:hover,
.love-it-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.how-to-list i,
.love-it-list i {
    font-size: 2.5rem;
    line-height: 1;
}

/* Screenshots Section */
.screenshot-card {
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(45deg, #FFD700, #FFA500); /* Light background with diagonal glow */
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0s, box-shadow 0s; /* Zero duration transitions */
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* Bottom CTA Section */
.cta-bottom {
    background-color: #212529; /* Dark fallback */
    position: relative;
    color: #fff;
}

.cta-bottom .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 0;
}

/* Footer */
.footer {
    background-color: #212529; /* Dark background */
    color: #adb5bd; /* Lighter text for footer */
}

.footer-logo {
    max-width: 100px;
    height: auto;
    border-radius: 15px;
}

.footer ul {
    padding-left: 0;
}

.footer .list-inline-item a {
    color: #adb5bd;
    transition: color 0s; /* Zero duration transition */
}

.footer .list-inline-item a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
    }
    .play-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .how-to-list i,
    .love-it-list i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .app-logo-header {
        max-width: 100px;
    }
    .footer-logo {
        max-width: 80px;
    }
    .info-card {
        padding: 15px;
    }
    .info-card h4 {
        font-size: 1.25rem;
    }
    .info-card small {
        font-size: 0.75rem;
    }
}/* Parent container styling */
.lawMatrixNode {
    padding-top: 60px; /* Top padding for the main content area */
    padding-bottom: 60px; /* Bottom padding for the main content area */
    padding-left: 20px; /* Left padding for content */
    padding-right: 20px; /* Right padding for content */
    max-width: 960px; /* Maximum width for better readability on large screens */
    margin-left: auto; /* Center the content block */
    margin-right: auto; /* Center the content block */
}

/* Heading styles */
.lawMatrixNode h1 {
    font-size: 2rem; /* Moderate size for main headings */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above the heading */
    margin-bottom: 1.5rem; /* Space below the heading */
    font-weight: 700; /* Bold font weight */
    color: #343a40; /* Darker color for headings */
}

.lawMatrixNode h2 {
    font-size: 1.75rem; /* Slightly smaller than h1 */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: #343a40;
}

.lawMatrixNode h3 {
    font-size: 1.5rem; /* Moderate size for sub-headings */
    line-height: 1.4;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #343a40;
}

.lawMatrixNode h4 {
    font-size: 1.25rem; /* Smaller heading size */
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #343a40;
}

.lawMatrixNode h5 {
    font-size: 1rem; /* Smallest heading, similar to body text but bolder */
    line-height: 1.6;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #343a40;
}

/* Paragraph style */
.lawMatrixNode p {
    font-size: 1.1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Good line height for readability */
    margin-bottom: 1rem; /* Space below each paragraph */
    color: #495057; /* Slightly lighter than headings for body text */
}

/* Unordered list styles */
.lawMatrixNode ul {
    list-style: disc; /* Standard disc bullet points */
    margin-left: 25px; /* Indent the list from the left */
    padding-left: 0; /* No extra padding for bullet points themselves */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
}

/* List item styles */
.lawMatrixNode li {
    font-size: 1.1rem; /* Same font size as paragraphs for consistency */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #495057;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .lawMatrixNode {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .lawMatrixNode h1 {
        font-size: 1.75rem;
    }
    .lawMatrixNode h2 {
        font-size: 1.5rem;
    }
    .lawMatrixNode h3 {
        font-size: 1.25rem;
    }
    .lawMatrixNode h4 {
        font-size: 1.1rem;
    }
    .lawMatrixNode h5 {
        font-size: 0.95rem;
    }
    .lawMatrixNode p,
    .lawMatrixNode li {
        font-size: 1rem;
    }
}
