* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f6f9; /* Light grey background matching screenshot */
    color: #333;
}

/* New Header Styles */
header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* Soft shadow */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-icon {
    color: #333;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.home-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.header-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.header-logo {
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
}

.header-logo .kx {
    color: #8b5cf6; /* Purple shade for KX */
}

.header-logo .apps {
    color: #3b82f6; /* Blue shade for Apps */
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Grid Layout for Apps */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* App Card Style */
.app-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.app-card img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin-bottom: 15px;
    object-fit: cover;
}

.app-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #222;
}

.app-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* App Detail Page Specific */
.app-detail {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.app-detail img {
    width: 120px;
    height: 120px;
    border-radius: 25px;
}

.app-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.app-info p {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .app-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- Footer Styles --- */
footer {
    background-color: transparent;
    padding: 40px 20px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3b82f6; /* Blue hover color */
}

.footer-copyright {
    color: #999;
    font-size: 13px;
}

/* --- Basic Page (Contact, About, Privacy) Styles --- */
.page-title {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.content-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.content-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-card a {
    color: #3b82f6;
    text-decoration: none;
}

.content-card a:hover {
    text-decoration: underline;
}

/* ... Aapka purana CSS upar rahega ... */

/* Play Store Button */
.playstore-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.2s, transform 0.2s;
}

.playstore-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.playstore-btn svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: #fff;
}

/* Footer & Static Pages */
footer {
    padding: 40px 20px 20px;
    text-align: center;
    margin-top: 40px;
}
.footer-links { margin-bottom: 15px; }
.footer-links a { color: #666; text-decoration: none; margin: 0 15px; font-size: 14px; }
.footer-links a:hover { color: #3b82f6; }
.footer-copyright { color: #999; font-size: 13px; }

.page-title { margin-bottom: 20px; color: #333; font-size: 28px; }
.content-card { background: #fff; border-radius: 12px; padding: 30px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.content-card h2 { font-size: 20px; margin-bottom: 15px; color: #222; }
.content-card p { font-size: 15px; color: #55
5; line-height: 1.6; margin-bottom: 15px; }

