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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

header {
    margin-bottom: 48px;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.4;
}

.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.app-block {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #333333;
    padding: 24px 0;
    text-align: left;
    transition: all 0.15s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    text-decoration: none;
}

.app-block:last-child {
    border-bottom: none;
}

.app-block:hover {
    color: #ffffff;
    opacity: 0.7;
}

.app-icon {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 0;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.app-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #000000;
    z-index: 0;
}

.app-icon.has-icon::after {
    display: none;
}

.app-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    display: block;
}

.app-block-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-title {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: inherit;
    letter-spacing: 0;
    line-height: 1.4;
}

.app-description {
    font-size: 0.875rem;
    color: #999999;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.app-block:hover .app-description {
    color: #cccccc;
}

@media (max-width: 768px) {
    .container {
        padding: 32px 20px;
    }
    
    header {
        margin-bottom: 32px;
    }
    
    header h1 {
        font-size: 1.25rem;
    }
    
    .app-block {
        padding: 20px 0;
    }
    
    .app-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 24px 16px;
    }
    
    header {
        margin-bottom: 24px;
    }
    
    header h1 {
        font-size: 1.125rem;
    }
    
    .app-block {
        padding: 16px 0;
        gap: 12px;
    }
    
    .app-icon {
        width: 24px;
        height: 24px;
    }
    
    .app-title {
        font-size: 0.9375rem;
    }
    
    .app-description {
        font-size: 0.8125rem;
    }
}

