:root {
    --primary-color: #4285F4;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: #6c757d;
}

.play-store-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: 20px;
}

.play-store-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 2.5rem;
}

/* Features */
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Screenshots */
.screenshots {
    background-color: var(--light-gray);
}
.screenshot-img {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 100%;
}


/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

footer a {
    color: #fff;
}
