:root {
    --sage: #7A8B69;
    --sage-dark: #5C6B4D;
    --cream: #F5F2EB;
    --bark: #3D3229;
    --rust: #B56B45;
    --sky: #6B9AC4;
    --card-bg: rgba(255, 255, 255, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: linear-gradient(165deg, var(--cream) 0%, #E8E4D9 50%, #DED8C8 100%);
    min-height: 100vh;
    color: var(--bark);
    padding: 1.5rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.25rem;
    color: var(--sage-dark);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.intro {
    text-align: center;
    color: var(--bark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.intro a {
    color: var(--sage-dark);
    text-decoration: none;
    font-weight: 500;
}

.intro a:hover {
    text-decoration: underline;
}

.app-grid {
    display: grid;
    gap: 1rem;
}

.app-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 24px rgba(61, 50, 41, 0.08);
    border: 1px solid rgba(122, 139, 105, 0.15);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(61, 50, 41, 0.12);
}

.app-card:active {
    transform: translateY(0);
}

.app-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(122, 139, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--bark);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.app-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.app-description a {
    color: var(--sage-dark);
    text-decoration: underline;
}

.app-description a:hover {
    color: var(--sage);
}

footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(122, 139, 105, 0.2);
    font-size: 0.85rem;
    color: #888;
}

footer a {
    color: var(--sage-dark);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .intro {
        font-size: 1rem;
    }

    .app-card {
        padding: 1rem;
        gap: 1rem;
    }

    .app-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .app-icon img {
        border-radius: 12px;
    }

    .app-name {
        font-size: 1.15rem;
    }

    .app-description {
        font-size: 0.85rem;
    }
}
