* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f6fa;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    background-color: #2c3e50;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    color: #f39c12;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #f39c12;
}

.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('maze-background.jpg') center/cover no-repeat;
    text-align: center;
}

.intro-text h2 {
    font-size: 4rem;
    color: #ffffff;
}

.intro-text p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e67e22;
}

.features-highlight {
    padding: 60px 20px;
    background-color: #f5f6fa;
    text-align: center;
}

.features-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    width: 30%;
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item img,
.feature-item video {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-info h3 {
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 10px;
}

.feature-info p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .feature-item {
        width: 100%;
    }
}

.play-now {
    padding: 60px 20px;
    text-align: center;
}

.play-now h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.social-links {
    padding: 60px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.social-links h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f39c12;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
    font-size: 2.5rem;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #f39c12;
    transform: scale(1.1);
}

.about {
    padding: 60px 20px;
    background-color: #f5f6fa;
    text-align: center;
}

.about-content {
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content */
    background-color: #ffffff; /* White background for the content area */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700; /* Bold and prominent heading */
}

.about p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left; /* Left-align text for readability */
}

.about a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500; /* Slightly bolder text for links */
}

.about a:hover {
    text-decoration: underline; /* Underline on hover for better UX */
}

.developer {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff; /* Match content background color */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.developer h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600; /* Slightly bolder subheading */
}

.developer p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Left-align text for readability */
}

.developer > .social-links {
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    gap: 20px; /* Space between icons */
    margin-top: 20px; /* Space above icons */
}

.social-links a {
    color: #fafafa;
    font-size: 2.5rem; /* Larger icons for better visibility */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition effects */
    text-decoration: none; /* Remove underline from icons */
}

.social-links a:hover {
    color: #f39c12; /* Color change on hover */
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}

.social-links i {
    display: block; /* Ensure icons are block level for better spacing */
}

.social-links2 {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    gap: 20px; /* Space between icons */
    margin-top: 20px; /* Space above icons */
}

.social-links2 a {
    font-size: 2.5rem; /* Larger icons for better visibility */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition effects */
    text-decoration: none; /* Remove underline from icons */
}

.social-links2 a:hover {
    color: #f39c12; /* Color change on hover */
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}

.social-links2 i {
    display: block; /* Ensure icons are block level for better spacing */
}

.contact {
    padding: 60px 20px;
    background-color: #f5f6fa;
    text-align: center;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form button {
    background-color: #f39c12;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #e67e22;
}

footer {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
    color: #fff;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    color: #e67e22;
}
