body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 2rem;
}
.container {
    max-width: 960px;
    margin: 0 auto;
}
.lang-switcher {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    background-color: #333;
    border-radius: 20px;
    padding: 4px;
    z-index: 10;
}
.lang-switcher a {
    padding: 8px 12px;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 16px;
    transition: background-color 0.3s;
}
.lang-switcher a.active {
    background-color: #bb86fc;
    color: #121212;
}
header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
    padding-top: 60px;
}
header h1 {
    font-size: 2.5rem;
    margin: 0;
}
header p {
    font-size: 1.1rem;
    color: #888;
}
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.app-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.app-card:hover {
    transform: translateY(-5px);
    border-color: #bb86fc;
}
.app-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    fill: #bb86fc;
}
.app-card h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}
.app-card p {
    font-size: 1rem;
    color: #888;
    line-height: 1.5;
    flex-grow: 1;
}
.app-card .status {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1.5rem;
    color: #03dac6;
}
