/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap');

/* Base Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #FFD700;      /* Gold for header/footer background */
    --secondary-color: #000000;    /* Black for accents and hover */
    --text-color: #000000;         /* Black for text in header/footer */
    --background-color: #f5f5f5;   /* Light gray for main background */
    --header-height: 60px;
    --footer-height: 60px;
}

/* Main Content Layout */
.main-content {
    flex: 1 0 auto;
    padding-bottom: var(--footer-height);
    width: 100%;
    padding-top: var(--header-height);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--primary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 98;
    font-family: 'Poppins', sans-serif;
    justify-content: center;
}

.header-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 0;
}

/* Hamburger Menu Button */
.menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn__burger {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-10px);
}

.menu-btn__burger::after {
    transform: translateY(10px);
}

/* Open Menu Animation */
.menu-btn.open .menu-btn__burger {
    background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg);
}

/* Navigation Menu */
.nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    transition: left 0.3s ease-in-out;
    z-index: 99;
}

.nav.open {
    left: 0;
}

.nav-list {
    list-style: none;
    padding: 80px 0 0 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 15px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Content Styles */
.app-grid {
    display: none;
}

.app-card {
    display: none;
}

.app-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--text-color);
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.app-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: var(--footer-height);
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 1rem 0;
    z-index: 100;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Page Content Styles */
.page-content {
    display: none;
    width: 100%;
    height: 100%;
}

.page-content.active {
    display: block;
}

#app-frame-container {
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--footer-height));
}

#app-frame {
    width: 100%;
    height: 100%;
    border: none;
}

#home-content {
    padding: 0;
    max-width: none;
    margin: 0;
    background-color: #000000;
}

/* Media Queries */
@media screen and (max-height: 600px) {
    .footer {
        position: relative;
    }
    
    .main-content {
        padding-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .header-title {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 10px;
    }
}

/* Add styles for the SVG icons */
.app-card svg {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 1.5rem;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
    display: none;
}

/* Remove the app-grid and app-card styles as they're no longer needed */
.app-grid, .app-card {
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap');

/* Base Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #FFD700;      /* Gold for header/footer background */
    --secondary-color: #000000;    /* Black for accents and hover */
    --text-color: #000000;         /* Black for text in header/footer */
    --background-color: #f5f5f5;   /* Light gray for main background */
    --header-height: 60px;
    --footer-height: 60px;
}

/* Main Content Layout */
.main-content {
    flex: 1 0 auto;
    padding-bottom: var(--footer-height);
    width: 100%;
    padding-top: var(--header-height);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--primary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 98;
    font-family: 'Poppins', sans-serif;
    justify-content: center;
}

.header-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 0;
}

/* Hamburger Menu Button */
.menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn__burger {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-10px);
}

.menu-btn__burger::after {
    transform: translateY(10px);
}

/* Open Menu Animation */
.menu-btn.open .menu-btn__burger {
    background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg);
}

/* Navigation Menu */
.nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    transition: left 0.3s ease-in-out;
    z-index: 99;
}

.nav.open {
    left: 0;
}

.nav-list {
    list-style: none;
    padding: 80px 0 0 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 15px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Content Styles */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-bottom: 80px;
}

.app-card {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.app-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-card h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.app-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.app-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--text-color);
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.app-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: var(--footer-height);
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 1rem 0;
    z-index: 100;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Page Content Styles */
.page-content {
    display: none;
    width: 100%;
    height: 100%;
}

.page-content.active {
    display: block;
}

#app-frame-container {
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--footer-height));
}

#app-frame {
    width: 100%;
    height: 100%;
    border: none;
}

#home-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Media Queries */
@media screen and (max-height: 600px) {
    .footer {
        position: relative;
    }
    
    .main-content {
        padding-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .header-title {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 10px;
    }
}

/* Add styles for the SVG icons */
.app-card svg {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 1.5rem;
} 