/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    text-align: center;
}
header {
    background: #007bff;
    color: white;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}
.banner {
    background: #0056b3;
    color: white;
    padding: 20px;
    font-size: 20px;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.app-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.app-icon {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 15px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}
.app-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.app-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}
.app-link {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.ads {
    background: #ffcc00;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
}
footer {
    background: #222;
    color: white;
    padding: 15px;
    margin-top: 20px;
}
.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}