/* Basic Reset & Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Choose a font */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Light background */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky; /* Optional: Makes header stick */
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    color: #B85F52; /* <<< UPDATED MAIN COLOR */
    margin: 0;
}

/* Optional: Header Navigation */
/* header nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #555;
}
header nav a:hover {
    color: #B85F52; /* <<< UPDATED MAIN COLOR */
} */


/* Hero Section */
.hero-section {
    background-color: #f7f1f0; /* UPDATED: Light tint complementing the new main color */
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #333;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Call to Action Buttons */
.cta-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    color: #fff;
}

.btn i {
    margin-right: 8px;
}

.btn-play {
    background-color: #4CAF50; /* Keeping Google Play Green */
}
.btn-play:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-section h2,
.screenshots-section h2,
.cta-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5em;
    color: #B85F52; /* <<< UPDATED MAIN COLOR */
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-item p {
    color: #666;
}


/* Screenshots Section */
.screenshots-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.screenshots-grid img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Call to Action Section */
.cta-section {
    background-color: #B85F52; /* <<< UPDATED MAIN COLOR */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff; /* Keeping white text on dark background */
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.developer-credit {
    margin-bottom: 10px;
    font-style: italic;
    color: #aaa;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .hero-image {
        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
         grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}