* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #2c3e50;
}

#hero {
    position: relative;
    background-image: url('img/Cover3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 5%;
    text-align: center;
    /* height: 40vh; */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Place content above the overlay */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    font-size: 1.1rem;
    background: transparent;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
}

.cta-button:hover {
    background: rgba(42, 252, 70, 0.15);
    color: #fff;
    border-color: #e74c3c;
}

.play-icon {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

section {
    padding: 4rem 5%;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card, .review-card {
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.screenshot-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.screenshot-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.screenshot-row.reverse {
    direction: rtl;
}

.screenshot-row.reverse > * {
    direction: ltr;
}

.screenshot-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.screenshot-text {
    padding: 2rem;
}

.screenshot-text h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.social-link {
    color: white;
    text-decoration: none;
    display: block;
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .screenshot-row {
        grid-template-columns: 1fr;
    }
    
    .screenshot-row.reverse {
        direction: ltr;
    }
}

p {
    margin-bottom: 2rem;
}

.padding {
    padding-bottom: 30px;
}

.seperator {
    border-bottom: 1px solid #ddd;
    margin: 2rem 0;
}

.logo-img {
    height: 50px;
    width: 50px;
}