body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Light gray background */
    color: black; /* Changed body text color to dark */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    margin-bottom: 30px;
}

header {
    background: white; /* Changed to light background */
    color: black; /* Changed text color to dark */
    text-align: center;
    padding: 0.5rem;
}

header img.header-logo {
    max-width: 70px;
    height: auto;
}

header img.header-logo-small {
    max-width: 100px;
    height: auto;
}

header h1 {
    font-size: 1.8em;
    margin: 0.5rem 0;
}

nav {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blur effect */
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav a:hover {
    color: #ff6f61; /* Coral color on hover */
    border-bottom: 2px solid #ff6f61;
}

.hero {
    text-align: center;
    padding: 50px 0;
    background: url('images/hero-background.jpg') no-repeat center center/cover; /* Hero background image */
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero img {
    max-width: 200px;
    border-radius: 10px;
    margin: 20px 0;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .cta-button {
    background: #ff6f61;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero .cta-button:hover {
    background: #ff4a3d; /* Darker coral on hover */
}

.video-preview {
    text-align: center;
    margin: 40px 0;
}

.video-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    display: block;
    background: #000;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin: 40px 0;
}

.features-title {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    font-size: 2em;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1em;
    color: #666;
}

.collage {
    text-align: center;
    margin: 40px 0;
}

.collage-title {
    margin-bottom: 20px;
    font-size: 2em;
}

.collage-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid */
    gap: 15px;
}

.collage-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.collage-images img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Add this media query for mobile devices */
@media (max-width: 600px) {
    .collage-images {
        grid-template-columns: repeat(2, 1fr); /* At least 2 images in a row on mobile */
    }
}

footer {
    background: black; /* Changed to solid black */
    color: white; /* Ensured text color is white */
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 40px;
}

footer .social-links {
    margin-bottom: 20px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #ff6f61; /* Coral color on hover */
}

/* Add this CSS rule to change link color in the footer to white */
footer a {
    color: white; /* Change link color to white */
}

/* Add these additional styles for the how-to-play page */
.container.content .video-preview {
    margin: 20px 0 40px 0;
}

.container.content .video-container {
    max-width: 600px; /* Slightly smaller than homepage video */
}

.container.content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.icon-list {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove padding */
}

.icon-list li {
    position: relative; /* Position for the pseudo-element */
    padding-left: 30px; /* Space for the icon */
}

.icon-list li::before {
    content: ''; /* Empty content for the pseudo-element */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align to the left */
    top: 0; /* Align to the top */
    font-size: 1.5em; /* Adjust size as needed */
}

.footer-email {
    color: white; /* Ensures the email link is white */
   
    margin-left: 10px; /* Adds space between links */
}

.footer-email:hover {
    color: #ff6f61; /* Coral color on hover */
}