.body, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #181c24;
    color: #f5f6fa;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 32px 24px;
    background: #23283a;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    text-align: center;
}
.about-section {
    background: #23283a;
    border-radius: 12px;
    padding: 18px 24px 12px 24px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(124,92,255,0.08);
    text-align: left;
    color: #bdbfff;
    font-size: 1.08rem;
    border-left: 5px solid #7c5cff;
}
.about-section .version {
    font-size: 0.98rem;
    color: #00e6d0;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1px;
    color: #7c5cff;
}
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    justify-items: center;
    margin-top: 18px;
}
.app-card {
    background: #23283a;
    border: 2px solid #353a4d;
    border-radius: 18px;
    width: 100%;
    max-width: 320px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-decoration: none;
    color: #f5f6fa;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 16px rgba(124,92,255,0.10);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    position: relative;
    overflow: hidden;
    padding: 24px 22px 18px 22px;
    margin-bottom: 0;
}
.app-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 8px 32px rgba(124,92,255,0.18);
    border-color: #00e6d0;
    color: #00e6d0;
}
.app-icon {
    width: 54px;
    height: 54px;
    background: #7c5cff;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(124,92,255,0.15);
    letter-spacing: 1px;
}
.app-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #f5f6fa;
}
.app-version {
    font-size: 0.98rem;
    color: #00e6d0;
    font-weight: 600;
    margin-bottom: 8px;
}
.app-desc {
    font-size: 1.01rem;
    color: #bdbfff;
    margin-bottom: 0;
    margin-top: 0;
    flex-grow: 1;
}
@media (max-width: 600px) {
    .container {
        padding: 12px 2px;
    }
    .apps-grid {
        gap: 14px;
    }
    .app-card {
        max-width: 98vw;
        min-height: 160px;
        padding: 14px 8px 10px 12px;
    }
    .app-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .about-section {
        padding: 10px 8px 8px 12px;
        font-size: 0.98rem;
    }
} 