:root {
    --purple: #512BD4;
    --purple-dark: #3d1fa3;
    --background: #ffffff;
    --foreground: #171717;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* App Cards */
.app-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow 0.2s ease;
    height: 100%;
}

.app-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.app-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.app-card .app-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.625;
    margin-bottom: 1rem;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.platform-badge {
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(81, 43, 212, 0.1);
    color: var(--purple);
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

/* Store Links */
.store-links {
    display: flex;
    gap: 0.75rem;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple);
    text-decoration: none;
}

.store-link:hover {
    color: var(--purple-dark);
}

.store-link svg {
    width: 1rem;
    height: 1rem;
}

/* Apps Grid Section */
.apps-section {
    padding: 4rem 1.5rem;
    flex: 1;
}

.apps-grid {
    max-width: 56rem;
    margin: 0 auto;
}
